b46a7f50984fe0508032a62a16d6c452b048e720
[ctsim.git] / configure.ac
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
7 AC_CONFIG_SRCDIR([src/ctsim.cpp])
8 AM_INIT_AUTOMAKE(ctsim,4.2.1)
9 AM_CONFIG_HEADER(config.h)
10
11 dnl Checks for programs.
12 AC_PROG_AWK
13 AC_PROG_INSTALL
14 AC_PROG_MAKE_SET
15 AC_PROG_RANLIB
16
17 AC_PROG_CC
18 AC_PROG_CXX
19 AC_C_BIGENDIAN
20
21 AC_PATH_PROG(wxconfig,wx-config)
22
23 dnl Check for C operation
24 AC_CANONICAL_HOST 
25 AC_C_INLINE
26 AC_CHECK_SIZEOF(short, 2)
27 AC_CHECK_SIZEOF(int, 4)
28 AC_CHECK_SIZEOF(long, 4)
29 AC_CHECK_SIZEOF(float, 4)
30 AC_CHECK_SIZEOF(double, 8)
31
32 dnl Add define templates
33
34 dnl Checks for libraries.
35 AC_CHECK_LIB(z, deflate, [ zlib="true" ], [ zlib="false" ;  AC_MSG_WARN([zlib missing. Will need zlib for PNG support])])
36 AC_CHECK_LIB(m, sin)
37 AC_CHECK_LIB(curses, main, [curses=true], [curses=false])
38 AC_CHECK_LIB(ncurses, main, [ncurses=true], [ncurses=false])
39 AC_CHECK_LIB(readline, main, [readline=true; 
40                  AC_DEFINE([HAVE_READLINE],1,[Readline library])],
41                  [readline=false], [-lcurses])  
42 wxwin=false
43 AC_CHECK_LIB(wx_gtk-2.4, main, [wxwin=true; wx_gtk=true; AC_DEFINE(HAVE_WXWINDOWS,1,[wxwindows library])])
44 AC_CHECK_LIB(wx_mac-2.4, main, [wxwin=true; wx_mac=true; AC_DEFINE(HAVE_WXWINDOWS,1,[wxwindows library])])
45 AC_CHECK_LIB(fftw, fftw_one, [fftw=true; AC_DEFINE(HAVE_FFTW,1,[FFTW library])], [fftw=false])
46 AC_CHECK_LIB(GL, main, [libgl=true], [libgl=false], [-L/usr/X11R6/lib -lXt -lXext])
47 AC_CHECK_LIB(pthread, main, [pthread=true], [pthread=false])
48
49 if test "$zlib" = "true" ; then
50   AC_CHECK_LIB(png, main, [png=true ; AC_DEFINE(HAVE_PNG,1,[PNG library])], [png=false], [-lz -lm])
51 fi
52
53 dnl Checks for header files.
54 AC_HEADER_STDC
55 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 assert.h sys/time.h sys/resource.h sys/time.h readline.h readline/readline.h)
56
57 dnl Checks for typedefs, structures, and compiler characteristics.
58 AC_C_CONST
59 AC_TYPE_OFF_T
60 AC_TYPE_SIZE_T
61 AC_STRUCT_TM
62
63 dnl Checks for library functions.
64 AC_FUNC_VPRINTF
65 AC_CHECK_FUNCS(strtod strtol snprintf htonl usleep vsprintf vsnprintf)
66 AC_CHECK_FUNC(basename)
67 AC_CHECK_FUNC(setjmp)
68 AC_CHECK_FUNC(setpriority)
69 AC_CHECK_FUNC(time)
70 AC_CHECK_FUNC(gettimeofday)
71 AC_CHECK_FUNC(getopt, [ getopt=true ], [ getopt=false ])
72
73 if test "${OSTYPE}" = "cygwin" ; then
74   getopt_long=false
75 else
76   AC_CHECK_FUNC(getopt_long, [ getopt_long=true ], [ getopt_long=false ])
77 fi
78
79 if test "${getopt_long}" = "false" ; then
80   my_includes="$my_includes -I../getopt"
81   AC_DEFINE(HAVE_GETOPT_LONG,1,[getopt_long library])
82   ctlibs_base="$ctlibs_base -lgetopt"
83   LDFLAGS="$LDFLAGS -L../getopt"
84   AM_CONDITIONAL(INCLUDED_GETOPT_LONG, test 1==1)
85 fi
86
87 if test "${readline}" = "true" ; then
88   ctlibs_base="$ctlibs_base -lreadline"
89   if test "${ncurses}" = "true"; then
90     ctlibs_base="$ctlibs_base -lncurses"
91   elif test "${curses}" = "true"; then
92     ctlibs_base="$ctlibs_base -lcurses"
93   fi
94 fi
95
96 dnl Check for debug mode
97 AC_MSG_CHECKING([debug])
98 AC_ARG_ENABLE(debug,
99 [  --enable-debug          Turn on debugging],
100 [case "${enableval}" in
101   yes) debug=true 
102        AC_MSG_RESULT(yes)
103        ;;
104   no)  debug=false 
105        AC_MSG_RESULT(no)
106        ;;
107   *) AC_MSG_RESULT([bad value ${enableval} for --enable-debug]) 
108        ;;
109 esac],
110 [debug=false; AC_MSG_RESULT(no)])
111 AM_CONDITIONAL(DEBUG, test "$debug" = "true")
112
113 if test "$datadir" != "" ; then
114   CPPFLAGS="$CPPFLAGS -DDATADIR=\"\\\"$datadir\\\"\""
115 fi
116 dnl CFLAGS="$CFLAGS -I/usr/local/include"
117 dnl LDFLAGS="$LDFLAGS -L/usr/local/lib"
118
119 if test "$debug" = "true" ; then
120   CFLAGS="$CFLAGS -g -DDEBUG"
121   AC_DEFINE(DEBUG,1,[turn on debugging])
122 else
123   CFLAGS="$CFLAGS -O3 -DNDEBUG -fomit-frame-pointer -funroll-loops"
124   AC_DEFINE(NDEBUG,1,[no debugging])
125 fi
126
127 if test "${pthread}" = "true" ; then
128 dnl  CFLAGS="$CFLAGS -D_REENTRANT"
129   AC_DEFINE(HAVE_WXTHREADS,1,[have wxthreads library])
130 fi
131
132 AC_MSG_CHECKING(sstream)
133  if [ test -f /usr/include/sstream || test -f /usr/include/g++/sstream ||
134      test -f /usr/include/g++-2/sstream || test -f /usr/include/g++-3/sstream ||
135      test -f /usr/include/gcc/darwin/3.1/g++-v3/sstream ]; then
136    AC_DEFINE(HAVE_SSTREAM,1,[sstream header])
137    AC_MSG_RESULT(yes)
138   else
139    AC_MSG_RESULT(no)
140  fi
141
142
143 CFLAGS="$CFLAGS -Wall"
144 AC_MSG_CHECKING(whether to enable verbose warnings)
145 AC_ARG_ENABLE(verbose-warnings,
146 [  --enable-verbose-warnings
147                           Enable verbose compiler warnings.],
148 [ case "$enableval" in
149   yes)
150     AC_MSG_RESULT(yes)
151     CFLAGS="$CFLAGS -W -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-align -Wwrite-strings -Waggregate-return -Wmissing-prototypes -Wstrict-prototypes -pedantic -Wredundant-decls"
152     ;;
153   *)
154     AC_MSG_RESULT(no)
155     ;;
156   esac ], AC_MSG_RESULT(no)
157 )
158
159 AC_MSG_CHECKING(static executables)
160 AC_ARG_ENABLE(static,
161 [  --enable-static
162                             Enable static executables.],
163 [ case "$enableval" in
164   yes)
165     AC_MSG_RESULT(yes)
166     CFLAGS="$CFLAGS --static"
167     ;;
168   *)
169     AC_MSG_RESULT(no)
170     ;;
171   esac ], AC_MSG_RESULT(no)
172 )
173
174 dnl Set LAM path
175 AC_ARG_WITH(lam,
176 [  --with-lam[=PATH]         Set path of LAM MPI ],
177 [    if test "$withval" != "no" ; then
178          trylamdir=$withval
179      fi ]
180 )
181
182 if test "$withval" != "no" ; then
183   if test "$prefix" != "NONE" ; then
184      trylamdir="$trylamdir $prefix"
185   fi
186
187   AC_MSG_CHECKING([for LAM MPI installation])
188   for testlamdir in "." $trylamdir /usr/local /usr/local/lam /usr /usr/lam /opt /opt/lam ; do
189     if test -x "$testlamdir/bin/hcp" ; then
190       if test "$testlamdir" != "/usr"; then     
191         LDFLAGS="$LDFLAGS -L$testlamdir/lib"
192         CFLAGS="$CFLAGS -I$testlamdir/include"
193       fi
194       CFLAGS="$CFLAGS -I$testlamdir/include/mpi2c++"
195       lamdir="$testlamdir"
196       AC_SUBST(lamdir)
197       mpienable="true"
198       AC_SUBST(mpienable)
199       break
200     fi
201   done
202   AC_MSG_RESULT($lamdir)
203 else
204   AC_MSG_RESULT([no])
205 fi
206
207
208 dnl Set CTN path
209 AC_ARG_WITH(ctn,
210 [  --with-ctn[=PATH]         Set path of CTN DICOM library ],
211 [    if test "$withval" != "no" ; then
212          tryctndir=$withval
213      fi ]
214 )
215
216 if test "$withval" == "no" -o "$withval" == "NONE" ; then
217   AC_MSG_CHECKING([for CTN DICOM installation])
218   AC_MSG_RESULT([disabled])
219 else
220   AC_MSG_CHECKING([for CTN DICOM installation])
221   for testctndir in $tryctndir/lib /usr/local/lib /usr/local/ctn/lib /usr/lib /usr/ctn/lib /usr/lib/ctn /opt/ctn/lib ; do
222     if test -f "$testctndir/libctn.a" ; then
223       LDFLAGS="$LDFLAGS -L$testctndir"
224       ctnlib="true"
225       break
226     fi
227   done
228   for testctndir in $tryctndir/include /usr/local/include /usr/local/ctn/include /usr/include /usr/include/ctn /usr/ctn/include /opt/ctn/include ; do
229     if test -f "$testctndir/ctn_os.h" ; then
230       CFLAGS="$CFLAGS -I$testctndir"
231       ctninclude="true"
232       break
233     fi
234   done
235   if test "$ctnlib" == "true" -a "$ctninclude" == "true" ; then
236       ctn="true"
237       AC_DEFINE(HAVE_CTN_DICOM,1,[ctn dicom library])
238       AC_MSG_RESULT([yes])
239   else
240     AC_MSG_RESULT([no])
241   fi
242 fi
243
244 dnl Set CPU
245 AC_MSG_CHECKING([for CPU specification])
246 AC_ARG_WITH(mcpu,
247 [  --with-mcpu[=CPU]         Set name of CPU for gcc -mcpu])
248
249 if test "$withval" == "no" -o "$withval" == "yes" -o "$withval" == ""; then
250   AC_MSG_RESULT([no])
251 else
252   AC_MSG_RESULT([$withval])
253   CFLAGS="$CFLAGS -mcpu=$withval"
254 fi
255
256 AC_MSG_CHECKING([for web access])
257 dnl Set cgi-bin directory
258 AC_ARG_WITH(cgibin-dir, [  --with-cgibin-dir=PATH  Set path of CGI binaries directory ], 
259 [ cgibindir=$withval ; AC_SUBST(cgibindir) ] )
260
261 AC_ARG_WITH(cgibin-url, [  --with-cgibin-url=PATH  Set URL path of CGI binaries ], 
262 [ cgibinurl=$withval ; AC_SUBST(cgibinurl) ] )
263
264 AC_ARG_WITH(webdata-dir, [  --with-webdata-dir=PATH Set path of webdata], 
265 [ webdatadir=$withval ; AC_SUBST(webdatadir)  ] )
266
267 AC_ARG_WITH(webdata-url, [  --with-webdata-url=PATH Set URL path of webdata], 
268 [ webdataurl=$withval ; AC_SUBST(webdataurl) ] )
269
270 AC_ARG_WITH(html-dir, [  --with-html-dir=PATH    Set directory of html files], 
271 [ htmldir=$withval ; AC_SUBST(htmldir) ] )
272
273 if test -n "$cgibindir" -o -n "$cgibinurl" ; then
274   cgiprograms="ctsim.cgi ctsim.conf"
275   AC_SUBST(cgiprograms)
276 fi
277
278 if test -n "$htmldir" ; then
279   htmldata=simulate.html
280   AC_SUBST(htmldata)
281 fi
282 AM_CONDITIONAL(USE_HTML, test -n "$htmldir")
283
284 if test -n "$cgibindir" -o -n "$cgibinurl" -o -n "$webdatadir" -o -n "$webdataurl" -o -n "$htmldir" ; then
285   webenabled=true
286   AC_SUBST(webenabled)
287   AC_MSG_RESULT([yes])
288   if test -z "$cgibindir" ; then
289     AC_MSG_ERROR([--with-cgibin-dir not set for web access])
290   elif test -z "$cgibinurl" ; then
291     AC_MSG_ERROR([--with-cgibin-url not set for web access])
292   elif test -z "$webdatadir" ; then
293     AC_MSG_ERROR([--with-webdata-dir not set for web access])
294   elif test -z "$webdataurl" ; then
295     AC_MSG_ERROR([--with-webdata-url not set for web access])
296   elif test -z "$htmldir" ; then
297     AC_MSG_ERROR([--with-html-dir not set for web access])
298   fi
299 else
300   AC_MSG_RESULT([no])
301 fi
302
303 AM_CONDITIONAL(USE_LAM, test -n "$lamdir")
304
305 dnl Prepare to support X.  If the user gave the command-line option
306 dnl --without-x, AC_PATH_XTRA will set no_x to "yes".  Otherwise, it will
307 dnl add appropriate preprocessor flags to X_CFLAGS, and appropriate linker
308 dnl flags to X_LIBS.  It also checks for system-specific X libraries, and
309 dnl adds them to X_PRE_LIBS or X_EXTRA_LIBS, as appropriate.  (The former
310 dnl is where "-lSM -lICE" goes, in X11R6.)  We define the X_TOOLKIT_LIBS
311 dnl and X_BASIC_LIBS argument vectors ourselves, and if X is to be
312 dnl supported, we'll concatenate the whole lot of these into a command line
313 dnl for libtool.  See, e.g., the libplot_la_LIBADD line in
314 dnl libplot/Makefile.am.
315
316 AC_PATH_XTRA
317 AC_SUBST(X_CFLAGS)
318 dnl Following five are concatenated together into a linker specification.
319 AC_SUBST(X_LIBS)
320 AC_SUBST(X_TOOLKIT_LIBS)
321 AC_SUBST(X_PRE_LIBS)
322 AC_SUBST(X_BASIC_LIBS)
323 AC_SUBST(X_EXTRA_LIBS)
324
325 X_TOOLKIT_LIBS="-lXt"
326 X_BASIC_LIBS="-lXext -lX11 -lXmu"
327
328 dnl Check whether libXt has thread support.  Some platforms may have
329 dnl pthread support in libc, but no thread support in libXt/libX11.
330 our_saved_LDFLAGS="$LDFLAGS"
331 LDFLAGS="$X_LIBS $LDFLAGS"
332 AC_CHECK_LIB(Xt, XtToolkitThreadInitialize, AC_DEFINE(X_THREAD_SUPPORT,1,[x thread supported]), , $X_PRE_LIBS $X_BASIC_LIBS $X_EXTRA_LIBS)
333 LDFLAGS="$our_saved_LDFLAGS"
334
335 dnl Our Makefile.am files test the automake variable NO_X to determine
336 dnl whether X should be supported.
337 AM_CONDITIONAL(NO_X, test "x$no_x" = "xyes")
338
339 my_includes="$my_includes -I../include -I.. -I/usr/local/include"
340 AC_SUBST(my_includes)
341
342 LDFLAGS="$LDFLAGS -L/usr/local/lib"
343
344 AC_MSG_CHECKING([for X])
345 if test "$no_x" != "yes" ; then
346   AC_DEFINE(HAVE_X11,1,[X11 system])
347   LDFLAGS="$LDFLAGS -L../libctgraphics -L/usr/X11R6/lib"
348   my_includes="$my_includes -I/usr/X11R6/include"
349   ctlib_graphics="$ctlibs_base -lctgraphics"
350   AC_MSG_RESULT(yes)
351   ctlib_graphics="$ctlib_graphics $X_BASIC_LIBS $X_TOOLKIT_LIBS"
352   if test "$libgl" = "true" ; then
353     # Removed "-lglut" for Mac OS X compilation
354     ctlib_graphics="$ctlib_graphics -lGL -lGLU"
355     if test "$wxwin" = "true" ; then
356       if [ "$wx_gtk" ]; then 
357         ctlib_graphics="$ctlib_graphics -lwx_gtk_gl-2.4"
358       elif [ "$wx_mac" ]; then
359         ctlib_graphics="$ctlib_graphics -lwx_mac_gl-2.4"
360       fi
361     fi
362   fi
363   if test "$wxwin" = "true" ; then
364     AC_DEFINE(HAVE_SGP,1,[use sgp library])
365     AM_CONDITIONAL(HAVE_SGP, test 1==1)
366   fi
367 else
368   AC_MSG_RESULT(no)
369 fi
370
371 if test "$png" = "true" ; then
372   ctlibs_tools="$ctlibs_tools -lpng"
373 fi
374 if test "$zlib" = "true" ; then
375   ctlibs_tools="$ctlibs_tools -lz"
376 fi
377 if test "$fftw" = "true" ; then
378   ctlibs_tools="$ctlibs_tools -lrfftw -lfftw"
379 fi
380 if test "$ctn" = "true"; then
381   ctlibs_tools="$ctlibs_tools -lctn"
382 fi
383
384 dnl Check for dmalloc
385 AC_CHECK_LIB(dmallocxx, main, [dmallocxx=true], [dmallocxx=false])
386 AC_MSG_CHECKING([for enable-dmalloc])
387 AC_ARG_ENABLE(dmalloc,
388 [  --enable-dmalloc        Use dmalloc memory allocation],
389 [case "${enableval}" in
390   yes) usedmalloc=true 
391        AC_MSG_RESULT(yes)
392        ;;
393   no)  usedmalloc=false 
394        AC_MSG_RESULT(no)
395        ;;
396   *) AC_MSG_RESULT([bad value ${enableval} for --enable-dmalloc]) 
397        ;;
398 esac],
399 [usedmalloc=false; AC_MSG_RESULT(no)])
400
401 if test "$dmallocxx" = "true" -a "$usedmalloc" = "true" ; then
402   ctlibs_tools="$ctlibs_tools -ldmallocxx"
403   AC_DEFINE(HAVE_DMALLOC,1,[dmalloc library])
404   AC_MSG_RESULT(Using dmalloc)
405 fi
406
407 dnl Check for efence
408 AC_CHECK_LIB(efence, main, [efence=true], [efence=false])
409 AC_MSG_CHECKING([for enable-efence])
410 AC_ARG_ENABLE(efence,
411 [  --enable-efence        Use ElectricFence memory allocation],
412 [case "${enableval}" in
413   yes) useefence=true 
414        AC_MSG_RESULT(yes)
415        ;;
416   no)  useefence=false 
417        AC_MSG_RESULT(no)
418        ;;
419   *) AC_MSG_RESULT([bad value ${enableval} for --enable-efence]) 
420        ;;
421 esac],
422 [useefence=false; AC_MSG_RESULT(no)])
423
424 if test "$efence" = "true" -a "$useefence" = "true" ; then
425   ctlibs_tools="$ctlibs_tools -lefence"
426   AC_DEFINE(HAVE_EFENCE,1,[efence library])
427   AC_MSG_RESULT(Using efence)
428 fi
429
430 if test "$wxwin" = "true" ; then
431   if [ "$wx_gtk" = "true" ] || [ "$wx_mac" == "true" ] ; then   
432     wxcflags=`$wxconfig --cflags`
433     wxlibs=`$wxconfig --libs`
434   else
435         wxcflags="-D__WXMSW__ -D__WIN32__ -D__GNUWIN32__"
436         wxlibs="-lwx -lglui -ljpeg -lxpm -lzlib -ltiff"
437   fi
438   CFLAGS="$CFLAGS -I../include $wxcflags"
439   ctlib_graphics="$ctlib_graphics $wxlibs"
440   AM_CONDITIONAL(HAVE_WXWINDOWS, test 1==1 )
441 fi
442 AC_SUBST(wxcflags)
443 AC_SUBST(wxlibs)
444
445 dnl Setting projet libraries and includes
446 LDFLAGS="$LDFLAGS -L../libctsupport -L../libctsim" 
447 ctlibs="$ctlibs_base -lctsim $ctlib_graphics -lctsupport $ctlibs_tools"
448 AC_SUBST(ctlibs)
449
450 if test -n "$lamdir" ; then
451   lamprograms="ctsimtext-lam"
452   AC_SUBST(lamprograms)
453   lamdefs="$CFLAGS"
454   AC_SUBST(lamdefs)
455 fi
456
457 CXXFLAGS="$CFLAGS"
458
459 AC_CONFIG_FILES([Makefile libctgraphics/Makefile libctsupport/Makefile libctsim/Makefile man/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 helical/Makefile helical/sample-helical.sh])
460
461 AC_OUTPUT