chiark / gitweb /
report correct count in test program
[nlopt.git] / configure.ac
1 dnl Process this file with autoconf to produce a configure script.
2 AC_INIT(nlopt, 2.2.1, stevenj@alum.mit.edu)
3 AC_CONFIG_SRCDIR(api/nlopt.h)
4 SHARED_VERSION_INFO="5:1:5" # CURRENT:REVISION:AGE
5
6 AM_INIT_AUTOMAKE(1.7)
7 AM_CONFIG_HEADER(config.h)
8 AC_CONFIG_MACRO_DIR([m4])
9 AM_MAINTAINER_MODE
10 AC_SUBST(SHARED_VERSION_INFO)
11 AC_DISABLE_SHARED dnl shared libraries are a PITA, disable by default
12
13 dnl Checks for programs.
14 AC_PROG_CC
15 AC_PROG_CC_STDC
16 AC_PROG_INSTALL
17 AC_PROG_LN_S
18 AC_PROG_MAKE_SET
19 AC_LIBTOOL_WIN32_DLL
20 AC_PROG_LIBTOOL
21
22 NLOPT_SUFFIX=""
23 AC_ARG_WITH(cxx,
24         [AC_HELP_STRING([--with-cxx], [include C++-based routines])],
25         with_cxx=$withval,with_cxx=no)
26 AM_CONDITIONAL(WITH_CXX, test "x$with_cxx" = xyes)
27 AC_PROG_CXX
28 if test "x$with_cxx" = xyes; then
29    AC_DEFINE([WITH_CXX], 1, [Define if compiled including C++-based routines])
30    NLOPT_SUFFIX="_cxx"
31    CC=$CXX
32    CFLAGS=$CXXFLAGS
33 fi
34 AC_SUBST(NLOPT_SUFFIX)
35
36 AC_ARG_WITH(mthreads,
37         [AC_HELP_STRING([--with-mthreads], [use -mthreads compiler flag])],
38         with_mthrads=$withval,with_mthreads=no)
39 if test "x$with_mthreads" = xyes; then
40    CFLAGS="$CFLAGS -mthreads"
41    CXXFLAGS="$CXXFLAGS -mthreads"
42 fi
43
44 dnl Checks for typedefs, structures, and compiler characteristics.
45 AC_HEADER_STDC
46 AC_HEADER_TIME
47 AC_CHECK_HEADERS([unistd.h getopt.h stdint.h])
48 AC_C_CONST
49 AC_C_INLINE
50 AX_C_THREADLOCAL
51
52 dnl find 32-bit unsigned integer type for random-number generator
53 AC_CHECK_SIZEOF(unsigned int)
54 AC_CHECK_SIZEOF(unsigned long)
55 AC_CHECK_TYPES(uint32_t, [], [], [$ac_includes_default
56 #ifdef HAVE_STDINT_H
57 #  include <stdint.h>
58 #endif])
59
60 dnl Checks for libraries and functions
61 AC_CHECK_LIB(m, sin)
62 AC_CHECK_FUNCS([BSDgettimeofday gettimeofday time qsort_r getpid])
63
64 AC_MSG_CHECKING([for gettid syscall])
65 AC_TRY_LINK([#include <unistd.h>
66 #include <sys/syscall.h>
67 ], [syscall(SYS_gettid);], [ok=yes], [ok=no])
68 if test "$ok" = "yes"; then
69         AC_DEFINE(HAVE_GETTID_SYSCALL,1,[Define if syscall(SYS_gettid) available.])
70 fi
71 AC_MSG_RESULT(${ok})
72
73 AC_MSG_CHECKING([for isnan])
74 AC_TRY_LINK([#include <math.h>
75 ], [if (!isnan(3.14159)) isnan(2.7183);], ok=yes, ok=no)
76 if test "$ok" = "yes"; then
77         AC_DEFINE(HAVE_ISNAN,1,[Define if the isnan() function/macro is available.])
78 fi
79 AC_MSG_RESULT(${ok})
80
81 AC_MSG_CHECKING([for isinf])
82 AC_TRY_LINK([#include <math.h>
83 ], [if (!isinf(3.14159)) isinf(2.7183);], ok=yes, ok=no)
84 if test "$ok" = "yes"; then
85         AC_DEFINE(HAVE_ISINF,1,[Define if the isinf() function/macro is available.])
86 fi
87 AC_MSG_RESULT(${ok})
88
89 AC_MSG_CHECKING([for copysign])
90 AC_TRY_LINK([#include <math.h>
91 ], [double x = copysign(3.14159, -2.7183);], ok=yes, ok=no)
92 if test "$ok" = "yes"; then
93         AC_DEFINE(HAVE_COPYSIGN,1,[Define if the copysign function/macro is available.])
94 fi
95 AC_MSG_RESULT(${ok})
96
97 dnl -----------------------------------------------------------------------
98
99 if test "x$with_cxx" = xyes; then
100   test -r $srcdir/lbfgs/ap.cpp && test -r $srcdir/lbfgs/ap.h && test -r $srcdir/lbfgs/l-bfgs-b.cpp && test -r $srcdir/lbfgs/l-bfgs-b.h && have_lbfgs=yes
101 fi
102 AM_CONDITIONAL(WITH_NOCEDAL, test -n "$have_lbfgs")
103 if test -n "$have_lbfgs"; then
104    AC_DEFINE(WITH_NOCEDAL, [1], [Define if we have the non-free Nocedal LBFGS code])
105 fi
106
107 dnl -----------------------------------------------------------------------
108 dnl SWIG wrappers
109
110 AC_ARG_WITH(guile,
111         [AC_HELP_STRING([--without-guile], [don't compile Guile plugin])],
112         with_guile=$withval,with_guile=yes)
113 AC_ARG_WITH(python,
114         [AC_HELP_STRING([--without-python], [don't compile Python plugin])],
115         with_python=$withval,with_python=yes)
116
117 if test "$enable_shared" = no; then
118    AC_MSG_WARN([Python and Guile wrappers require --enable-shared; disabling])
119    GUILE_CONFIG=unknown
120    have_python=no
121 else
122
123 if test "x$with_guile" = xno; then
124    GUILE_CONFIG=unknown
125 else
126
127 dnl Guile:
128 AC_ARG_VAR(GUILE_INSTALL_DIR, [where to install Guile plug-ins])
129 AC_CHECK_PROG(GUILE_CONFIG, guile-config, guile-config, unknown)
130 if test "x$GUILE_CONFIG" = "xunknown"; then
131    AC_MSG_WARN([can't find guile-config, disabling Guile wrapper])
132 else
133    save_CPPFLAGS=$CPPFLAGS
134    save_LIBS=$LIBS
135    GUILE_CPPFLAGS=`$GUILE_CONFIG compile`
136    GUILE_LIBS=`$GUILE_CONFIG link`
137    CPPFLAGS="$CPPFLAGS $GUILE_CPPFLAGS"
138    LIBS="$GUILE_LIBS $LIBS"
139    AC_MSG_CHECKING([if linking to guile works])
140    AC_TRY_LINK_FUNC(scm_is_vector, [AC_MSG_RESULT(yes)], [AC_MSG_RESULT(no)
141         AC_MSG_WARN(guile-config is broken, disabling Guile wrapper)
142         GUILE_CONFIG="unknown"])
143    CPPFLAGS=$save_CPPFLAGS
144    LIBS=$save_LIBS
145 fi
146 AC_CHECK_PROG(GUILE, guile, guile, unknown)
147 if test "x$GUILE" = xunknown; then
148    AC_MSG_WARN([can't find guile, disabling Guile wrapper])
149    GUILE_CONFIG=unknown
150 elif test x"$GUILE_INSTALL_DIR" = "x"; then
151    AC_MSG_CHECKING([for Guile installation directory])
152    GUILE_INSTALL_DIR=`guile -c '(display (%site-dir))'`
153    AC_MSG_RESULT([$GUILE_INSTALL_DIR])
154 fi
155
156 fi # with_guile
157
158 if test "x$with_python" = xno; then
159   have_python=no
160 else
161
162 dnl Python:
163 AM_PATH_PYTHON([],[have_python=yes],[have_python=no])
164 if test $have_python = yes; then
165   AC_MSG_CHECKING([for Python include directory])
166   pinc=`echo "import distutils.sysconfig; print distutils.sysconfig.get_python_inc()" | $PYTHON - 2>/dev/null`
167   AC_MSG_RESULT([${pinc:-unknown}])
168   test -n "$pinc" && PYTHON_INCLUDES="-I$pinc"
169   save_CPPFLAGS=$CPPFLAGS
170   CPPFLAGS="$CPPFLAGS $PYTHON_INCLUDES"
171   AC_CHECK_HEADER([Python.h], [], [AC_MSG_WARN([disabling Python wrappers]) 
172                                    have_python=no])
173   if test $have_python = yes; then
174     AC_MSG_CHECKING([for Numpy include directory])
175     pinc=`echo "import numpy; print numpy.get_include()" | $PYTHON - 2>/dev/null`
176     AC_MSG_RESULT([${pinc:-unknown}])
177     test -n "$pinc" && PYTHON_INCLUDES="$PYTHON_INCLUDES -I$pinc"
178     CPPFLAGS="$save_CPPFLAGS $PYTHON_INCLUDES"
179     AC_CHECK_HEADER([numpy/arrayobject.h],[],[
180       AC_MSG_WARN([disabling Python wrappers])
181       have_python=no],[#include <Python.h>])
182   fi
183   CPPFLAGS=$save_CPPFLAGS
184 fi
185
186 fi # with_python
187
188 fi # if enable_shared
189
190 AC_SUBST(GUILE_INSTALL_DIR)
191 AC_SUBST(GUILE_CPPFLAGS)
192 AC_SUBST(GUILE_LIBS)
193 AC_SUBST(PYTHON_INCLUDES)
194 AM_CONDITIONAL(WITH_GUILE, test x"$GUILE_CONFIG" != "xunknown")
195 AM_CONDITIONAL(WITH_PYTHON, test x"$have_python" = "xyes")
196
197 dnl -----------------------------------------------------------------------
198 dnl Compiling Octave plug-in
199
200 AC_ARG_VAR(OCT_INSTALL_DIR, [where to install GNU Octave .oct plug-ins])
201 AC_ARG_VAR(M_INSTALL_DIR, [where to install GNU Octave .m plug-ins])
202 AC_ARG_VAR(MKOCTFILE, [name of mkoctfile program to compile Octave plug-ins])
203
204 AC_ARG_WITH(octave,
205         [AC_HELP_STRING([--without-octave], [don't compile Octave plugin])],
206         with_octave=$withval,with_octave=yes)
207
208 AC_CHECK_PROGS(MKOCTFILE, mkoctfile, echo)
209
210 if test x"$with_octave" = xno; then
211         OCT_INSTALL_DIR=""
212 elif test "$MKOCTFILE" = "echo"; then
213         AC_MSG_WARN([can't find mkoctfile: won't be able to compile GNU Octave plugin])
214         OCT_INSTALL_DIR=""
215 elif test x"$OCT_INSTALL_DIR" = "x"; then
216         # try to find installation directory
217         AC_CHECK_PROGS(OCTAVE, octave, echo)
218         AC_CHECK_PROGS(OCTAVE_CONFIG, octave-config, echo)
219
220         AC_MSG_CHECKING(where octave plugins go)
221         OCT_INSTALL_DIR=`octave-config --oct-site-dir 2> /dev/null | grep '/'`
222         if test -z "$OCT_INSTALL_DIR"; then
223                 OCT_INSTALL_DIR=`octave-config --print OCTFILEDIR 2> /dev/null | grep '/'`
224         fi
225         if test -z "$OCT_INSTALL_DIR"; then
226                 OCT_INSTALL_DIR=`echo "path" | $OCTAVE -q 2> /dev/null | grep "/oct/" | head -1`
227         fi
228         if test -z "$OCT_INSTALL_DIR"; then
229                 OCT_INSTALL_DIR=`echo "DEFAULT_LOADPATH" | $OCTAVE -q 2> /dev/null | tr ':' '\n' | grep "site/oct" | head -1`
230         fi
231         if test -n "$OCT_INSTALL_DIR"; then
232                 AC_MSG_RESULT($OCT_INSTALL_DIR)
233         else
234                 AC_MSG_RESULT(unknown)
235                 AC_MSG_WARN([can't find where to install octave plugins: won't be able to compile octave plugin])
236         fi
237
238         AC_MSG_CHECKING(where octave scripts go)
239         M_INSTALL_DIR=`octave-config --m-site-dir 2> /dev/null | grep '/'`
240         if test -z "$M_INSTALL_DIR"; then
241                 M_INSTALL_DIR=`octave-config --print FCNFILEDIR 2> /dev/null | grep '/'`
242         fi
243         if test -z "$M_INSTALL_DIR"; then
244                 M_INSTALL_DIR=`echo "path" | $OCTAVE -q 2> /dev/null | grep "/m" | head -1`
245         fi
246         if test -z "$M_INSTALL_DIR"; then
247                 M_INSTALL_DIR=`echo "DEFAULT_LOADPATH" | $OCTAVE -q 2> /dev/null | tr ':' '\n' | grep "site/m" | head -1`
248         fi
249         if test -n "$M_INSTALL_DIR"; then
250                 AC_MSG_RESULT($M_INSTALL_DIR)
251         else
252                 AC_MSG_RESULT(unknown)
253                 AC_MSG_WARN([can't find where to install octave scripts: won't be able to install octave plugin])
254                 OCT_INSTALL_DIR=""
255         fi
256 elif test x"$M_INSTALL_DIR" = "x"; then # user-specified OCT_INSTALL_DIR
257      M_INSTALL_DIR=$OCT_INSTALL_DIR
258 fi
259
260 if test x"$OCT_INSTALL_DIR" != "x"; then
261 if test "$enable_shared" = no; then
262      AC_MSG_CHECKING([whether mkoctfile can link with static objects])
263      rm -f conftest*
264      echo 'void foo(void) {};' > conftestfoo.c
265      $CC -c conftestfoo.c >&AS_MESSAGE_LOG_FD 2>&AS_MESSAGE_LOG_FD
266      cat > conftest.cc <<EOF
267 #include <octave/oct.h>
268 extern "C" void foo(void);
269 DEFUN_DLD(foobar, args, nargout, "foo bar") { foo(); }
270 EOF
271      if $MKOCTFILE conftest.cc conftestfoo.o >&AS_MESSAGE_LOG_FD 2>&AS_MESSAGE_LOG_FD; then
272         AC_MSG_RESULT(yes)
273      else
274         AC_MSG_RESULT(no)
275         AC_MSG_WARN([mkoctfile requires --enable-shared; won't compile Octave plugin])
276         OCT_INSTALL_DIR=""
277      fi
278 fi
279 fi
280
281 AM_CONDITIONAL(WITH_OCTAVE, test x"$OCT_INSTALL_DIR" != "x")
282 AC_SUBST(OCT_INSTALL_DIR)
283 AC_SUBST(M_INSTALL_DIR)
284 AC_SUBST(MKOCTFILE)
285
286 dnl -----------------------------------------------------------------------
287 dnl Compiling Matlab plug-in
288
289 AC_ARG_WITH(matlab,
290         [AC_HELP_STRING([--without-matlab], [don't compile Matlab plugin])],
291         with_matlab=$withval,with_matlab=yes)
292
293 AC_ARG_VAR(MEX_INSTALL_DIR, [where to install Matlab .mex plug-ins])
294 AC_ARG_VAR(MEX, [name of mex program to compile Matlab plug-ins])
295 AC_CHECK_PROGS(MEX, mex, echo)
296 if test x"$with_matlab" = xno; then
297      MEX_INSTALL_DIR=""
298 elif test "$MEX" = "echo"; then
299      AC_MSG_WARN([can't find mex: won't be able to compile Matlab plugin])
300      MEX_INSTALL_DIR=""
301 else
302      AC_MSG_CHECKING([for extension of compiled mex files])
303      rm -f conftest*
304      cat > conftest.c <<EOF
305 #include <mex.h>
306 void mexFunction(int nlhs, mxArray *plhs[[]],
307                  int nrhs, const mxArray *prhs[[]]) { }
308 EOF
309      if $MEX conftest.c >&AS_MESSAGE_LOG_FD 2>&AS_MESSAGE_LOG_FD; then
310         MEXSUFF=`ls conftest.m* | head -1 | cut -d'.' -f2`
311         AC_MSG_RESULT($MEXSUFF)
312         AC_CHECK_PROGS(MATLAB, matlab, echo)
313      else
314         AC_MSG_WARN([$MEX failed to compile a simple file; won't compile Matlab plugin])
315         MEX_INSTALL_DIR=""
316         MATLAB=echo
317      fi
318
319      if test x"$MATLAB" != xecho; then
320      if test "$enable_shared" = no; then
321      AC_MSG_CHECKING([whether mex can link with static objects])
322      rm -f conftest*
323      echo 'void foo(void) {};' > conftestfoo.c
324      $CC -c conftestfoo.c >&AS_MESSAGE_LOG_FD 2>&AS_MESSAGE_LOG_FD
325      cat > conftest.c <<EOF
326 #include <mex.h>
327 extern void foo(void);
328 void mexFunction(int nlhs, mxArray *plhs[[]],
329                  int nrhs, const mxArray *prhs[[]]) { foo(); }
330 EOF
331      if $MEX conftest.c conftestfoo.o >&AS_MESSAGE_LOG_FD 2>&AS_MESSAGE_LOG_FD; then
332         AC_MSG_RESULT(yes)
333      else
334         AC_MSG_RESULT(no)
335         AC_MSG_WARN([mex requires --enable-shared; won't compile Matlab plugin])
336         MEX_INSTALL_DIR=""
337         MATLAB=echo
338      fi
339      fi
340      fi
341
342      if test x"$MATLAB" != xecho; then
343        # try to find installation directory
344        if test x"$MEX_INSTALL_DIR" = "x"; then
345           AC_MSG_CHECKING(for MATLAB mex installation dir)
346           MEX_INSTALL_DIR=`matlab -nodisplay -nodesktop -nojvm -r 'path;quit' | grep toolbox/local |sed 's,^[[^/]]*,,g' |sort |head -1`
347           AC_MSG_RESULT($MEX_INSTALL_DIR)
348           if test x`basename "$MEX_INSTALL_DIR"` != xlocal; then
349              MEX_INSTALL_DIR=""
350           fi
351           if test x"$MEX_INSTALL_DIR" = "x"; then
352             AC_MSG_WARN([can't find reasonable Matlab installation directory; Matlab plugins will not be compiled unless you manually specify MEX_INSTALL_DIR])
353           fi
354        fi
355      else
356         MEX_INSTALL_DIR=""
357      fi
358 fi
359 AM_CONDITIONAL(WITH_MATLAB, test x"$MEX_INSTALL_DIR" != "x")
360 AC_SUBST(MEX_INSTALL_DIR)
361 AC_SUBST(MEX)
362 AC_SUBST(MEXSUFF)
363
364 dnl -----------------------------------------------------------------------
365 dnl Check for broken Solaris HUGE_VAL macro under gcc 3.4.x and similar
366
367 AC_MSG_CHECKING([for working HUGE_VAL])
368 AC_TRY_COMPILE([#include <math.h>], [double x = -HUGE_VAL;], 
369 [AC_MSG_RESULT([ok])],
370 [AC_TRY_COMPILE([#include <math.h>
371 #ifdef __GNUC__
372 #undef HUGE_VAL
373 #define HUGE_VAL __builtin_huge_val()
374 #endif], [double x = -HUGE_VAL;], 
375 [AC_MSG_RESULT([__builtin_huge_val()])
376 AC_DEFINE(REPLACEMENT_HUGE_VAL,[__builtin_huge_val()],
377           [replacement for broken HUGE_VAL macro, if needed])],
378 [AC_MSG_RESULT([unknown])
379 AC_MSG_ERROR([broken HUGE_VAL macro with this compiler, unknown workaround])])])
380
381 dnl -----------------------------------------------------------------------
382 dnl Debugging
383
384 AC_ARG_ENABLE(debug, [AC_HELP_STRING([--enable-debug],[compile with extra runtime checks for debugging])], ok=$enableval, ok=no)
385 if test "$ok" = "yes"; then
386         AC_DEFINE(DEBUG,1,[Define to enable extra debugging code.])
387 fi
388
389 dnl override CFLAGS selection when debugging
390 if test "${enable_debug}" = "yes"; then
391         CFLAGS="-g"
392         CXXFLAGS="-g"
393         FFLAGS="-g"
394 fi
395
396 dnl add gcc warnings, in debug/maintainer mode only
397 if test "$enable_debug" = yes || test "$USE_MAINTAINER_MODE" = yes; then
398 if test $ac_cv_prog_gcc = yes; then
399    if test "$ac_test_CFLAGS" != "set"; then
400       CFLAGS="$CFLAGS -Wall -W -Wcast-qual -Wpointer-arith -Wcast-align -pedantic -Wshadow -Wbad-function-cast -Wwrite-strings -Wstrict-prototypes -Wredundant-decls -Wnested-externs -Wundef -Wconversion -Wmissing-prototypes -Wmissing-declarations"
401    fi
402    if test "$ac_test_CXXFLAGS" != "set"; then
403       CXXFLAGS="$CXXFLAGS -Wall -W -Wcast-qual -Wpointer-arith -Wcast-align -pedantic -Wshadow -Wwrite-strings -Wredundant-decls -Wundef -Wconversion"
404    fi
405    if test "x$with_cxx" = xyes; then
406       CFLAGS=$CXXFLAGS
407    fi
408 fi
409 fi
410
411 vers=`echo ${VERSION}.0.0 | cut -d. -f1`
412 AC_DEFINE_UNQUOTED(MAJOR_VERSION, $vers, [Major version number.])
413 vers=`echo ${VERSION}.0.0 | cut -d. -f2`
414 AC_DEFINE_UNQUOTED(MINOR_VERSION, $vers, [Minor version number.])
415 vers=`echo ${VERSION}.0.0 | cut -d. -f3`
416 AC_DEFINE_UNQUOTED(BUGFIX_VERSION, $vers, [Bugfix version number.])
417
418 dnl -----------------------------------------------------------------------
419
420 AC_CONFIG_FILES([
421    Makefile
422    nlopt.pc
423    api/Makefile
424    util/Makefile
425    octave/Makefile
426    direct/Makefile
427    cdirect/Makefile
428    stogo/Makefile
429    praxis/Makefile
430    lbfgs/Makefile
431    luksan/Makefile
432    crs/Makefile
433    mlsl/Makefile
434    mma/Makefile
435    cobyla/Makefile
436    newuoa/Makefile
437    neldermead/Makefile
438    auglag/Makefile
439    bobyqa/Makefile
440    isres/Makefile
441    slsqp/Makefile
442    test/Makefile
443    swig/Makefile
444    swig/nlopt.scm
445 ])
446
447 AC_OUTPUT