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