r192: *** empty log message ***
[ctsim.git] / configure.in
1 dnl Process this file with autoconf to produce a configure script.
2
3 dnl Must reset CDPATH so that bash's cd does not print to stdout
4 dnl CDPATH=
5
6 AC_INIT(src/ctsim.cpp)
7 AM_INIT_AUTOMAKE(ctsim,2.0.0)
8 AM_CONFIG_HEADER(config.h)
9
10 dnl Checks for programs.
11 AC_PROG_AWK
12 AC_PROG_INSTALL
13 AC_PROG_MAKE_SET
14 AC_PROG_RANLIB
15 AC_PROG_CC
16 AC_PROG_CXX
17 AC_PATH_PROG(wxconfig,wx-config)
18
19 dnl AC_MSG_CHECKING([that the compiler works])
20 dnl AC_TRY_RUN([ main(int ac, char **av) { return 0; } ],     AC_MSG_RESULT(yes),     AC_MSG_RESULT(no)     AC_MSG_ERROR(Could not compile and run even a trivial ANSI C program - check CC.),     AC_MSG_ERROR(Could not compile and run even a trivial ANSI C program - check CC.))
21
22 dnl Check for C operation
23 AC_CANONICAL_HOST 
24 AC_C_INLINE
25 AC_CHECK_SIZEOF(short, 2)
26 AC_CHECK_SIZEOF(int, 4)
27 AC_CHECK_SIZEOF(long, 4)
28 AC_CHECK_SIZEOF(float, 4)
29 AC_CHECK_SIZEOF(double, 8)
30
31 dnl ---------------------------------------------------------------------------
32 dnl a slightly better AC_C_BIGENDIAN macro which allows cross-compiling
33 dnl from wxGTK (www.wxwindows.org) - LGPL license
34 dnl ---------------------------------------------------------------------------
35
36 AC_DEFUN(WX_C_BIGENDIAN,
37 [AC_CACHE_CHECK(whether byte ordering is bigendian, ac_cv_c_bigendian,
38 [ac_cv_c_bigendian=unknown
39 # See if sys/param.h defines the BYTE_ORDER macro.
40 AC_TRY_COMPILE([#include <sys/types.h>
41 #include <sys/param.h>], [
42 #if !BYTE_ORDER || !BIG_ENDIAN || !LITTLE_ENDIAN
43  bogus endian macros
44 #endif], [# It does; now see whether it defined to BIG_ENDIAN or not.
45 AC_TRY_COMPILE([#include <sys/types.h>
46 #include <sys/param.h>], [
47 #if BYTE_ORDER != BIG_ENDIAN
48  not big endian
49 #endif], ac_cv_c_bigendian=yes, ac_cv_c_bigendian=no)])
50 if test $ac_cv_c_bigendian = unknown; then
51 AC_TRY_RUN([main () {
52   /* Are we little or big endian?  From Harbison&Steele.  */
53   union
54   {
55     long l;
56     char c[sizeof (long)];
57   } u;
58   u.l = 1;
59   exit (u.c[sizeof (long) - 1] == 1);
60 }], ac_cv_c_bigendian=no, ac_cv_c_bigendian=yes, ac_cv_c_bigendian=unknown)
61 fi])
62 if test $ac_cv_c_bigendian = unknown; then
63   AC_MSG_WARN([Assuming little-endian target machine - this may be overriden by adding the line "ac_cv_c_bigendian=${ac_cv_c_bigendian='yes'}" 
64 to config.cache file])
65 fi
66 if test $ac_cv_c_bigendian = yes; then
67   AC_DEFINE(WORDS_BIGENDIAN)
68 fi
69 ])
70
71 WX_C_BIGENDIAN
72
73
74 dnl Checks for libraries.
75 AC_CHECK_LIB(z, main, [ zlib="true" ], [ zlib="false" ;  AC_MSG_WARN([zlib missing. Will need zlib for PNG support])])
76 AC_CHECK_LIB(m, main)
77 AC_CHECK_LIB(curses, main, [curses=true], [curses=false])
78 AC_CHECK_LIB(ncurses, main, [ncurses=true], [ncurses=false])
79 AC_CHECK_LIB(g2, main, [g2=true], [g2=false])
80 wxwin=false
81 AC_CHECK_LIB(wx_gtk, main, [wxwin=true; wx_gtk=true; AC_DEFINE(HAVE_WXWINDOWS)])
82 AC_CHECK_LIB(wx_msw, main, [wxwin=true; wx_msw=true; AC_DEFINE(HAVE_WXWINDOWS)])
83 AC_CHECK_LIB(hdf5, main, [hdf5=true], [hdf5=false], -lz)
84 AC_CHECK_LIB(fftw, main, [fftw=true; AC_DEFINE(HAVE_FFTW)], [fftw=false])
85
86 if test "$zlib" = "true" ; then
87   AC_CHECK_LIB(png, main, [png=true ; AC_DEFINE(HAVE_PNG)], [png=false])
88 fi
89
90 dnl Checks for header files.
91 AC_HEADER_STDC
92 AC_CHECK_HEADERS(fcntl.h unistd.h getopt.h sys/fcntl.h setjmp.h stdarg.h stddef.h sys/types.h sys/stat.h string.h ctype.h math.h stdio.h netinet/in.h inttypes.h sys/param.h stdint.h stdlib.h g2.h assert.h sys/time.h sys/resource.h)
93
94 dnl Checks for typedefs, structures, and compiler characteristics.
95 AC_C_CONST
96 AC_TYPE_OFF_T
97 AC_TYPE_SIZE_T
98 AC_STRUCT_TM
99
100 dnl Checks for library functions.
101 AC_FUNC_VPRINTF
102 AC_CHECK_FUNCS(strtod strtol snprintf htonl usleep vsprintf vsnprintf)
103 AC_CHECK_FUNC(basename)
104 AC_CHECK_FUNC(setjmp)
105 AC_CHECK_FUNC(setpriority)
106
107 if test "${OSTYPE}" = "cygwin" ; then
108   getopt_long=false
109 else
110   AC_CHECK_FUNC(getopt_long, [ getopt_long=true ], [ getopt_long=false ])
111 fi
112 if test "${getopt_long}" = "false" ; then
113   my_includes="$myincludes -I../getopt"
114   AC_DEFINE(HAVE_GETOPT_LONG)
115   ctlibs_base="$ctlibs_base -lgetopt"
116   LDFLAGS="$LDFLAGS -L../getopt"
117   AM_CONDITIONAL(INCLUDED_GETOPT_LONG, test 1==1)
118 fi
119
120 dnl Check for debug mode
121 AC_MSG_CHECKING([debug])
122 AC_ARG_ENABLE(debug,
123 [  --enable-debug          Turn on debugging],
124 [case "${enableval}" in
125   yes) debug=true 
126        AC_MSG_RESULT(yes)
127        ;;
128   no)  debug=false 
129        AC_MSG_RESULT(no)
130        ;;
131   *) AC_MSG_RESULT([bad value ${enableval} for --enable-debug]) 
132        ;;
133 esac],
134 [debug=false; AC_MSG_RESULT(no)])
135 AM_CONDITIONAL(DEBUG, test "$debug" = "true")
136
137 if test "$debug" = "true" ; then
138 dnl  AC_ADD_GCC_CFLAGS([-g -DDEBUG])
139   CFLAGS="-g -DDEBUG"
140   AC_DEFINE(DEBUG)
141 else
142 dnl  AC_ADD_GCC_CFLAGS([-g -O2 -DNDEBUG])
143   CFLAGS="-g -O3 -DNDEBUG"
144   AC_DEFINE(NDEBUG)
145 fi
146
147
148 AC_ADD_GCC_CFLAGS([-Wall])
149 AC_MSG_CHECKING(whether to enable verbose warnings)
150 AC_ARG_ENABLE(verbose-warnings,
151 [  --enable-verbose-warnings
152                           Enable verbose compiler warnings.],
153 [ case "$enableval" in
154   yes)
155     AC_MSG_RESULT(yes)
156     AC_ADD_GCC_CFLAGS([-W])
157     AC_ADD_GCC_CFLAGS([-Wshadow -Wpointer-arith -Wbad-function-cast])
158     AC_ADD_GCC_CFLAGS([-Wcast-align -Wwrite-strings -Waggregate-return])
159     AC_ADD_GCC_CFLAGS([-Wmissing-prototypes -Wstrict-prototypes])
160     AC_ADD_GCC_CFLAGS([-pedantic])
161     AC_ADD_GCC_CFLAGS([-Wredundant-decls])
162
163     ;;
164   *)
165     AC_MSG_RESULT(no)
166     ;;
167   esac ], AC_MSG_RESULT(no)
168 )
169
170 AC_MSG_CHECKING(static executables)
171 AC_ARG_ENABLE(static,
172 [  --enable-static
173                           Enable static executables.],
174 [ case "$enableval" in
175   yes)
176     AC_MSG_RESULT(yes)
177     AC_ADD_GCC_CFLAGS([--static])
178     ;;
179   *)
180     AC_MSG_RESULT(no)
181     ;;
182   esac ], AC_MSG_RESULT(no)
183 )
184
185 dnl Set LAM path
186 AC_ARG_WITH(lam,
187 [  --with-lam[=PATH]       Set path of LAM MPI ],
188 [    if test "$withval" != "no" ; then
189          trylamdir=$withval
190      fi ]
191 )
192
193 if test "$withval" != "no" ; then
194   if test "$prefix" != "NONE" ; then
195      trylamdir="$trylamdir $prefix"
196   fi
197
198   AC_MSG_CHECKING([for LAM MPI installation])
199   for testlamdir in "." $trylamdir /usr/local /usr/local/lam /usr /usr/lam /opt /opt/lam ; do
200     if test -x "$testlamdir/bin/hcc" ; then
201       LDFLAGS="$LDFLAGS -L$testlamdir/lib"
202       CFLAGS="$CFLAGS -I$testlamdir/include"
203       lamdir="$testlamdir"
204       AC_SUBST(lamdir)
205       mpienable="true"
206       AC_SUBST(mpienable)
207       break
208     fi
209   done
210   AC_MSG_RESULT($lamdir)
211 else
212   AC_MSG_RESULT([no])
213 fi
214
215 AC_MSG_CHECKING([for web access])
216 dnl Set cgi-bin directory
217 AC_ARG_WITH(cgibin-dir, [  --with-cgibin-dir=PATH  Set path of CGI binaries directory ], 
218 [ cgibindir=$withval ; AC_SUBST(cgibindir) ] )
219
220 AC_ARG_WITH(cgibin-url, [  --with-cgibin-url=PATH  Set URL path of CGI binaries ], 
221 [ cgibinurl=$withval ; AC_SUBST(cgibinurl) ] )
222
223 AC_ARG_WITH(webdata-dir, [  --with-webdata-dir=PATH Set path of webdata], 
224 [ webdatadir=$withval ; AC_SUBST(webdatadir)  ] )
225
226 AC_ARG_WITH(webdata-url, [  --with-webdata-url=PATH Set URL path of webdata], 
227 [ webdataurl=$withval ; AC_SUBST(webdataurl) ] )
228
229 AC_ARG_WITH(html-dir, [  --with-html-dir=PATH    Set directory of html files], 
230 [ htmldir=$withval ; AC_SUBST(htmldir) ] )
231
232 if test -n "$cgibindir" -o -n "$cgibinurl" ; then
233   cgiprograms="ctsim.cgi ctsim.conf"
234   AC_SUBST(cgiprograms)
235 fi
236
237 if test -n "$htmldir" ; then
238   htmldata=simulate.html
239   AC_SUBST(htmldata)
240 fi
241 AM_CONDITIONAL(USE_HTML, test -n "$htmldir")
242
243 if test -n "$cgibindir" -o -n "$cgibinurl" -o -n "$webdatadir" -o -n "$webdataurl" -o -n "$htmldir" ; then
244   webenabled=true
245   AC_SUBST(webenabled)
246   AC_MSG_RESULT([yes])
247   if test -z "$cgibindir" ; then
248     AC_MSG_ERROR([--with-cgibin-dir not set for web access])
249   elif test -z "$cgibinurl" ; then
250     AC_MSG_ERROR([--with-cgibin-url not set for web access])
251   elif test -z "$webdatadir" ; then
252     AC_MSG_ERROR([--with-webdata-dir not set for web access])
253   elif test -z "$webdataurl" ; then
254     AC_MSG_ERROR([--with-webdata-url not set for web access])
255   elif test -z "$htmldir" ; then
256     AC_MSG_ERROR([--with-html-dir not set for web access])
257   fi
258 else
259   AC_MSG_RESULT([no])
260 fi
261
262 AM_CONDITIONAL(USE_LAM, test -n "$lamdir")
263
264 dnl Prepare to support X.  If the user gave the command-line option
265 dnl --without-x, AC_PATH_XTRA will set no_x to "yes".  Otherwise, it will
266 dnl add appropriate preprocessor flags to X_CFLAGS, and appropriate linker
267 dnl flags to X_LIBS.  It also checks for system-specific X libraries, and
268 dnl adds them to X_PRE_LIBS or X_EXTRA_LIBS, as appropriate.  (The former
269 dnl is where "-lSM -lICE" goes, in X11R6.)  We define the X_TOOLKIT_LIBS
270 dnl and X_BASIC_LIBS argument vectors ourselves, and if X is to be
271 dnl supported, we'll concatenate the whole lot of these into a command line
272 dnl for libtool.  See, e.g., the libplot_la_LIBADD line in
273 dnl libplot/Makefile.am.
274
275 AC_PATH_XTRA
276 AC_SUBST(X_CFLAGS)
277 dnl Following five are concatenated together into a linker specification.
278 AC_SUBST(X_LIBS)
279 AC_SUBST(X_TOOLKIT_LIBS)
280 AC_SUBST(X_PRE_LIBS)
281 AC_SUBST(X_BASIC_LIBS)
282 AC_SUBST(X_EXTRA_LIBS)
283
284 X_TOOLKIT_LIBS="-lXt"
285 X_BASIC_LIBS="-lXext -lX11"
286
287 dnl Check whether libXt has thread support.  Some platforms may have
288 dnl pthread support in libc, but no thread support in libXt/libX11.
289 our_saved_LDFLAGS="$LDFLAGS"
290 LDFLAGS="$X_LIBS $LDFLAGS"
291 AC_CHECK_LIB(Xt, XtToolkitThreadInitialize, AC_DEFINE(X_THREAD_SUPPORT), , $X_PRE_LIBS $X_BASIC_LIBS $X_EXTRA_LIBS)
292 LDFLAGS="$our_saved_LDFLAGS"
293
294 dnl Check in -lXext for double buffering extensions to X11, and check
295 dnl whether appropriate header files are present.  (Some systems have one
296 dnl but not the other.)
297 our_saved_LDFLAGS="$LDFLAGS"
298 LDFLAGS="$X_LIBS $LDFLAGS"
299 AC_CHECK_LIB(Xext, XdbeQueryExtension, AC_DEFINE(HAVE_DBE_SUPPORT), , -lX11 "$X_EXTRA_LIBS")
300 AC_CHECK_LIB(Xext, XmbufQueryExtension, AC_DEFINE(HAVE_MBX_SUPPORT), , -lX11 "$X_EXTRA_LIBS")
301 LDFLAGS="$our_saved_LDFLAGS"
302 our_saved_CPPFLAGS="$CPPFLAGS"
303 CPPFLAGS="$X_CFLAGS $CPPFLAGS"
304 AC_CHECK_HEADERS(X11/extensions/Xdbe.h X11/extensions/multibuf.h)
305 CPPFLAGS="$our_saved_CPPFLAGS"
306
307 dnl Our Makefile.am files test the automake variable NO_X to determine
308 dnl whether X should be supported.
309 AM_CONDITIONAL(NO_X, test "x$no_x" = "xyes")
310
311 my_includes="$my_includes -I../include -I.."
312 AC_SUBST(my_includes)
313
314 AC_MSG_CHECKING([interactive graphics])
315 if test "$no_x" != "yes" ; then
316   AC_DEFINE(HAVE_X11)
317   AC_DEFINE(HAVE_SGP)
318   AM_CONDITIONAL(HAVE_SGP, test 1==1)
319   LDFLAGS="$LDFLAGS -L../libctgraphics -L/usr/X11R6/lib"
320   ctlibs_graphics="$ctlibs_base -lctgraphics"
321   AC_MSG_RESULT(yes)
322   if test "$g2" = "true" ; then
323   ctlibs_graphics="$ctlibs_graphics -lg2"
324   fi    
325   ctlibs_graphics="$ctlibs_graphics $X_BASIC_LIBS $X_TOOLKIT_LIBS"
326 else
327   AC_MSG_RESULT(no)
328 fi
329
330 if test "$png" = "true" ; then
331   ctlibs_tools="$ctlibs_tools -lpng"
332 fi
333 if test "$zlib" = "true" ; then
334   ctlibs_tools="$ctlibs_tools -lz"
335 fi
336 if test "$fftw" = "true" ; then
337   ctlibs_tools="$ctlibs_tools -lrfftw -lfftw"
338 fi
339
340 dnl Check for dmalloc
341 AC_CHECK_LIB(dmallocxx, main, [dmallocxx=true], [dmallocxx=false])
342 AC_MSG_CHECKING([for enable-dmalloc])
343 AC_ARG_ENABLE(dmalloc,
344 [  --enable-dmalloc        Use dmalloc memory allocation],
345 [case "${enableval}" in
346   yes) usedmalloc=true 
347        AC_MSG_RESULT(yes)
348        ;;
349   no)  usedmalloc=false 
350        AC_MSG_RESULT(no)
351        ;;
352   *) AC_MSG_RESULT([bad value ${enableval} for --enable-dmalloc]) 
353        ;;
354 esac],
355 [usedmalloc=false; AC_MSG_RESULT(no)])
356
357 if test "$dmallocxx" = "true" -a "$usedmalloc" = "true" ; then
358   ctlibs_tools="$ctlibs_tools -ldmallocxx"
359   AC_DEFINE(HAVE_DMALLOC)
360   AC_MSG_RESULT(Using dmalloc)
361 fi
362
363 if test "$wxwin" = "true" ; then
364   wxcflags=`$wxconfig --cflags`
365   CFLAGS="$CFLAGS -I../include $wxcflags"
366   wxlibs=`$wxconfig --libs`
367   ctlibs_graphics="$ctlibs_graphics $wxlibs"
368   AM_CONDITIONAL(HAVE_WXWINDOWS, test 1==1 )
369 fi
370 AC_SUBST(wxcflags)
371 AC_SUBST(wxlibs)
372
373 dnl Setting projet libraries and includes
374 LDFLAGS="$LDFLAGS -L../libctsupport -L../libctsim" 
375 ctlibs="$ctlibs_base -lctsim $ctlibs_graphics -lctsupport $ctlibs_tools"
376 AC_SUBST(ctlibs)
377
378 if test -n "$lamdir" ; then
379   lamprograms="pjrec-lam phm2if-lam phm2pj-lam"
380   AC_SUBST(lamprograms)
381   lamdefs="$CFLAGS"
382   AC_SUBST(lamdefs)
383 fi
384
385 CXXFLAGS="$CFLAGS"
386
387 AC_OUTPUT(Makefile libctgraphics/Makefile libctsupport/Makefile libctsim/Makefile Makefile man/Makefile doc/Makefile cgi-bin/ctsim.cgi cgi-bin/Makefile html/simulate.html html/Makefile include/Makefile getopt/Makefile tools/sample-ctsim.sh cgi-bin/ctsim.conf tools/Makefile src/Makefile)