]> andersk Git - splint.git/blob - configure.ac
Fixed some splintme errors from the previous code change.
[splint.git] / configure.ac
1 dnl Process with autoconf to create a configure script  -*- Autoconf -*-
2 AC_PREREQ(2.50)
3
4 AC_INIT([Splint], [3.0.1.7], [splint-bug@splint.org], [splint])
5
6 dnl This MUST precede any other macro
7 AC_CONFIG_AUX_DIR([config])
8
9 dnl Set up the source directory
10 AC_CONFIG_SRCDIR([src/lclinit.c])
11
12 dnl Deduce host
13 AC_CANONICAL_SYSTEM
14
15 dnl Set up automake & the configuration header
16 AM_INIT_AUTOMAKE(AC_PACKAGE_TARNAME, AC_PACKAGE_VERSION, AC_PACKAGE_BUGREPORT)
17 AM_CONFIG_HEADER([config.h:config.hin])
18
19 dnl Prepare for Splint processing of config.h
20 AH_TOP([/*@-constmacros@*/])
21 AH_BOTTOM([/*@=constmacros@*/])
22
23 dnl Checks for programs.
24 #drl 12-19-2001 commented out so Splint won't depend on C++
25 #AC_PROG_CXX
26 AC_PROG_CC
27 AC_PROG_CPP
28 dnl This produces a warning.  See http://mail.gnu.org/pipermail/bug-automake/2001-August/000213.html
29 AM_PROG_LEX
30 AC_PROG_INSTALL
31 AC_PROG_MAKE_SET
32 AC_PROG_LN_S
33 AC_CHECK_PROG(BISON, bison, bison, no)
34 AC_CHECK_PROG(GREP, grep, grep, grep-is-missing)
35 AC_CHECK_PROG(DIFF, diff, diff, diff-is-missing)
36 AC_CHECK_PROG(CAT, cat, cat, cat-is-missing)
37 AC_CHECK_PROG(RM, rm, rm, rm-is-missing)
38 AC_CHECK_PROG(MV, mv, mv, mv-is-missing)
39 AC_CHECK_PROG(CP, cp, cp, cp-is-missing)
40 AC_CHECK_PROG(SED, sed, sed, sed-is-missing)
41
42 dnl Checks for header files.
43 dnl Currently all disable, as the source files don't care about the results
44 dnl AC_HEADER_DIRENT
45 dnl AC_HEADER_STDC
46 dnl AC_CHECK_HEADERS([alloca.h errno.h fcntl.h float.h limits.h locale.h malloc.h stddef.h stdlib.h string.h strings.h sys/time.h unistd.h])
47
48 dnl Checks for typedefs, structures, and compiler characteristics.
49 dnl Currently all disable, as the source files don't care about the results
50 dnl AC_C_CONST
51 dnl AC_TYPE_UID_T
52 dnl AC_TYPE_MODE_T
53 dnl AC_TYPE_OFF_T
54 dnl AC_TYPE_PID_T
55 dnl AC_TYPE_SIZE_T
56 dnl AC_STRUCT_ST_BLOCKS
57 dnl AC_CHECK_MEMBERS([struct stat.st_rdev])
58 dnl AC_DECL_SYS_SIGLIST
59 dnl AC_HEADER_TIME
60 dnl AC_STRUCT_TM
61 dnl AC_CHECK_TYPES([ptrdiff_t])
62
63 dnl Checks for library functions.
64 dnl Currently all disable, as the source files don't care about the results
65 dnl AC_FUNC_ALLOCA
66 dnl AC_FUNC_CHOWN
67 dnl AC_FUNC_GETPGRP
68 dnl AC_PROG_GCC_TRADITIONAL
69 dnl AC_FUNC_LSTAT
70 dnl AC_FUNC_MALLOC
71 dnl AC_FUNC_MEMCMP
72 dnl AC_FUNC_MKTIME
73 dnl AC_FUNC_MMAP
74 dnl AC_FUNC_SETVBUF_REVERSED
75 dnl AC_TYPE_SIGNAL
76 dnl AC_FUNC_STAT
77 dnl AC_FUNC_STRCOLL
78 dnl AC_FUNC_STRERROR_R
79 dnl AC_FUNC_VFORK
80 dnl AC_FUNC_VPRINTF
81 dnl AC_FUNC_WAIT3
82 dnl AC_CHECK_FUNCS([alarm atexit btowc bzero dup2 endgrent endpwent fchdir floor ftruncate getcwd getgroups gethostname gettimeofday isascii iswprint lchown localeconv mblen mbrlen mbrtowc memchr memmove memset mkdir mkfifo modf munmap pathconf pow putenv realpath regcomp rint rmdir rpmatch select setenv socket sqrt strcasecmp strchr strcspn strdup strerror strftime strncasecmp strpbrk strrchr strspn strstr strtod strtol strtoul strtoull tzset uname utime vprintf])
83
84 dnl This was provided by Nelson Beebe for dealing with problems on IBM
85 dnl AIX 4.3 with defining mode_t.
86
87 dnl Checks for _ALL_SOURCE (IBM RS/6000 c89 needs this)
88 AC_MSG_CHECKING(whether we need _ALL_SOURCE to expose mode_t)
89 all=no
90 AC_TRY_COMPILE([
91 #include <stdio.h>
92 mode_t x;
93 ], , , all=maybe)
94 if test $all = maybe ; then
95 AC_TRY_COMPILE([
96 #define _ALL_SOURCE
97 #include <stdio.h>
98 mode_t x;
99 ], , AC_DEFINE(_ALL_SOURCE) all=yes)
100 fi
101 if test $all = maybe ; then all=no ; fi
102 AC_MSG_RESULT($all)
103
104 LCLOBJ='$(lcl_OBJECTS)'
105 AC_ARG_WITH([lcl],
106             AC_HELP_STRING([--without-lcl],
107                            [don't include support for LCL files]),
108             ac_cv_use_lcl=$withval, 
109             AC_CACHE_CHECK([whether to include support for LCL files],
110                            ac_cv_use_lcl, ac_cv_use_lcl=yes))
111 if test x$ac_cv_use_lcl != xyes; then
112   LCLOBJ=
113   AC_DEFINE(NOLCL, 1, [Define to disable support LCL files])
114 fi
115 AC_SUBST(LCLOBJ)
116
117 # Make sure we have an actual value for $prefix
118 myprefix=$prefix
119 test x$myprefix = xNONE && myprefix=$ac_default_prefix
120
121
122 ### Yuck!  This is really kludgey, but I don't understand autoconf well
123 ### enough to do something simple that always works.  Hopefully this does.
124
125 # cpplib.h defines 2 include dirs; one is $includedir, the other is gcc's
126 # include dir.  Not the most portable setup, but let's do our best.
127
128 if test x$GCC = xyes; then
129   dnl Make sure to override NLS; this assumes gcc prints only
130   dnl   Reading specs from blah
131   dnl   gcc version blah
132
133 # This breaks on gcc-3.0 on redhat fixing drl 11-15-2001
134 #  GCC_INCLUDE_DIR=`LANGUAGE= LANG= $CC -v 2>&1 | sed -e '/^gcc/ d' -e 's/.* \(.*\)specs/\1include/'`
135 GCC_INCLUDE_DIR=/usr/include
136 # was /usr/lib/gcc-lib/i386-linux/2.7.2.1/include
137 #  GCC_INCLUDE_DIR=`LANGUAGE= LANG= $CC -v 2>&1 | sed -n -e '/^gcc/ d' -e 's/.* \(.*\)specs/\1include/p'`
138   AC_DEFINE_UNQUOTED(GCC_INCLUDE_DIR, "$GCC_INCLUDE_DIR",
139                      [system include directory])
140 else
141 GCC_INCLUDE_DIR=/usr/include
142 AC_DEFINE_UNQUOTED(GCC_INCLUDE_DIR, "$GCC_INCLUDE_DIR", [system include directory])
143 fi
144
145 AC_DEFINE_UNQUOTED(GCC_INCLUDE_DIR2, "$myprefix/include",
146                    [alternate include directory])
147
148 # These used to be in local_constants.h
149 AC_DEFINE_UNQUOTED(SYSTEM_LIBDIR, "$myprefix/include",
150                    [The system's main include directory])
151 AC_DEFINE_UNQUOTED(DEFAULT_LARCHPATH,
152                    ".$PATH_SEPARATOR$myprefix/share/splint/lib$PATH_SEPARATOR`pwd`/lib$PATH_SEPARATOR",
153                    [The directory where Splint's library files live])
154 AC_DEFINE_UNQUOTED(DEFAULT_LCLIMPORTDIR, ".$PATH_SEPARATOR$myprefix/share/splint/imports$PATH_SEPARATOR`pwd`/imports",
155                    [Splint's imports directory])
156
157 # These used to be in herald.h
158 LCL_PARSE_VERSION="AC_PACKAGE_NAME AC_PACKAGE_VERSION"
159 AC_DEFINE_UNQUOTED(SPLINT_VERSION,
160                    "$LCL_PARSE_VERSION --- `date +"%d %b %Y"`",
161                    [Splint's version number and configure/build date])
162 AC_DEFINE_UNQUOTED(LCL_PARSE_VERSION, "$LCL_PARSE_VERSION",
163                    [Splint's version number])
164 AC_DEFINE_UNQUOTED(LCL_COMPILE,
165                    "Compiled using $CC $CFLAGS on `uname -a` by `whoami`",
166                    [String describing who compiled this binary and how])
167
168 dnl TODO: Use result AC_CANONICAL_SYSTEM to figure out what to define 
169
170 AC_DEFINE(UNIX, 1, [Define if you're on a Unixy system])
171
172 #just define some Header constants for now...
173
174 UNAME=`uname`
175 AC_DEFINE_UNQUOTED(UNAME, "${UNAME}")
176
177 AC_DEFINE_UNQUOTED(BUILD, "${build}")
178 AC_DEFINE_UNQUOTED(HOST, "${host}")
179 AC_DEFINE_UNQUOTED(TARGET, "${target}")
180
181 AC_DEFINE_UNQUOTED(BUILD_ALIAS, "${build_alias}")
182 AC_DEFINE_UNQUOTED(HOST_ALIAS, "${host_alias}")
183 AC_DEFINE_UNQUOTED(TARGET_ALIAS, "${TARGET_ALIAS}")
184
185 AC_DEFINE_UNQUOTED(BUILD_CPU, "${build_cpu}")
186 AC_DEFINE_UNQUOTED(HOST_CPU, "$host_cpu")
187 AC_DEFINE_UNQUOTED(TARGET_CPU, "${target_cpu}")
188
189 AC_DEFINE_UNQUOTED(BUILD_VENDOR, "${build_vendor}")
190 AC_DEFINE_UNQUOTED(HOST_VENDOR, "${host_vendor}")
191 AC_DEFINE_UNQUOTED(TARGET_VENDOR, "${target_vendor}")
192
193 AC_DEFINE_UNQUOTED(BUILD_OS, "${build_os}")
194 AC_DEFINE_UNQUOTED(HOST_OS, "${host_os}")
195 AC_DEFINE_UNQUOTED(TARGET_OS,"${target_os}")
196
197
198
199 dnl AC_CONFIG_FILES([test/Makefile
200 dnl                  test/ensuresclauses/Makefile
201 dnl                  test/conditions/Makefile
202 dnl                  test/db2/Makefile
203 dnl                  test/warnuse/Makefile
204 dnl                  test/tainted/Makefile
205 dnl                  test/fileio/Makefile
206 dnl                  test/tests2.4/Makefile
207 dnl                  test/db3/Makefile
208 dnl                  test/metastate/Makefile
209 dnl                  test/mergestate/Makefile
210 dnl                  test/tests2.5/Makefile
211 dnl                  test/tests2.2/Makefile
212 dnl                  test/db1/Makefile])
213
214 AC_CONFIG_FILES([Makefile imports/Makefile lib/Makefile src/Makefile
215                  test/Makefile doc/Makefile bin/Makefile])
216 AC_OUTPUT 
217
218
219
220
221
222
223
224
225
This page took 0.287993 seconds and 5 git commands to generate.