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