Mercurial > hg > octave-nkf
annotate configure.in @ 7905:bcacdcc726f7
Allow octave compilation without FLTK/OpenGL
author | John W. Eaton <jwe@octave.org> |
---|---|
date | Wed, 09 Jul 2008 11:00:21 -0400 |
parents | 627b10572d82 |
children | e998e81224b5 |
rev | line source |
---|---|
405 | 1 dnl configure.in |
2 dnl | |
5 | 3 dnl Process this file with autoconf to produce a configure script. |
4 dnl | |
7017 | 5 dnl Copyright (C) 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, |
6 dnl 2002, 2003, 2004, 2005, 2006, 2007 John W. Eaton | |
869 | 7 ### |
8 ### This file is part of Octave. | |
9 ### | |
10 ### Octave is free software; you can redistribute it and/or modify it | |
11 ### under the terms of the GNU General Public License as published by the | |
7016 | 12 ### Free Software Foundation; either version 3 of the License, or (at |
13 ### your option) any later version. | |
869 | 14 ### |
15 ### Octave is distributed in the hope that it will be useful, but WITHOUT | |
16 ### ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or | |
17 ### FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License | |
18 ### for more details. | |
19 ### | |
20 ### You should have received a copy of the GNU General Public License | |
7016 | 21 ### along with Octave; see the file COPYING. If not, see |
22 ### <http://www.gnu.org/licenses/>. | |
869 | 23 |
4587 | 24 ### Preserve CFLAGS and CXXFLAGS from the environment before doing |
25 ### anything else because we don't know which macros might call | |
26 ### AC_PROG_CC or AC_PROG_CXX. | |
27 | |
28 EXTERN_CFLAGS="$CFLAGS" | |
29 EXTERN_CXXFLAGS="$CXXFLAGS" | |
30 | |
3887 | 31 AC_INIT |
7451 | 32 AC_REVISION($Revision: 1.603 $) |
4531 | 33 AC_PREREQ(2.57) |
3887 | 34 AC_CONFIG_SRCDIR([src/octave.cc]) |
1146 | 35 AC_CONFIG_HEADER(config.h) |
869 | 36 |
5844 | 37 OCTAVE_HOST_TYPE |
38 | |
3887 | 39 AC_DEFINE(OCTAVE_SOURCE, 1, [Define if this is Octave.]) |
40 | |
6090 | 41 dnl FIXME -- we should probably only generate this file if it is missing. |
42 ### Produce unistd.h for MSVC target, this simplifies changes in | |
43 ### Octave source tree and avoid problems with lex-generated code. | |
44 case "$canonical_host_type" in | |
45 *-*-msdosmsvc) | |
46 AC_MSG_NOTICE([Generating replacement for <unistd.h> for MSVC]) | |
47 cat << \EOF > unistd.h | |
48 /* File generated by configure script. */ | |
49 #include <direct.h> | |
50 #include <io.h> | |
51 #include <process.h> | |
52 EOF | |
53 CPPFLAGS="-I. $CPPFLAGS" | |
54 ;; | |
55 esac | |
56 | |
5098 | 57 AC_GNU_SOURCE |
58 | |
3923 | 59 AC_AIX |
3887 | 60 AC_MINIX |
3923 | 61 AC_ISC_POSIX |
1667 | 62 |
5451 | 63 ### Path separator. |
64 sepchar=: | |
65 AC_ARG_WITH(sepchar, | |
5842 | 66 [AS_HELP_STRING([--with-sepchar=<char>], |
5844 | 67 [use <char> as the path separation character])]) |
5451 | 68 case $with_sepchar in |
69 yes | "") | |
70 case "$canonical_host_type" in | |
6090 | 71 *-*-mingw* | *-*-msdosmsvc) |
5451 | 72 sepchar=';' |
73 ;; | |
74 esac | |
75 ;; | |
76 no) | |
77 AC_MSG_ERROR([You are required to define a path separation character]) | |
78 ;; | |
79 *) | |
80 sepchar=$with_sepchar | |
81 ;; | |
82 esac | |
83 AC_SUBST(sepchar) | |
84 AC_DEFINE_UNQUOTED(SEPCHAR, ['$sepchar'], [Define this to be the path separator for your system, as a character constant.]) | |
85 AC_DEFINE_UNQUOTED(SEPCHAR_STR, ["$sepchar"], [Define this to the path separator, as a string.]) | |
86 | |
2223 | 87 ### some defaults |
88 | |
2813 | 89 OCTAVE_SET_DEFAULT(man1dir, '$(mandir)/man1') |
90 OCTAVE_SET_DEFAULT(man1ext, '.1') | |
91 OCTAVE_SET_DEFAULT(infofile, '$(infodir)/octave.info') | |
3597 | 92 OCTAVE_SET_DEFAULT(octincludedir, '$(includedir)/octave-$(version)') |
3029 | 93 OCTAVE_SET_DEFAULT(fcnfiledir, '$(datadir)/octave/$(version)/m') |
2813 | 94 OCTAVE_SET_DEFAULT(localfcnfiledir, '$(datadir)/octave/site/m') |
4449 | 95 OCTAVE_SET_DEFAULT(localapifcnfiledir, |
5778 | 96 '$(datadir)/octave/site/$(api_version)/m') |
3597 | 97 OCTAVE_SET_DEFAULT(localverfcnfiledir, '$(datadir)/octave/$(version)/site/m') |
3141 | 98 OCTAVE_SET_DEFAULT(octlibdir, '$(libdir)/octave-$(version)') |
3029 | 99 OCTAVE_SET_DEFAULT(archlibdir, |
3130 | 100 '$(libexecdir)/octave/$(version)/exec/$(canonical_host_type)') |
3029 | 101 OCTAVE_SET_DEFAULT(localarchlibdir, |
3130 | 102 '$(libexecdir)/octave/site/exec/$(canonical_host_type)') |
5909 | 103 OCTAVE_SET_DEFAULT(localapiarchlibdir, |
104 '$(libexecdir)/octave/$(api_version)/site/exec/$(canonical_host_type)') | |
3597 | 105 OCTAVE_SET_DEFAULT(localverarchlibdir, |
106 '$(libexecdir)/octave/$(version)/site/exec/$(canonical_host_type)') | |
3029 | 107 OCTAVE_SET_DEFAULT(octfiledir, |
3130 | 108 '$(libexecdir)/octave/$(version)/oct/$(canonical_host_type)') |
3029 | 109 OCTAVE_SET_DEFAULT(localoctfiledir, |
3130 | 110 '$(libexecdir)/octave/site/oct/$(canonical_host_type)') |
4449 | 111 OCTAVE_SET_DEFAULT(localapioctfiledir, |
5778 | 112 '$(libexecdir)/octave/site/oct/$(api_version)/$(canonical_host_type)') |
3597 | 113 OCTAVE_SET_DEFAULT(localveroctfiledir, |
114 '$(libexecdir)/octave/$(version)/site/oct/$(canonical_host_type)') | |
3029 | 115 OCTAVE_SET_DEFAULT(imagedir, '$(datadir)/octave/$(version)/imagelib') |
1667 | 116 |
2155 | 117 ### Make configure args available for other uses. |
118 | |
119 config_opts=$ac_configure_args | |
120 AC_SUBST(config_opts) | |
121 | |
2813 | 122 ### Make it possible to have Octave's array and matrix classes do bounds |
2108 | 123 ### checking on element references. This slows some operations down a |
2813 | 124 ### bit, so it is turned off by default. |
2108 | 125 |
2450 | 126 BOUNDS_CHECKING=false |
2108 | 127 AC_ARG_ENABLE(bounds-check, |
5844 | 128 [AS_HELP_STRING([--enable-bounds-check], |
7091 | 129 [bounds checking for indexing in internal array classes (default is no)])], |
3060 | 130 [if test "$enableval" = yes; then BOUNDS_CHECKING=true; fi], []) |
2108 | 131 if $BOUNDS_CHECKING; then |
3887 | 132 AC_DEFINE(BOUNDS_CHECKING, 1, [Define to use internal bounds checking.]) |
2108 | 133 fi |
134 | |
5275 | 135 ### If possible, use a 64-bit integer type for array dimensions and indexing. |
136 | |
137 USE_64_BIT_IDX_T=false | |
138 OCTAVE_IDX_TYPE=int | |
139 AC_ARG_ENABLE(64, | |
5844 | 140 [AS_HELP_STRING([--enable-64], |
5857 | 141 [(EXPERIMENTAL) use 64-bit integers for array dimensions and indexing])], |
5275 | 142 [if test "$enableval" = yes; then USE_64_BIT_IDX_T=true; fi], []) |
143 if $USE_64_BIT_IDX_T; then | |
144 AC_CHECK_SIZEOF(void *) | |
145 AC_CHECK_SIZEOF(int) | |
146 AC_CHECK_SIZEOF(long) | |
147 if test $ac_cv_sizeof_void_p -eq 8; then | |
148 if test $ac_cv_sizeof_int -eq 8; then | |
149 OCTAVE_IDX_TYPE=int | |
150 elif test $ac_cv_sizeof_long -eq 8; then | |
151 OCTAVE_IDX_TYPE=long | |
5351 | 152 AC_DEFINE(IDX_TYPE_LONG, 1, [Define to 1 if octave index type is long]) |
5275 | 153 else |
5857 | 154 warn_64_bit="no suitable type found for octave_idx_type so disabling 64-bit features" |
155 AC_MSG_WARN($warn_64_bit) | |
5275 | 156 USE_64_BIT_IDX_T=false |
157 fi | |
158 else | |
159 warn_64_bit="pointers are not 64-bits wide so disabling 64-bit features" | |
160 AC_MSG_WARN($warn_64_bit) | |
161 USE_64_BIT_IDX_T=false | |
162 fi | |
163 fi | |
164 AC_SUBST(OCTAVE_IDX_TYPE) | |
165 if $USE_64_BIT_IDX_T; then | |
166 AC_DEFINE(USE_64_BIT_IDX_T, 1, [Define if using 64-bit integers for array dimensions and indexing]) | |
167 fi | |
168 AC_SUBST(USE_64_BIT_IDX_T) | |
169 | |
3215 | 170 ### It seems that there are some broken inline assembly functions in |
171 ### the GNU libc. Since I'm not sure how to test whether we are using | |
172 ### GNU libc, just disable them for all platforms. | |
173 | |
5844 | 174 AC_MSG_NOTICE([defining __NO_MATH_INLINES avoids buggy GNU libc exp function]) |
3887 | 175 AC_DEFINE(__NO_MATH_INLINES, 1, [Define if your version of GNU libc has buggy inline assembly code for math functions like exp.]) |
3215 | 176 |
869 | 177 ### See which C++ compiler to use (we expect to find g++). |
178 | |
405 | 179 AC_PROG_CXX |
180 AC_PROG_CXXCPP | |
869 | 181 |
182 ### Do special things for g++. | |
183 | |
2353 | 184 gxx_version=`$CXX -v 2>&1 | grep "^.*g.. version" | \ |
4368 | 185 sed -e 's/^.*g.. version *//' -e 's/cygnus-//' -e 's/egcs-//' -e 's/ .*//'` |
3107 | 186 |
405 | 187 case "$gxx_version" in |
4368 | 188 1.* | 2.[[012345678]].*) |
4843 | 189 AC_MSG_ERROR([g++ version $gxx_version will probably fail to compile Octave] |
190 ) | |
191 ;; | |
192 2.9*) | |
193 warn_gxx_version="g++ version $gxx_version is likely to cause problems" | |
194 AC_MSG_WARN($warn_gxx_version) | |
3775 | 195 ;; |
405 | 196 esac |
869 | 197 |
1894 | 198 CXX_VERSION= |
199 if test -n "$gxx_version"; then | |
200 CXX_VERSION="$gxx_version" | |
201 fi | |
202 AC_SUBST(CXX_VERSION) | |
203 | |
3107 | 204 OCTAVE_CXX_NEW_FRIEND_TEMPLATE_DECL |
3769 | 205 OCTAVE_CXX_ISO_COMPLIANT_LIBRARY |
5854 | 206 OCTAVE_CXX_BROKEN_REINTERPRET_CAST |
3107 | 207 |
3842 | 208 # Determine the ABI used the C++ compiler, needed by the dynamic loading |
209 # code. Currently supported ABIs are GNU v2, GNU v3 and Sun Workshop. | |
210 | |
211 OCTAVE_CXX_ABI | |
212 | |
869 | 213 ### See which C compiler to use (we expect to find gcc). |
214 | |
5 | 215 AC_PROG_CC |
405 | 216 AC_PROG_CPP |
832 | 217 AC_PROG_GCC_TRADITIONAL |
869 | 218 |
219 ### Do special things for gcc. | |
220 | |
2353 | 221 gcc_version=`$CC -v 2>&1 | grep "^.*gcc version" | \ |
3107 | 222 sed -e 's/^.*g.. version *//' -e 's/cygnus-//' -e 's/egcs-//'` |
405 | 223 case "$gcc_version" in |
224 2.*) | |
1087 | 225 if test -z "$LDFLAGS"; then |
226 LDFLAGS="-g" | |
5844 | 227 AC_MSG_NOTICE([defining LDFLAGS to be $LDFLAGS]) |
1087 | 228 fi |
405 | 229 ;; |
230 1.*) | |
3105 | 231 warn_gcc_version="gcc version $gcc_version is likely to cause problems" |
232 AC_MSG_WARN($warn_gcc_version) | |
405 | 233 ;; |
5 | 234 esac |
869 | 235 |
1894 | 236 CC_VERSION= |
237 if test -n "$gcc_version"; then | |
238 CC_VERSION="$gcc_version" | |
239 fi | |
240 AC_SUBST(CC_VERSION) | |
241 | |
3775 | 242 ### The flag to create dependency varies depending on the compier. |
243 | |
244 # Assume GCC. | |
6087 | 245 INCLUDE_DEPS=true |
3775 | 246 DEPEND_FLAGS="-M" |
247 DEPEND_EXTRA_SED_PATTERN="" | |
6087 | 248 if test "$GCC" = yes; then |
249 true | |
250 else | |
251 case "$canonical_host_type" in | |
252 sparc-sun-solaris2* | i386-pc-solaris2*) | |
3775 | 253 DEPEND_FLAGS="-xM1" |
254 DEPEND_EXTRA_SED_PATTERN="-e '/\/opt\/SUNWspro/d'" | |
6087 | 255 ;; |
7451 | 256 *-*-msdosmsvc) |
257 ;; | |
6087 | 258 *) |
259 INCLUDE_DEPS=false | |
260 ;; | |
261 esac | |
262 fi | |
263 AC_SUBST(INCLUDE_DEPS) | |
3775 | 264 AC_SUBST(DEPEND_FLAGS) |
265 AC_SUBST(DEPEND_EXTRA_SED_PATTERN) | |
266 | |
5076 | 267 ### On Intel systems with gcc, we may need to compile with -mieee-fp |
268 ### and -ffloat-store to get full support for IEEE floating point. | |
2020 | 269 ### |
3126 | 270 ### On Alpha/OSF systems, we need -mieee. |
869 | 271 |
3126 | 272 ieee_fp_flag= |
350 | 273 case "$canonical_host_type" in |
6102 | 274 ## Keep this pattern first, so that it is preferred over the |
275 ## following pattern for x86. | |
276 *-*-msdosmsvc) | |
277 CXXFLAGS="$CXXFLAGS -EHs -MD" | |
278 CFLAGS="$CFLAGS -MD" | |
279 ;; | |
3887 | 280 i[[3456789]]86-*-*) |
5076 | 281 if test "$GCC" = yes; then |
282 OCTAVE_CC_FLAG(-mieee-fp, [ | |
283 ieee_fp_flag=-mieee-fp | |
284 XTRA_CFLAGS="$XTRA_CFLAGS -mieee-fp" | |
5844 | 285 AC_MSG_NOTICE([adding -mieee-fp to XTRA_CFLAGS])]) |
3126 | 286 |
5078 | 287 ### OCTAVE_CC_FLAG(-ffloat-store, [ |
288 ### float_store_flag=-ffloat-store | |
289 ### XTRA_CFLAGS="$XTRA_CFLAGS -ffloat-store" | |
290 ### AC_MSG_RESULT([adding -ffloat-store to XTRA_CFLAGS])]) | |
5076 | 291 fi |
292 if test "$GXX" = yes; then | |
293 OCTAVE_CXX_FLAG(-mieee-fp, [ | |
294 ieee_fp_flag=-mieee-fp | |
295 XTRA_CXXFLAGS="$XTRA_CXXFLAGS -mieee-fp" | |
5844 | 296 AC_MSG_NOTICE([adding -mieee-fp to XTRA_CXXFLAGS])]) |
5076 | 297 |
5078 | 298 ### OCTAVE_CXX_FLAG(-ffloat-store, [ |
299 ### float_store_flag=-ffloat-store | |
300 ### XTRA_CXXFLAGS="$XTRA_CXXFLAGS -ffloat-store" | |
301 ### AC_MSG_RESULT([adding -ffloat-store to XTRA_CXXFLAGS])]) | |
5076 | 302 fi |
324 | 303 ;; |
3127 | 304 alpha*-*-*) |
4284 | 305 if test "$GCC" = yes; then |
4812 | 306 OCTAVE_CC_FLAG(-mieee, [ |
307 ieee_fp_flag=-mieee | |
308 XTRA_CFLAGS="$XTRA_CFLAGS -mieee" | |
5844 | 309 AC_MSG_NOTICE([adding -mieee to XTRA_CFLAGS])]) |
5076 | 310 else |
311 OCTAVE_CC_FLAG(-ieee, [ | |
312 ieee_fp_flag=-ieee | |
313 XTRA_CFLAGS="$XTRA_CFLAGS -ieee" | |
5844 | 314 AC_MSG_NOTICE([adding -ieee to XTRA_CFLAGS])]) |
5076 | 315 fi |
316 if test "$GXX" = yes; then | |
4812 | 317 OCTAVE_CXX_FLAG(-mieee, [ |
318 ieee_fp_flag=-mieee | |
319 XTRA_CXXFLAGS="$XTRA_CXXFLAGS -mieee" | |
5844 | 320 AC_MSG_NOTICE([adding -mieee to XTRA_CXXFLAGS])]) |
4284 | 321 else |
322 OCTAVE_CXX_FLAG(-ieee, [ | |
323 ieee_fp_flag=-ieee | |
324 XTRA_CXXFLAGS="$XTRA_CXXFLAGS -ieee" | |
5844 | 325 AC_MSG_NOTICE([adding -ieee to XTRA_CXXFLAGS])]) |
4284 | 326 fi |
2020 | 327 ;; |
3176 | 328 *ibm-aix4*) |
3351 | 329 OCTAVE_CC_FLAG(-mminimal-toc, [ |
330 XTRA_CFLAGS="$XTRA_CFLAGS -mminimal-toc"]) | |
3176 | 331 |
3351 | 332 OCTAVE_CXX_FLAG(-mminimal-toc, [ |
333 XTRA_CXXFLAGS="$XTRA_CXXFLAGS -mminimal-toc"]) | |
3176 | 334 ;; |
324 | 335 esac |
3126 | 336 |
337 AC_SUBST(XTRA_CFLAGS) | |
338 AC_SUBST(XTRA_CXXFLAGS) | |
869 | 339 |
1667 | 340 ### Use -static if compiling on Alpha OSF/1 1.3 systems. |
341 | |
342 case "$canonical_host_type" in | |
3127 | 343 alpha*-dec-osf1.3) |
1667 | 344 LD_STATIC_FLAG=-static |
345 ;; | |
346 esac | |
1679 | 347 if test -n "$LD_STATIC_FLAG"; then |
5844 | 348 AC_MSG_NOTICE([defining LD_STATIC_FLAG to be $LD_STATIC_FLAG]) |
1679 | 349 fi |
350 AC_SUBST(LD_STATIC_FLAG) | |
1667 | 351 |
3222 | 352 OCTAVE_CXX_PREPENDS_UNDERSCORE |
4094 | 353 |
354 ### Defaults for cross compiling. BUILD_CC and BUILD_CXX are | |
355 ### the compilers that we use for building tools on the build system. | |
4098 | 356 ### For now, we assume that the only cross compiling we can do is |
4298 | 357 ### with gcc on a Unixy system, but the dedicated hacker can override these. |
4094 | 358 |
359 if test "$cross_compiling" = yes; then | |
360 BUILD_CC="gcc" | |
361 BUILD_CFLAGS="-O2 -g" | |
362 BUILD_CXX="g++" | |
363 BUILD_CXXFLAGS="-O2 -g" | |
4298 | 364 BUILD_LDFLAGS="" |
4098 | 365 BUILD_EXEEXT="" |
4094 | 366 else |
4298 | 367 BUILD_CC='$(CC)' |
368 BUILD_CFLAGS='$(CFLAGS)' | |
369 BUILD_CXX='$(CXX)' | |
370 BUILD_CXXFLAGS='$(CXXFLAGS)' | |
371 BUILD_LDFLAGS='$(LDFLAGS)' | |
4284 | 372 case "$canonical_host_type" in |
373 sparc-sun-solaris2*) | |
374 if test "$GCC" != yes; then | |
4298 | 375 ## The Sun C++ compiler never seems to complete compiling |
376 ## gendoc.cc unless we reduce the optimization level... | |
377 BUILD_CXXFLAGS="-g -O1" | |
4284 | 378 fi |
379 ;; | |
380 esac | |
4298 | 381 BUILD_EXEEXT='$(EXEEXT)' |
4094 | 382 fi |
383 | |
384 AC_ARG_VAR(BUILD_CC, [build system C compiler (used if cross compiling)]) | |
385 AC_ARG_VAR(BUILD_CFLAGS, [build system C compiler flags (used if cross compiling)]) | |
386 AC_ARG_VAR(BUILD_CXX, [build system C++ compiler (used if cross compiling)]) | |
387 AC_ARG_VAR(BUILD_CXXFLAGS, [build system C++ compiler flags (used if cross compiling)]) | |
4298 | 388 AC_ARG_VAR(BUILD_LDFLAGS, [build system C++ compiler link flags (used if cross compiling)]) |
389 AC_ARG_VAR(BUILD_EXEEXT, [build system executable extension (used if cross compiling)]) | |
3222 | 390 |
3232 | 391 dnl This is bogus. We shouldn't have to explicitly add libc too! |
392 | |
393 ### Look for math library. If found, this will add -lm to LIBS. | |
394 | |
395 case "$canonical_host_type" in | |
396 *-*-nextstep*) | |
397 ;; | |
398 *-*-linux*) | |
399 AC_CHECK_LIB(m, sin, , , -lc) | |
400 ;; | |
401 *) | |
402 AC_CHECK_LIB(m, sin) | |
403 ;; | |
404 esac | |
405 | |
6823 | 406 ### Check for the QHull library |
407 AC_SUBST(QHULL_LIBS) | |
408 AC_CHECK_HEADER(qhull/qhull_a.h, have_qhull=yes, have_qhull=no) | |
409 if test "$have_qhull" = yes; then | |
410 AC_CHECK_LIB(qhull, qh_qhull, have_qhull=yes, have_qhull=no) | |
411 if test "$have_qhull" != yes; then | |
412 AC_CHECK_QHULL_VERSION(have_qhull=yes, have_qhull=no) | |
413 AC_DEFINE(NEED_QHULL_VERSION, 1, [Define if the QHull library needs a wh_version variable defined.]) | |
414 fi | |
415 fi | |
416 if test "$have_qhull" = yes; then | |
417 AC_DEFINE(HAVE_QHULL, 1, [Define if the QHull library is used.]) | |
418 QHULL_LIBS="-lqhull" | |
6855 | 419 TEXINFO_QHULL="@set HAVE_QHULL" |
6823 | 420 else |
421 warn_qhull="Qhull library not found --- This will result in loss of functionality of some geometry functions." | |
422 AC_MSG_WARN($warn_qhull) | |
423 fi | |
424 | |
6855 | 425 AC_SUBST(TEXINFO_QHULL) |
426 | |
5585 | 427 ### Check for pcre/regex library. |
7173 | 428 |
429 ## check for pcre-config, and if so, set CPPFLAGS appropriately | |
430 AC_CHECK_PROG(WITH_PCRE_CONFIG, pcre-config, yes, no) | |
431 if test $WITH_PCRE_CONFIG = yes ; then | |
432 CPPFLAGS="$CPPFLAGS $(pcre-config --cflags)" | |
433 fi | |
434 | |
435 ## NB: no need to do separate check for pcre.h header -- checking macros is good enough | |
436 AC_CACHE_CHECK([whether pcre.h defines the macros we need], [ac_cv_pcre_h_macros_present], [ | |
437 AC_EGREP_CPP([PCRE_HAS_MACROS_WE_NEED], [ | |
438 #include <pcre.h> | |
6133 | 439 #if defined (PCRE_INFO_NAMECOUNT) \ |
440 && defined (PCRE_INFO_NAMEENTRYSIZE) \ | |
441 && defined (PCRE_INFO_NAMETABLE) | |
442 PCRE_HAS_MACROS_WE_NEED | |
7173 | 443 #endif], ac_cv_pcre_h_macros_present=yes, ac_cv_pcre_h_macros_present=no)]) |
444 WITH_PCRE="$ac_cv_pcre_h_macros_present" | |
7169 | 445 |
7173 | 446 REGEX_LIBS= |
447 if test $WITH_PCRE = yes; then | |
448 AC_DEFINE(HAVE_PCRE, 1, [Define if PCRE is available.]) | |
449 if test $WITH_PCRE_CONFIG = yes; then | |
450 REGEX_LIBS=$(pcre-config --libs) | |
451 else | |
452 REGEX_LIBS=-lpcre | |
453 fi | |
7174 | 454 else |
6133 | 455 warn_pcre="PCRE library not found. This will result in some loss of functionality for the regular expression matching functions." |
456 AC_MSG_WARN($warn_pcre) | |
457 fi | |
7169 | 458 |
5585 | 459 AC_CHECK_FUNCS(regexec, WITH_REGEX=yes , [ |
460 AC_CHECK_LIB(regex, regexec, WITH_REGEX=yes, WITH_REGEX=no)]) | |
461 if test $WITH_REGEX = yes ; then | |
462 AC_DEFINE(HAVE_REGEX, 1, [Define if regex is available.]) | |
5600 | 463 if test $WITH_PCRE = no ; then |
5585 | 464 AC_CHECK_FUNCS(regexec, REGEX_LIBS= , [ |
465 AC_CHECK_LIB(regex, regexec, REGEX_LIBS="-lregex")]) | |
466 fi | |
467 fi | |
6133 | 468 if test $WITH_REGEX = no; then |
469 warn_regex="regular expression functions not found. The regular expression matching functions will be disabled." | |
470 AC_MSG_WARN($warn_regex) | |
471 fi | |
7173 | 472 |
7169 | 473 AC_SUBST(REGEX_LIBS) |
5585 | 474 |
5270 | 475 ### Check for ZLIB library. |
3820 | 476 |
5270 | 477 WITH_ZLIB=true |
478 AC_ARG_WITH(zlib, | |
5844 | 479 [AS_HELP_STRING([--without-zlib], [don't use zlib])], |
5270 | 480 with_zlib=$withval, with_zlib=yes) |
3820 | 481 |
5270 | 482 zlib_lib= |
483 if test "$with_zlib" = yes; then | |
484 zlib_lib="z" | |
485 elif test "$with_zlib" != no; then | |
486 zlib_lib="$with_zlib" | |
3687 | 487 fi |
488 | |
5270 | 489 ZLIB_LIBS= |
490 WITH_ZLIB=false | |
491 if test -n "$zlib_lib"; then | |
5337 | 492 AC_CHECK_LIB($zlib_lib, gzclearerr, [ |
5270 | 493 AC_CHECK_HEADERS(zlib.h, [ |
494 WITH_ZLIB=true | |
495 ZLIB_LIBS="-l$zlib_lib" | |
496 LIBS="$ZLIB_LIBS $LIBS" | |
497 AC_DEFINE(HAVE_ZLIB, 1, [Define if ZLIB is available.])])]) | |
498 fi | |
499 | |
500 if $WITH_ZLIB; then | |
501 ### Check for HDF5 library. | |
502 | |
503 WITH_HDF5=true | |
504 AC_ARG_WITH(hdf5, | |
5844 | 505 [AS_HELP_STRING([--without-hdf5], [don't use HDF5])], |
5270 | 506 with_hdf5=$withval, with_hdf5=yes) |
507 | |
508 hdf5_lib= | |
509 if test "$with_hdf5" = yes; then | |
510 hdf5_lib="hdf5" | |
511 elif test "$with_hdf5" != no; then | |
512 hdf5_lib="$with_hdf5" | |
513 fi | |
514 | |
515 HDF5_LIBS= | |
516 WITH_HDF5=false | |
517 if test -n "$hdf5_lib"; then | |
518 AC_CHECK_LIB($hdf5_lib, H5Pcreate, [ | |
3820 | 519 AC_CHECK_HEADERS(hdf5.h, [ |
5270 | 520 WITH_HDF5=true |
521 HDF5_LIBS="-l$hdf5_lib" | |
3820 | 522 LIBS="$HDF5_LIBS $LIBS" |
4696 | 523 AC_DEFINE(HAVE_HDF5, 1, [Define if HDF5 is available.]) |
524 AC_CHECK_LIB($hdf5_lib, H5Gget_num_objs, [ | |
5270 | 525 AC_DEFINE(HAVE_H5GGET_NUM_OBJS, 1, [Define if HDF5 has H5Gget_num_objs.])])])]) |
526 fi | |
527 | |
528 if $WITH_HDF5; then | |
6276 | 529 case "$canonical_host_type" in |
530 *-*-msdosmsvc) | |
531 OCTAVE_HDF5_DLL | |
532 ;; | |
533 esac | |
5270 | 534 true |
535 else | |
536 warn_hdf5="HDF5 library not found. Octave will not be able to save or load HDF5 data files." | |
6133 | 537 AC_MSG_WARN($warn_hdf5) |
5270 | 538 fi |
539 else | |
540 warn_zlib="ZLIB library not found. Octave will not be able to save or load compressed data files or HDF5 files." | |
6133 | 541 AC_MSG_WARN($warn_zlib) |
3820 | 542 fi |
3687 | 543 |
5203 | 544 |
3827 | 545 # Checks for FFTW header and library. |
546 | |
547 # subdirectories of libcruft to build if they aren't found on the system: | |
548 FFT_DIR="fftpack" | |
549 AC_SUBST(FFT_DIR) | |
550 | |
551 # Installed fftw library, if any. | |
552 FFTW_LIBS='' | |
553 AC_SUBST(FFTW_LIBS) | |
554 | |
555 AC_ARG_WITH(fftw, | |
5844 | 556 [AS_HELP_STRING([--without-fftw], |
557 [use included fftpack instead of installed fftw])], | |
3886 | 558 with_fftw=$withval, with_fftw=yes) |
3827 | 559 |
5513 | 560 if test "$with_fftw" = yes; then |
4773 | 561 have_fftw3_header=no |
562 with_fftw3=no | |
6668 | 563 AC_CHECK_HEADER(fftw3.h, [have_fftw3_header=yes]) |
4773 | 564 if test "$have_fftw3_header" = yes; then |
7789
82be108cc558
First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents:
7683
diff
changeset
|
565 AC_CHECK_LIB(fftw3, fftw_plan_dft_1d, [ |
82be108cc558
First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents:
7683
diff
changeset
|
566 AC_CHECK_LIB(fftw3f, fftwf_plan_dft_1d, [FFTW_LIBS="-lfftw3 -lfftw3f"; with_fftw3=yes])]) |
3827 | 567 fi |
568 fi | |
569 | |
4773 | 570 if test "$with_fftw" = yes && test "$with_fftw3" = yes; then |
3827 | 571 FFT_DIR='' |
4773 | 572 AC_DEFINE(HAVE_FFTW3, 1, [Define if the FFTW3 library is used.]) |
6133 | 573 else |
574 warn_fftw="FFTW library not found. Octave will use the (slower) FFTPACK library instead." | |
575 AC_MSG_RESULT($warn_fftw) | |
3827 | 576 fi |
577 | |
5235 | 578 # Checks for GLPK header and library. |
579 | |
580 AC_ARG_WITH(glpk, | |
5844 | 581 [AS_HELP_STRING([--without-glpk], [don't use GLPK])], |
5235 | 582 with_glpk=$withval, with_glpk=yes) |
583 | |
584 glpk_lib= | |
585 if test "$with_glpk" = yes; then | |
586 glpk_lib="glpk" | |
587 elif test "$with_glpk" != no; then | |
588 glpk_lib="$with_glpk" | |
589 fi | |
590 | |
591 GLPK_LIBS= | |
592 if test -n "$glpk_lib"; then | |
6806 | 593 AC_CHECK_HEADERS([glpk/glpk.h glpk.h], [ |
594 AC_CHECK_LIB($glpk_lib, glp_lpx_simplex, [ | |
5235 | 595 GLPK_LIBS="-l$glpk_lib" |
6806 | 596 AC_DEFINE(GLPK_PRE_4_14, 1, [Define if GLPK version is less than 4.14.])], [ |
597 AC_CHECK_LIB($glpk_lib, _glp_lpx_simplex, [ | |
598 GLPK_LIBS="-l$glpk_lib"], [])]) | |
599 | |
600 if test -n "$GLPK_LIBS"; then | |
601 AC_DEFINE(HAVE_GLPK, 1, [Define if GLPK is available.]) | |
602 fi | |
603 break]) | |
5235 | 604 fi |
605 AC_SUBST(GLPK_LIBS) | |
6806 | 606 if test -z "$GLPK_LIBS"; then |
6133 | 607 warn_glpk="GLPK library not found. The glpk function for solving linear programs will be disabled." |
608 fi | |
5235 | 609 |
6043 | 610 # Checks for CURL header and library. |
611 | |
612 AC_ARG_WITH(curl, | |
613 [AS_HELP_STRING([--without-curl], [don't use CURL])], | |
614 with_curl=$withval, with_curl=yes) | |
615 | |
616 curl_lib= | |
617 if test "$with_curl" = yes; then | |
618 curl_lib="curl" | |
619 elif test "$with_curl" != no; then | |
620 curl_lib="$with_curl" | |
6335 | 621 else |
622 curl_missing=yes | |
6043 | 623 fi |
624 | |
625 CURL_LIBS= | |
626 if test -n "$curl_lib"; then | |
6056 | 627 AC_CHECK_LIB($curl_lib, curl_easy_escape, [ |
6043 | 628 AC_CHECK_HEADERS(curl/curl.h, [ |
629 CURL_LIBS="-l$curl_lib" | |
6133 | 630 AC_DEFINE(HAVE_CURL, 1, [Define if CURL is available.])], [ |
631 curl_missing=yes])]) | |
6043 | 632 fi |
633 AC_SUBST(CURL_LIBS) | |
6133 | 634 if test "$curl_missing" = yes; then |
635 warn_curl="cURL library not found. The urlread and urlwrite functions will be disabled." | |
636 fi | |
637 | |
6043 | 638 |
7834
caab78e7e377
added checks for fltk & freetype in configure script
Shai Ayal <shaiay@sourceforge.net>
parents:
7825
diff
changeset
|
639 # --------------------------------------------------------------------- |
caab78e7e377
added checks for fltk & freetype in configure script
Shai Ayal <shaiay@sourceforge.net>
parents:
7825
diff
changeset
|
640 |
caab78e7e377
added checks for fltk & freetype in configure script
Shai Ayal <shaiay@sourceforge.net>
parents:
7825
diff
changeset
|
641 ## libraries needed for graphics |
caab78e7e377
added checks for fltk & freetype in configure script
Shai Ayal <shaiay@sourceforge.net>
parents:
7825
diff
changeset
|
642 |
7863
2a62d45fa21d
added check for FTGL library
Shai Ayal <shaiay@users.sourceforge.net>
parents:
7834
diff
changeset
|
643 warn_graphics="" |
2a62d45fa21d
added check for FTGL library
Shai Ayal <shaiay@users.sourceforge.net>
parents:
7834
diff
changeset
|
644 |
7905
bcacdcc726f7
Allow octave compilation without FLTK/OpenGL
John W. Eaton <jwe@octave.org>
parents:
7887
diff
changeset
|
645 GL_RENDER_SRC= |
7834
caab78e7e377
added checks for fltk & freetype in configure script
Shai Ayal <shaiay@sourceforge.net>
parents:
7825
diff
changeset
|
646 GRAPHICS_OPENGL= |
caab78e7e377
added checks for fltk & freetype in configure script
Shai Ayal <shaiay@sourceforge.net>
parents:
7825
diff
changeset
|
647 OCTAVE_OPENGL |
caab78e7e377
added checks for fltk & freetype in configure script
Shai Ayal <shaiay@sourceforge.net>
parents:
7825
diff
changeset
|
648 if test "x$OPENGL_LIBS" != "x"; then |
caab78e7e377
added checks for fltk & freetype in configure script
Shai Ayal <shaiay@sourceforge.net>
parents:
7825
diff
changeset
|
649 GRAPHICS_OPENGL="opengl" |
7905
bcacdcc726f7
Allow octave compilation without FLTK/OpenGL
John W. Eaton <jwe@octave.org>
parents:
7887
diff
changeset
|
650 GL_RENDER_SRC="gl-render.cc" |
7863
2a62d45fa21d
added check for FTGL library
Shai Ayal <shaiay@users.sourceforge.net>
parents:
7834
diff
changeset
|
651 |
2a62d45fa21d
added check for FTGL library
Shai Ayal <shaiay@users.sourceforge.net>
parents:
7834
diff
changeset
|
652 ## ftgl (needs freetype 2) |
2a62d45fa21d
added check for FTGL library
Shai Ayal <shaiay@users.sourceforge.net>
parents:
7834
diff
changeset
|
653 AC_CHECK_FT2([9.0.3],[], |
2a62d45fa21d
added check for FTGL library
Shai Ayal <shaiay@users.sourceforge.net>
parents:
7834
diff
changeset
|
654 [warn_graphics="FreeType library not found. Native renderer will not have on-screen text"]) |
2a62d45fa21d
added check for FTGL library
Shai Ayal <shaiay@users.sourceforge.net>
parents:
7834
diff
changeset
|
655 if test "x$warn_graphics" = "x" ; then |
2a62d45fa21d
added check for FTGL library
Shai Ayal <shaiay@users.sourceforge.net>
parents:
7834
diff
changeset
|
656 AC_LANG_PUSH(C++) |
2a62d45fa21d
added check for FTGL library
Shai Ayal <shaiay@users.sourceforge.net>
parents:
7834
diff
changeset
|
657 AC_CHECK_HEADERS([FTGL/FTGL.h], [ |
2a62d45fa21d
added check for FTGL library
Shai Ayal <shaiay@users.sourceforge.net>
parents:
7834
diff
changeset
|
658 AC_MSG_CHECKING([for FTGLTextureFont in -lftgl]) |
2a62d45fa21d
added check for FTGL library
Shai Ayal <shaiay@users.sourceforge.net>
parents:
7834
diff
changeset
|
659 save_LIBS="$LIBS" |
2a62d45fa21d
added check for FTGL library
Shai Ayal <shaiay@users.sourceforge.net>
parents:
7834
diff
changeset
|
660 save_CXXFLAGS="$CXXFLAGS" |
2a62d45fa21d
added check for FTGL library
Shai Ayal <shaiay@users.sourceforge.net>
parents:
7834
diff
changeset
|
661 LIBS="$LIBS $OPENGL_LIBS $FT2_LIBS -lftgl" |
2a62d45fa21d
added check for FTGL library
Shai Ayal <shaiay@users.sourceforge.net>
parents:
7834
diff
changeset
|
662 CXXFLAGS="$CXXFLAGS $FT2_CFLAGS" |
2a62d45fa21d
added check for FTGL library
Shai Ayal <shaiay@users.sourceforge.net>
parents:
7834
diff
changeset
|
663 AC_TRY_LINK([ |
2a62d45fa21d
added check for FTGL library
Shai Ayal <shaiay@users.sourceforge.net>
parents:
7834
diff
changeset
|
664 #include <FTGL/FTGLTextureFont.h>], [ |
2a62d45fa21d
added check for FTGL library
Shai Ayal <shaiay@users.sourceforge.net>
parents:
7834
diff
changeset
|
665 FTGLTextureFont font("");], [ |
2a62d45fa21d
added check for FTGL library
Shai Ayal <shaiay@users.sourceforge.net>
parents:
7834
diff
changeset
|
666 OPENGL_LIBS="$OPENGL_LIBS $FT2_LIBS -lftgl" |
2a62d45fa21d
added check for FTGL library
Shai Ayal <shaiay@users.sourceforge.net>
parents:
7834
diff
changeset
|
667 LIBS="$save_LIBS" |
2a62d45fa21d
added check for FTGL library
Shai Ayal <shaiay@users.sourceforge.net>
parents:
7834
diff
changeset
|
668 AC_DEFINE(HAVE_FTGL, 1, [Define to 1 if FTGL is present]) |
7874
e3a502930e2a
eliminate src/graphics subdirectory
John W. Eaton <jwe@octave.org>
parents:
7863
diff
changeset
|
669 AC_MSG_RESULT(yes) |
e3a502930e2a
eliminate src/graphics subdirectory
John W. Eaton <jwe@octave.org>
parents:
7863
diff
changeset
|
670 XTRA_CXXFLAGS="$XTRA_CXXFLAGS $FT2_CFLAGS"],[ |
7887
627b10572d82
configure.in: fix invalid placement of variables restoration statements
Jaroslav Hajek <highegg@gmail.com>
parents:
7874
diff
changeset
|
671 AC_MSG_RESULT(no)]) |
627b10572d82
configure.in: fix invalid placement of variables restoration statements
Jaroslav Hajek <highegg@gmail.com>
parents:
7874
diff
changeset
|
672 LIBS="$save_LIBS" |
627b10572d82
configure.in: fix invalid placement of variables restoration statements
Jaroslav Hajek <highegg@gmail.com>
parents:
7874
diff
changeset
|
673 CXXFLAGS="$save_CXXFLAGS" |
627b10572d82
configure.in: fix invalid placement of variables restoration statements
Jaroslav Hajek <highegg@gmail.com>
parents:
7874
diff
changeset
|
674 ],[ |
7874
e3a502930e2a
eliminate src/graphics subdirectory
John W. Eaton <jwe@octave.org>
parents:
7863
diff
changeset
|
675 warn_graphics="FTGL library not found. Native renderer will not have on-screen text"]) |
7863
2a62d45fa21d
added check for FTGL library
Shai Ayal <shaiay@users.sourceforge.net>
parents:
7834
diff
changeset
|
676 AC_LANG_POP(C++) |
2a62d45fa21d
added check for FTGL library
Shai Ayal <shaiay@users.sourceforge.net>
parents:
7834
diff
changeset
|
677 fi |
7834
caab78e7e377
added checks for fltk & freetype in configure script
Shai Ayal <shaiay@sourceforge.net>
parents:
7825
diff
changeset
|
678 fi |
caab78e7e377
added checks for fltk & freetype in configure script
Shai Ayal <shaiay@sourceforge.net>
parents:
7825
diff
changeset
|
679 |
caab78e7e377
added checks for fltk & freetype in configure script
Shai Ayal <shaiay@sourceforge.net>
parents:
7825
diff
changeset
|
680 GRAPHICS_LIBS= |
caab78e7e377
added checks for fltk & freetype in configure script
Shai Ayal <shaiay@sourceforge.net>
parents:
7825
diff
changeset
|
681 GRAPHICS_CFLAGS= |
7905
bcacdcc726f7
Allow octave compilation without FLTK/OpenGL
John W. Eaton <jwe@octave.org>
parents:
7887
diff
changeset
|
682 FLTK_BACKEND_SRC= |
7834
caab78e7e377
added checks for fltk & freetype in configure script
Shai Ayal <shaiay@sourceforge.net>
parents:
7825
diff
changeset
|
683 |
caab78e7e377
added checks for fltk & freetype in configure script
Shai Ayal <shaiay@sourceforge.net>
parents:
7825
diff
changeset
|
684 ## fltk (www.fltk.org) |
caab78e7e377
added checks for fltk & freetype in configure script
Shai Ayal <shaiay@sourceforge.net>
parents:
7825
diff
changeset
|
685 AC_ARG_WITH(fltk-prefix, |
caab78e7e377
added checks for fltk & freetype in configure script
Shai Ayal <shaiay@sourceforge.net>
parents:
7825
diff
changeset
|
686 [ --with-fltk-prefix=PFX Prefix where FLTK is installed (optional)], |
caab78e7e377
added checks for fltk & freetype in configure script
Shai Ayal <shaiay@sourceforge.net>
parents:
7825
diff
changeset
|
687 fltk_prefix="$withval", |
caab78e7e377
added checks for fltk & freetype in configure script
Shai Ayal <shaiay@sourceforge.net>
parents:
7825
diff
changeset
|
688 fltk_prefix="") |
caab78e7e377
added checks for fltk & freetype in configure script
Shai Ayal <shaiay@sourceforge.net>
parents:
7825
diff
changeset
|
689 AC_ARG_WITH(fltk-exec-prefix, |
caab78e7e377
added checks for fltk & freetype in configure script
Shai Ayal <shaiay@sourceforge.net>
parents:
7825
diff
changeset
|
690 [ --with-fltk-exec-prefix=PFX Exec prefix where FLTK is installed (optional)], |
caab78e7e377
added checks for fltk & freetype in configure script
Shai Ayal <shaiay@sourceforge.net>
parents:
7825
diff
changeset
|
691 fltk_exec_prefix="$withval", |
caab78e7e377
added checks for fltk & freetype in configure script
Shai Ayal <shaiay@sourceforge.net>
parents:
7825
diff
changeset
|
692 fltk_exec_prefix="") |
caab78e7e377
added checks for fltk & freetype in configure script
Shai Ayal <shaiay@sourceforge.net>
parents:
7825
diff
changeset
|
693 |
caab78e7e377
added checks for fltk & freetype in configure script
Shai Ayal <shaiay@sourceforge.net>
parents:
7825
diff
changeset
|
694 if test "x$fltk_exec_prefix" != x ; then |
caab78e7e377
added checks for fltk & freetype in configure script
Shai Ayal <shaiay@sourceforge.net>
parents:
7825
diff
changeset
|
695 fltk_args="$fltk_args --exec-prefix=$fltk_exec_prefix" |
caab78e7e377
added checks for fltk & freetype in configure script
Shai Ayal <shaiay@sourceforge.net>
parents:
7825
diff
changeset
|
696 if test "x${FLTK_CONFIG+set}" != xset ; then |
caab78e7e377
added checks for fltk & freetype in configure script
Shai Ayal <shaiay@sourceforge.net>
parents:
7825
diff
changeset
|
697 FLTK_CONFIG="$fltk_exec_prefix/bin/fltk-config" |
caab78e7e377
added checks for fltk & freetype in configure script
Shai Ayal <shaiay@sourceforge.net>
parents:
7825
diff
changeset
|
698 fi |
caab78e7e377
added checks for fltk & freetype in configure script
Shai Ayal <shaiay@sourceforge.net>
parents:
7825
diff
changeset
|
699 fi |
caab78e7e377
added checks for fltk & freetype in configure script
Shai Ayal <shaiay@sourceforge.net>
parents:
7825
diff
changeset
|
700 |
caab78e7e377
added checks for fltk & freetype in configure script
Shai Ayal <shaiay@sourceforge.net>
parents:
7825
diff
changeset
|
701 if test "x$fltk_prefix" != x ; then |
caab78e7e377
added checks for fltk & freetype in configure script
Shai Ayal <shaiay@sourceforge.net>
parents:
7825
diff
changeset
|
702 fltk_args="$fltk_args --prefix=$fltk_prefix" |
caab78e7e377
added checks for fltk & freetype in configure script
Shai Ayal <shaiay@sourceforge.net>
parents:
7825
diff
changeset
|
703 if test x${FLTK_CONFIG+set} != xset ; then |
caab78e7e377
added checks for fltk & freetype in configure script
Shai Ayal <shaiay@sourceforge.net>
parents:
7825
diff
changeset
|
704 FLTK_CONFIG="$fltk_prefix/bin/fltk-config" |
caab78e7e377
added checks for fltk & freetype in configure script
Shai Ayal <shaiay@sourceforge.net>
parents:
7825
diff
changeset
|
705 fi |
caab78e7e377
added checks for fltk & freetype in configure script
Shai Ayal <shaiay@sourceforge.net>
parents:
7825
diff
changeset
|
706 fi |
caab78e7e377
added checks for fltk & freetype in configure script
Shai Ayal <shaiay@sourceforge.net>
parents:
7825
diff
changeset
|
707 |
caab78e7e377
added checks for fltk & freetype in configure script
Shai Ayal <shaiay@sourceforge.net>
parents:
7825
diff
changeset
|
708 AC_PATH_PROG(FLTK_CONFIG, fltk-config, no) |
caab78e7e377
added checks for fltk & freetype in configure script
Shai Ayal <shaiay@sourceforge.net>
parents:
7825
diff
changeset
|
709 |
caab78e7e377
added checks for fltk & freetype in configure script
Shai Ayal <shaiay@sourceforge.net>
parents:
7825
diff
changeset
|
710 if test "$FLTK_CONFIG" = "no" ; then |
caab78e7e377
added checks for fltk & freetype in configure script
Shai Ayal <shaiay@sourceforge.net>
parents:
7825
diff
changeset
|
711 warn_graphics="fltk library (www.fltk.org) not found. Native graphics will be disabled." |
caab78e7e377
added checks for fltk & freetype in configure script
Shai Ayal <shaiay@sourceforge.net>
parents:
7825
diff
changeset
|
712 else |
caab78e7e377
added checks for fltk & freetype in configure script
Shai Ayal <shaiay@sourceforge.net>
parents:
7825
diff
changeset
|
713 FLTK_CFLAGS="`$FLTK_CONFIG $fltkconf_args --use-gl --cflags`" |
caab78e7e377
added checks for fltk & freetype in configure script
Shai Ayal <shaiay@sourceforge.net>
parents:
7825
diff
changeset
|
714 FLTK_LDFLAGS="`$FLTK_CONFIG $fltkconf_args --use-gl --ldflags`" |
caab78e7e377
added checks for fltk & freetype in configure script
Shai Ayal <shaiay@sourceforge.net>
parents:
7825
diff
changeset
|
715 |
caab78e7e377
added checks for fltk & freetype in configure script
Shai Ayal <shaiay@sourceforge.net>
parents:
7825
diff
changeset
|
716 AC_MSG_CHECKING(for OpenGL support in fltk) |
caab78e7e377
added checks for fltk & freetype in configure script
Shai Ayal <shaiay@sourceforge.net>
parents:
7825
diff
changeset
|
717 cat > conftest.cc <<EOF |
caab78e7e377
added checks for fltk & freetype in configure script
Shai Ayal <shaiay@sourceforge.net>
parents:
7825
diff
changeset
|
718 #include <FL/gl.h> |
caab78e7e377
added checks for fltk & freetype in configure script
Shai Ayal <shaiay@sourceforge.net>
parents:
7825
diff
changeset
|
719 int nothing=0; |
caab78e7e377
added checks for fltk & freetype in configure script
Shai Ayal <shaiay@sourceforge.net>
parents:
7825
diff
changeset
|
720 EOF |
caab78e7e377
added checks for fltk & freetype in configure script
Shai Ayal <shaiay@sourceforge.net>
parents:
7825
diff
changeset
|
721 $CXX $CXXFLAGS $FLTK_CFLAGS -c conftest.cc || \ |
caab78e7e377
added checks for fltk & freetype in configure script
Shai Ayal <shaiay@sourceforge.net>
parents:
7825
diff
changeset
|
722 warn_graphics="fltk does not have OpenGL support. Native graphics will be disabled." |
caab78e7e377
added checks for fltk & freetype in configure script
Shai Ayal <shaiay@sourceforge.net>
parents:
7825
diff
changeset
|
723 |
caab78e7e377
added checks for fltk & freetype in configure script
Shai Ayal <shaiay@sourceforge.net>
parents:
7825
diff
changeset
|
724 if test "x$warn_graphics" = "x" ; then |
caab78e7e377
added checks for fltk & freetype in configure script
Shai Ayal <shaiay@sourceforge.net>
parents:
7825
diff
changeset
|
725 AC_MSG_RESULT(yes) |
7863
2a62d45fa21d
added check for FTGL library
Shai Ayal <shaiay@users.sourceforge.net>
parents:
7834
diff
changeset
|
726 GRAPHICS_CFLAGS="$FLTK_CFLAGS" |
2a62d45fa21d
added check for FTGL library
Shai Ayal <shaiay@users.sourceforge.net>
parents:
7834
diff
changeset
|
727 GRAPHICS_LIBS="$FLTK_LDFLAGS" |
2a62d45fa21d
added check for FTGL library
Shai Ayal <shaiay@users.sourceforge.net>
parents:
7834
diff
changeset
|
728 GRAPHICS_OPENGL="$GRAPHICS_OPENGL fltk_backend" |
7905
bcacdcc726f7
Allow octave compilation without FLTK/OpenGL
John W. Eaton <jwe@octave.org>
parents:
7887
diff
changeset
|
729 FLTK_BACKEND_SRC="fltk_backend.cc" |
7834
caab78e7e377
added checks for fltk & freetype in configure script
Shai Ayal <shaiay@sourceforge.net>
parents:
7825
diff
changeset
|
730 else |
caab78e7e377
added checks for fltk & freetype in configure script
Shai Ayal <shaiay@sourceforge.net>
parents:
7825
diff
changeset
|
731 AC_MSG_RESULT(no) |
caab78e7e377
added checks for fltk & freetype in configure script
Shai Ayal <shaiay@sourceforge.net>
parents:
7825
diff
changeset
|
732 fi |
caab78e7e377
added checks for fltk & freetype in configure script
Shai Ayal <shaiay@sourceforge.net>
parents:
7825
diff
changeset
|
733 fi |
caab78e7e377
added checks for fltk & freetype in configure script
Shai Ayal <shaiay@sourceforge.net>
parents:
7825
diff
changeset
|
734 |
caab78e7e377
added checks for fltk & freetype in configure script
Shai Ayal <shaiay@sourceforge.net>
parents:
7825
diff
changeset
|
735 AC_SUBST(GRAPHICS_CFLAGS) |
caab78e7e377
added checks for fltk & freetype in configure script
Shai Ayal <shaiay@sourceforge.net>
parents:
7825
diff
changeset
|
736 AC_SUBST(GRAPHICS_LIBS) |
caab78e7e377
added checks for fltk & freetype in configure script
Shai Ayal <shaiay@sourceforge.net>
parents:
7825
diff
changeset
|
737 AC_SUBST(GRAPHICS_OPENGL) |
7905
bcacdcc726f7
Allow octave compilation without FLTK/OpenGL
John W. Eaton <jwe@octave.org>
parents:
7887
diff
changeset
|
738 AC_SUBST(GL_RENDER_SRC) |
bcacdcc726f7
Allow octave compilation without FLTK/OpenGL
John W. Eaton <jwe@octave.org>
parents:
7887
diff
changeset
|
739 AC_SUBST(FLTK_BACKEND_SRC) |
7834
caab78e7e377
added checks for fltk & freetype in configure script
Shai Ayal <shaiay@sourceforge.net>
parents:
7825
diff
changeset
|
740 |
4853 | 741 OCTAVE_IEEE754_DATA_FORMAT |
4850 | 742 |
3827 | 743 # ---------------------------------------------------------------------- |
744 | |
3130 | 745 OCTAVE_PROG_AR |
3012 | 746 |
747 AC_PROG_RANLIB | |
748 | |
7063 | 749 ## Default FFLAGS is -O. |
750 if test "x$FFLAGS" = x; then | |
751 FFLAGS="-O" | |
1233 | 752 fi |
5 | 753 |
7063 | 754 ## the F77 variable, if set, overrides AC_PROG_F77 automatically |
3887 | 755 AC_PROG_F77 |
7063 | 756 AC_F77_LIBRARY_LDFLAGS |
757 AC_F77_DUMMY_MAIN | |
758 AC_F77_WRAPPERS | |
5 | 759 |
6102 | 760 F77_TOLOWER=true |
761 F77_APPEND_UNDERSCORE=true | |
762 F77_APPEND_EXTRA_UNDERSCORE=true | |
7063 | 763 |
764 case "$ac_cv_f77_mangling" in | |
765 "upper case") F77_TOLOWER=false ;; | |
766 esac | |
767 case "$ac_cv_f77_mangling" in | |
768 "no underscore") F77_APPEND_UNDERSCORE=false ;; | |
769 esac | |
770 case "$ac_cv_f77_mangling" in | |
771 "no extra underscore") F77_APPEND_EXTRA_UNDERSCORE=false ;; | |
772 esac | |
6102 | 773 |
7063 | 774 case "$canonical_host_type" in |
775 i[[3456789]]86-*-*) | |
776 if test "$ac_cv_f77_compiler_gnu" = yes; then | |
777 OCTAVE_F77_FLAG(-mieee-fp) | |
778 ### OCTAVE_F77_FLAG(-ffloat-store) | |
1239 | 779 fi |
7063 | 780 ;; |
781 alpha*-*-*) | |
782 if test "$ac_cv_f77_compiler_gnu" = yes; then | |
783 OCTAVE_F77_FLAG(-mieee) | |
784 else | |
785 OCTAVE_F77_FLAG(-ieee) | |
786 OCTAVE_F77_FLAG(-fpe1) | |
5 | 787 fi |
7063 | 788 ;; |
789 powerpc-apple-machten*) | |
790 FFLAGS= | |
791 ;; | |
792 esac | |
793 | |
794 if test -n "$FFLAGS"; then | |
795 AC_MSG_NOTICE([defining FFLAGS to be $FFLAGS]) | |
5 | 796 fi |
7063 | 797 |
6102 | 798 AC_SUBST(F77_TOLOWER) |
799 AC_SUBST(F77_APPEND_UNDERSCORE) | |
800 AC_SUBST(F77_APPEND_EXTRA_UNDERSCORE) | |
869 | 801 |
7063 | 802 if test -z "$F77"; then |
832 | 803 AC_MSG_WARN([in order to build octave, you must have a compatible]) |
7063 | 804 AC_MSG_WARN([Fortran compiler or wrapper script for f2c that functions]) |
805 AC_MSG_WARN([as a Fortran compiler installed and in your path.]) | |
1664 | 806 AC_MSG_ERROR([See the file INSTALL for more information.]) |
5 | 807 fi |
869 | 808 |
6137 | 809 XTRA_CRUFT_SH_LDFLAGS= |
6102 | 810 case "$canonical_host_type" in |
811 *-*-msdosmsvc) | |
812 FLIBS="$FLIBS -lkernel32" | |
6137 | 813 XTRA_CRUFT_SH_LDFLAGS="-Wl,-def:cruft.def" |
6102 | 814 ;; |
815 esac | |
6137 | 816 AC_SUBST(XTRA_CRUFT_SH_LDFLAGS) |
6102 | 817 |
1163 | 818 FC=$F77 |
819 AC_SUBST(FC) | |
869 | 820 |
5498 | 821 OCTAVE_F77_FLAG(-ffloat-store, [ |
822 AC_MSG_RESULT([setting F77_FLOAT_STORE_FLAG to -ffloat-store]) | |
823 F77_FLOAT_STORE_FLAG=-ffloat-store | |
824 AC_SUBST(F77_FLOAT_STORE_FLAG) | |
825 ]) | |
826 | |
3820 | 827 ### Checks for BLAS and LAPACK libraries: |
3887 | 828 # (Build subdirectories of libcruft if they aren't found on the system.) |
829 sinclude(acx_blas.m4) | |
7683
8136cb19fb7a
implement BLAS-F77 call compatibility check
Jaroslav Hajek <highegg@gmail.com>
parents:
7638
diff
changeset
|
830 sinclude(acx_blas_f77_func.m4) |
3887 | 831 sinclude(acx_lapack.m4) |
7683
8136cb19fb7a
implement BLAS-F77 call compatibility check
Jaroslav Hajek <highegg@gmail.com>
parents:
7638
diff
changeset
|
832 ACX_BLAS_WITH_F77_FUNC([], [BLAS_DIR="blas"]) |
3887 | 833 ACX_LAPACK([BLAS_LIBS="$LAPACK_LIBS $BLAS_LIBS"], [LAPACK_DIR="lapack"]) |
3690 | 834 AC_SUBST(BLAS_DIR) |
835 AC_SUBST(LAPACK_DIR) | |
836 | |
7683
8136cb19fb7a
implement BLAS-F77 call compatibility check
Jaroslav Hajek <highegg@gmail.com>
parents:
7638
diff
changeset
|
837 if test "x$acx_blas_f77_func_ok" = "xno"; then |
8136cb19fb7a
implement BLAS-F77 call compatibility check
Jaroslav Hajek <highegg@gmail.com>
parents:
7638
diff
changeset
|
838 warn_blas_f77_incompatible="A BLAS library was detected but found incompatible with your Fortran 77 compiler. The reference BLAS implementation will be used. To improve performance, consider using a different Fortran compiler or a switch like -ff2c to make your Fortran compiler use a calling convention compatible with the way your BLAS library was compiled, or use a different BLAS library." |
8136cb19fb7a
implement BLAS-F77 call compatibility check
Jaroslav Hajek <highegg@gmail.com>
parents:
7638
diff
changeset
|
839 AC_MSG_WARN($warn_blas_f77_incompatible) |
8136cb19fb7a
implement BLAS-F77 call compatibility check
Jaroslav Hajek <highegg@gmail.com>
parents:
7638
diff
changeset
|
840 fi |
8136cb19fb7a
implement BLAS-F77 call compatibility check
Jaroslav Hajek <highegg@gmail.com>
parents:
7638
diff
changeset
|
841 |
5451 | 842 # Check for AMD library |
843 AMD_LIBS= | |
844 AC_SUBST(AMD_LIBS) | |
7619 | 845 |
846 AC_ARG_WITH(amd, | |
847 [AS_HELP_STRING([--without-amd], | |
848 [don't use AMD, disable some sparse functionality])], | |
849 with_amd=$withval, with_amd=yes) | |
850 | |
851 warn_amd="AMD not found. This will result in some lack of functionality for sparse matrices." | |
852 if test "$with_amd" = yes; then | |
853 with_amd=no | |
854 AC_CHECK_HEADERS([suitesparse/amd.h ufsparse/amd.h amd/amd.h amd.h], [ | |
855 AC_CHECK_LIB(amd, amd_postorder, [AMD_LIBS="-lamd"; with_amd=yes]) | |
856 if test "$with_amd" = yes; then | |
857 AC_DEFINE(HAVE_AMD, 1, [Define if the AMD library is used.]) | |
858 warn_amd= | |
859 fi | |
860 break]) | |
861 fi | |
862 if test -n "$warn_amd"; then | |
863 AC_MSG_WARN($warn_amd) | |
864 fi | |
5451 | 865 |
6024 | 866 # Check for CAMD library |
867 CAMD_LIBS= | |
868 AC_SUBST(CAMD_LIBS) | |
869 AC_CHECK_LIB(camd, camd_postorder, [CAMD_LIBS="-lcamd"; with_camd=yes],[with_camd=no]) | |
870 | |
5226 | 871 # Check for UMFPACK library. |
872 | |
873 UMFPACK_LIBS= | |
874 AC_SUBST(UMFPACK_LIBS) | |
875 | |
876 AC_ARG_WITH(umfpack, | |
5844 | 877 [AS_HELP_STRING([--without-umfpack], |
878 [don't use UMFPACK, disable some sparse functionality])], | |
5226 | 879 with_umfpack=$withval, with_umfpack=yes) |
880 | |
5703 | 881 warn_umfpack="UMFPACK not found. This will result in some lack of functionality for sparse matrices." |
5513 | 882 if test "$with_umfpack" = yes && test "$with_amd" = yes; then |
5226 | 883 with_umfpack=no |
6232 | 884 AC_CHECK_HEADERS([suitesparse/umfpack.h ufsparse/umfpack.h umfpack/umfpack.h umfpack.h], [ |
5512 | 885 AC_CHECK_LIB(umfpack, umfpack_zi_get_determinant, [ |
886 UMFPACK_LIBS="-lumfpack"; with_umfpack=yes], [ | |
887 ## Invalidate the cache. | |
888 $as_unset ac_cv_lib_umfpack_umfpack_zi_get_determinant | |
889 AC_CHECK_LIB(umfpack, umfpack_zi_get_determinant, [ | |
890 UMFPACK_LIBS="-lumfpack"; with_umfpack=yes], [ | |
891 | |
5226 | 892 ## Invalidate the cache. |
893 $as_unset ac_cv_lib_umfpack_umfpack_zi_get_determinant | |
894 AC_CHECK_LIB(umfpack, umfpack_zi_get_determinant, [ | |
5512 | 895 UMFPACK_LIBS="-lumfpack -lcblas"; with_umfpack=yes], [], $AMD_LIBS -lcblas $BLAS_LIBS)], $AMD_LIBS $BLAS_LIBS $FLIBS)], $AMD_LIBS) |
5451 | 896 |
5226 | 897 if test "$with_umfpack" = yes; then |
5451 | 898 AC_DEFINE(HAVE_UMFPACK, 1, [Define if the UMFPACK library is used.]) |
5505 | 899 OLD_LIBS=$LIBS |
900 LIBS="$LIBS $UMFPACK_LIBS $AMD_LIBS $BLAS_LIBS $FLIBS" | |
901 OCTAVE_UMFPACK_SEPERATE_SPLIT | |
902 LIBS=$OLD_LIBS | |
5648 | 903 TEXINFO_UMFPACK="@set HAVE_UMFPACK" |
5513 | 904 warn_umfpack= |
5512 | 905 fi |
5513 | 906 break]) |
907 fi | |
6133 | 908 if test -n "$warn_umfpack"; then |
909 AC_MSG_WARN($warn_umfpack) | |
910 fi | |
5513 | 911 |
5648 | 912 AC_SUBST(TEXINFO_UMFPACK) |
5226 | 913 |
5451 | 914 COLAMD_LIBS= |
915 AC_SUBST(COLAMD_LIBS) | |
916 | |
917 AC_ARG_WITH(colamd, | |
5844 | 918 [AS_HELP_STRING([--without-colamd], |
919 [don't use COLAMD, disable some sparse functionality])], | |
5451 | 920 with_colamd=$withval, with_colamd=yes) |
921 | |
5703 | 922 warn_colamd="COLAMD not found. This will result in some lack of functionality for sparse matrices." |
5513 | 923 if test "$with_colamd" = yes; then |
5451 | 924 with_colamd=no |
6232 | 925 AC_CHECK_HEADERS([suitesparse/colamd.h ufsparse/colamd.h colamd/colamd.h colamd.h], [ |
5451 | 926 AC_CHECK_LIB(colamd, colamd, [COLAMD_LIBS="-lcolamd"; with_colamd=yes]) |
927 if test "$with_colamd" = yes; then | |
928 AC_DEFINE(HAVE_COLAMD, 1, [Define if the COLAMD library is used.]) | |
5648 | 929 TEXINFO_COLAMD="@set HAVE_COLAMD" |
5513 | 930 warn_colamd= |
5512 | 931 fi |
5513 | 932 break]) |
5451 | 933 fi |
6133 | 934 if test -n "$warn_colamd"; then |
935 AC_MSG_WARN($warn_colamd) | |
936 fi | |
5451 | 937 |
5648 | 938 AC_SUBST(TEXINFO_COLAMD) |
5513 | 939 |
5451 | 940 CCOLAMD_LIBS= |
941 AC_SUBST(CCOLAMD_LIBS) | |
942 | |
943 AC_ARG_WITH(ccolamd, | |
5844 | 944 [AS_HELP_STRING([--without-ccolamd], |
945 [don't use CCOLAMD, disable some sparse functionality])], | |
5451 | 946 with_ccolamd=$withval, with_ccolamd=yes) |
947 | |
5703 | 948 warn_ccolamd="CCOLAMD not found. This will result in some lack of functionality for sparse matrices." |
5513 | 949 if test "$with_ccolamd" = yes; then |
5451 | 950 with_ccolamd=no |
6232 | 951 AC_CHECK_HEADERS([suitesparse/ccolamd.h ufsparse/ccolamd.h ccolamd/ccolamd.h ccolamd.h], [ |
5451 | 952 AC_CHECK_LIB(ccolamd, ccolamd, [CCOLAMD_LIBS="-lccolamd"; with_ccolamd=yes]) |
953 if test "$with_ccolamd" = yes; then | |
954 AC_DEFINE(HAVE_CCOLAMD, 1, [Define if the CCOLAMD library is used.]) | |
5513 | 955 warn_ccolamd= |
5512 | 956 fi |
5513 | 957 break]) |
5451 | 958 fi |
6133 | 959 if test -n "$warn_ccolamd"; then |
960 AC_MSG_WARN($warn_ccolamd) | |
961 fi | |
5451 | 962 |
963 CHOLMOD_LIBS= | |
964 AC_SUBST(CHOLMOD_LIBS) | |
965 | |
966 AC_ARG_WITH(cholmod, | |
5844 | 967 [AS_HELP_STRING([--without-cholmod], |
968 [don't use CHOLMOD, disable some sparse functionality])], | |
5451 | 969 with_cholmod=$withval, with_cholmod=yes) |
970 | |
5703 | 971 warn_cholmod="CHOLMOD not found. This will result in some lack of functionality for sparse matrices." |
5513 | 972 if test "$with_cholmod" = yes && test "$with_colamd" = yes && |
973 test "$with_ccolamd" = yes && test "$with_amd" = yes; then | |
5451 | 974 with_cholmod=no |
6232 | 975 AC_CHECK_HEADERS([suitesparse/cholmod.h ufsparse/cholmod.h cholmod/cholmod.h cholmod.h], [ |
7036 | 976 AC_CHECK_LIB(cholmod, cholmod_start, [CHOLMOD_LIBS="-lcholmod"; |
977 with_cholmod=yes], [ | |
978 AC_CHECK_LIB(cholmod, cholmod_start, [CHOLMOD_LIBS="-lcholmod -cblas"; | |
979 with_cholmod=yes], [], | |
980 $CAMD_LIBS $AMD_LIBS $COLAMD_LIBS $CCOLAMD_LIBS $BLAS_LIBS $FLIBS)], | |
981 $CAMD_LIBS $AMD_LIBS $COLAMD_LIBS $CCOLAMD_LIBS $BLAS_LIBS $FLIBS) | |
5451 | 982 |
983 if test "$with_cholmod" = yes; then | |
984 AC_DEFINE(HAVE_CHOLMOD, 1, [Define if the CHOLMOD library is used.]) | |
5648 | 985 TEXINFO_CHOLMOD="@set HAVE_CHOLMOD" |
5513 | 986 warn_cholmod= |
5512 | 987 fi |
5513 | 988 break]) |
6133 | 989 fi |
990 if test -n "$warn_cholmod"; then | |
991 AC_MSG_WARN($warn_cholmod) | |
992 fi | |
5226 | 993 |
5648 | 994 AC_SUBST(TEXINFO_CHOLMOD) |
5513 | 995 |
5610 | 996 CXSPARSE_LIBS= |
997 AC_SUBST(CXSPARSE_LIBS) | |
998 | |
999 AC_ARG_WITH(cxsparse, | |
5844 | 1000 [AS_HELP_STRING([--without-cxsparse], |
1001 [don't use CXSparse, disable some sparse functionality])], | |
5610 | 1002 with_cxsparse=$withval, with_cxsparse=yes) |
1003 | |
5703 | 1004 warn_cxsparse="CXSparse not found. This will result in some lack of functionality for sparse matrices." |
5610 | 1005 if test "$with_cxsparse" = yes; then |
1006 with_cxsparse=no | |
6719 | 1007 AC_LANG_PUSH(C++) |
6232 | 1008 AC_CHECK_HEADERS([suitesparse/cs.h ufsparse/cs.h cxsparse/cs.h cs.h], [ |
5648 | 1009 AC_CHECK_LIB(cxsparse, cs_di_sqr, [CXSPARSE_LIBS="-lcxsparse"; with_cxsparse=yes]) |
5610 | 1010 if test "$with_cxsparse" = yes; then |
1011 AC_DEFINE(HAVE_CXSPARSE, 1, [Define if the CXSparse library is used.]) | |
1012 warn_cxsparse= | |
1013 fi | |
1014 break]) | |
6719 | 1015 AC_LANG_POP(C++) |
5610 | 1016 fi |
6133 | 1017 if test -n "$warn_cxsparse"; then |
1018 AC_MSG_WARN($warn_cxsparse) | |
1019 fi | |
5610 | 1020 |
4110 | 1021 ### Handle shared library options. |
2813 | 1022 |
3034 | 1023 ### Enable creation of static libraries. |
1024 | |
1025 AC_ARG_ENABLE(static, | |
5844 | 1026 [AS_HELP_STRING([--enable-static], [create static libraries])], |
3034 | 1027 [if test "$enableval" = no; then STATIC_LIBS=false; |
1028 else STATIC_LIBS=true; fi], | |
5221 | 1029 STATIC_LIBS=false) |
3034 | 1030 AC_SUBST(STATIC_LIBS) |
1031 | |
2813 | 1032 ### Enable creation of shared libraries. Currently only works with |
1033 ### gcc on some systems. | |
1034 | |
1035 AC_ARG_ENABLE(shared, | |
5844 | 1036 [AS_HELP_STRING([--enable-shared], |
1037 [create shared libraries (not all systems)])], | |
2813 | 1038 [if test "$enableval" = no; then SHARED_LIBS=false; |
1039 else SHARED_LIBS=true; fi], | |
5221 | 1040 SHARED_LIBS=true) |
2813 | 1041 AC_SUBST(SHARED_LIBS) |
1042 | |
4128 | 1043 ### Enable dynamic linking. --enable-shared implies this, so |
1044 ### --enable-dl is only need if you are only building static libraries | |
1045 ### and want to try dynamic linking too (works on some systems, for | |
1046 ### example, OS X and Windows). | |
1047 | |
1048 AC_ARG_ENABLE(dl, | |
5844 | 1049 [AS_HELP_STRING([--enable-dl], |
1050 [create shared libraries (not all systems)])], | |
4128 | 1051 [if test "$enableval" = no; then ENABLE_DYNAMIC_LINKING=false; |
1052 else ENABLE_DYNAMIC_LINKING=true; fi], | |
5221 | 1053 ENABLE_DYNAMIC_LINKING=true) |
4128 | 1054 |
3034 | 1055 if $STATIC_LIBS || $SHARED_LIBS; then |
1056 true | |
1057 else | |
1058 AC_MSG_ERROR([You can't disable building static AND shared libraries!]) | |
1059 fi | |
1060 | |
2813 | 1061 AC_ARG_ENABLE(rpath, |
5844 | 1062 [AS_HELP_STRING([--enable-rpath], |
1063 [override the default link options for rpath; e.g., --enable-rpath='-rpath $(octlibdir)'])], | |
4353 | 1064 [ if test "$enableval" = no; then use_rpath=false; |
1065 else | |
1066 use_rpath=true | |
1067 if test "$enableval" = yes; then true; | |
1068 else enable_rpath_arg="$enableval"; fi | |
4439 | 1069 fi], [use_rpath=true]) |
2813 | 1070 |
1071 CPICFLAG=-fPIC | |
1072 CXXPICFLAG=-fPIC | |
1073 FPICFLAG=-fPIC | |
1074 SHLEXT=so | |
4190 | 1075 SHLLIB='$(SHLEXT)' |
4102 | 1076 SHLBIN= |
4138 | 1077 SHLEXT_VER='$(SHLEXT).$(version)' |
1078 SHLLIB_VER='$(SHLLIB).$(version)' | |
1079 SHLBIN_VER='$(SHLBIN).$(version)' | |
4126 | 1080 SHLLINKEXT= |
6051 | 1081 LIBPRE=lib |
4323 | 1082 SH_LD='$(CXX)' |
2813 | 1083 SH_LDFLAGS=-shared |
4759 | 1084 DL_LD='$(SH_LD)' |
1085 DL_LDFLAGS='$(SH_LDFLAGS)' | |
1086 MKOCTFILE_DL_LDFLAGS='$(DL_LDFLAGS)' | |
3036 | 1087 SONAME_FLAGS= |
2813 | 1088 RLD_FLAG= |
4199 | 1089 NO_OCT_FILE_STRIP=false |
4323 | 1090 TEMPLATE_AR='$(AR)' |
3775 | 1091 TEMPLATE_ARFLAGS="$ARFLAGS" |
6137 | 1092 CRUFT_DLL_DEFS= |
1093 OCTAVE_DLL_DEFS= | |
1094 OCTINTERP_DLL_DEFS= | |
7825
13871b7de124
Import sources for OpenGL-based renderer.
Michael Goffioul <michael.goffioul@gmail.com>
parents:
7789
diff
changeset
|
1095 OCTGRAPHICS_DLL_DEFS= |
4104 | 1096 library_path_var=LD_LIBRARY_PATH |
2813 | 1097 case "$canonical_host_type" in |
6668 | 1098 *-*-386bsd* | *-*-netbsd*) |
2813 | 1099 SH_LD=ld |
1100 SH_LDFLAGS=-Bshareable | |
1101 ;; | |
6668 | 1102 *-*-openbsd*) |
1103 SH_LDFLAGS='-shared -fPIC' | |
1104 ;; | |
4323 | 1105 *-*-freebsd*) |
5508 | 1106 SH_LDFLAGS="-shared -Wl,-x" |
1107 RLD_FLAG='-Wl,-rpath -Wl,$(octlibdir)' | |
4323 | 1108 ;; |
3127 | 1109 alpha*-dec-osf*) |
2813 | 1110 CPICFLAG= |
1111 CXXPICFLAG= | |
1112 FPICFLAG= | |
4283 | 1113 SH_LDFLAGS="-shared -Wl,-expect_unresolved -Wl,'*'" |
1114 RLD_FLAG='-Wl,-rpath -Wl,$(octlibdir)' | |
2813 | 1115 ;; |
3956 | 1116 *-*-darwin*) |
4759 | 1117 DL_LDFLAGS='-bundle -bundle_loader $(TOPDIR)/src/octave $(LDFLAGS)' |
6682 | 1118 MKOCTFILE_DL_LDFLAGS='-bundle -bundle_loader $$BINDIR/octave-$$OCTAVE_VERSION$$EXEEXT' |
4759 | 1119 SH_LDFLAGS='-dynamiclib -single_module $(LDFLAGS)' |
7266 | 1120 case "$canonical_host_type" in |
1121 powerpc-*) | |
1122 CXXPICFLAG= | |
1123 CPICFLAG= | |
1124 FPICFLAG= | |
1125 ;; | |
1126 esac | |
4759 | 1127 SHLEXT=dylib |
1128 SHLLIB='$(SHLEXT)' | |
1129 SHLEXT_VER='$(version).$(SHLEXT)' | |
1130 SHLLIB_VER='$(version).$(SHLLIB)' | |
4199 | 1131 NO_OCT_FILE_STRIP=true |
4786 | 1132 SONAME_FLAGS='-install_name $(octlibdir)/$@' |
4759 | 1133 library_path_var=DYLD_LIBRARY_PATH |
3956 | 1134 ;; |
4105 | 1135 *-*-cygwin* | *-*-mingw*) |
5451 | 1136 DL_LDFLAGS="-shared -Wl,--export-all-symbols -Wl,--enable-auto-import -Wl,--enable-runtime-pseudo-reloc" |
4102 | 1137 CXXPICFLAG= |
1138 CPICFLAG= | |
1139 FPICFLAG= | |
1140 SHLEXT=dll | |
1141 SHLLIB=dll.a | |
1142 SHLBIN=dll | |
5414 | 1143 SH_LDFLAGS="-shared -Wl,--export-all-symbols -Wl,--enable-auto-import -Wl,--enable-auto-image-base" |
4102 | 1144 SHLLINKEXT=.dll |
1145 SONAME_FLAGS='-Wl,--out-implib=$@.a' | |
4104 | 1146 library_path_var=PATH |
4102 | 1147 ;; |
6089 | 1148 *-*-msdosmsvc) |
6794 | 1149 DL_LDFLAGS="-shared" |
6051 | 1150 CPICFLAG= |
1151 CXXPICFLAG= | |
1152 FPICFLAG= | |
1153 SHLEXT=dll | |
1154 SHLLIB=lib | |
1155 SHLBIN=dll | |
1156 LIBPRE= | |
6794 | 1157 SH_LDFLAGS="-shared" |
1158 if test -n "`echo $CFLAGS | grep -e '-g'`" -o -n "`echo $CXXFLAGS | grep -e '-g'`"; then | |
1159 DL_LDFLAGS="$DL_LDFLAGS -g" | |
1160 SH_LDFLAGS="$SH_LDFLAGS -g" | |
1161 fi | |
6255 | 1162 NO_OCT_FILE_STRIP=true |
6100 | 1163 library_path_var=PATH |
6718 | 1164 NO_OCT_FILE_STRIP=true |
6087 | 1165 ## Extra compilation flags. |
6137 | 1166 CRUFT_DLL_DEFS="-DCRUFT_DLL" |
1167 OCTAVE_DLL_DEFS="-DOCTAVE_DLL" | |
1168 OCTINTERP_DLL_DEFS="-DOCTINTERP_DLL" | |
7825
13871b7de124
Import sources for OpenGL-based renderer.
Michael Goffioul <michael.goffioul@gmail.com>
parents:
7789
diff
changeset
|
1169 OCTGRAPHICS_DLL_DEFS="-DOCTGRAPHICS_DLL" |
6051 | 1170 ;; |
3740 | 1171 *-*-linux* | *-*-gnu*) |
4906 | 1172 MKOCTFILE_DL_LDFLAGS="-shared -Wl,-Bsymbolic" |
4283 | 1173 SONAME_FLAGS='-Wl,-soname -Wl,$@' |
1174 RLD_FLAG='-Wl,-rpath -Wl,$(octlibdir)' | |
2813 | 1175 ;; |
3887 | 1176 i[[3456]]86-*-sco3.2v5*) |
4283 | 1177 SONAME_FLAGS='-Wl,-h -Wl,$@' |
3705 | 1178 RLD_FLAG= |
3160 | 1179 SH_LDFLAGS=-G |
1180 ;; | |
2813 | 1181 rs6000-ibm-aix* | powerpc-ibm-aix*) |
1182 CPICFLAG= | |
1183 CXXPICFLAG= | |
1184 FPICFLAG= | |
1185 ;; | |
1186 hppa*-hp-hpux*) | |
3887 | 1187 if test "$ac_cv_f77_compiler_gnu" = yes; then |
2813 | 1188 FPICFLAG=-fPIC |
1189 else | |
1190 FPICFLAG=+Z | |
1191 fi | |
1192 SHLEXT=sl | |
1193 SH_LDFLAGS="-shared -fPIC" | |
4283 | 1194 RLD_FLAG='-Wl,+b -Wl,$(octlibdir)' |
2813 | 1195 ;; |
1196 *-sgi-*) | |
1197 CPICFLAG= | |
1198 CXXPICFLAG= | |
1199 FPICFLAG= | |
4353 | 1200 RLD_FLAG='-rpath $(octlibdir)' |
2813 | 1201 ;; |
1202 sparc-sun-sunos4*) | |
3887 | 1203 if test "$ac_cv_f77_compiler_gnu" = yes; then |
2813 | 1204 FPICFLAG=-fPIC |
1205 else | |
1206 FPICFLAG=-PIC | |
1207 fi | |
3059 | 1208 SH_LD=ld |
1209 SH_LDFLAGS="-assert nodefinitions" | |
3162 | 1210 RLD_FLAG='-L$(octlibdir)' |
2813 | 1211 ;; |
3606 | 1212 sparc-sun-solaris2* | i386-pc-solaris2*) |
3887 | 1213 if test "$ac_cv_f77_compiler_gnu" = yes; then |
2813 | 1214 FPICFLAG=-fPIC |
1215 else | |
3775 | 1216 FPICFLAG=-KPIC |
1217 fi | |
1218 if test "$GCC" = yes; then | |
1219 CPICFLAG=-fPIC | |
1220 else | |
1221 CPICFLAG=-KPIC | |
2813 | 1222 fi |
3775 | 1223 if test "$GXX" = yes; then |
1224 CXXPICFLAG=-fPIC | |
1225 SH_LDFLAGS=-shared | |
1226 else | |
1227 CXXPICFLAG=-KPIC | |
1228 SH_LDFLAGS=-G | |
1229 fi | |
1230 RLD_FLAG='-R $(octlibdir)' | |
6087 | 1231 ## Template closures in archive libraries need a different mechanism. |
3820 | 1232 if test "$GXX" = yes; then |
3775 | 1233 true |
1234 else | |
4323 | 1235 TEMPLATE_AR='$(CXX)' |
3775 | 1236 TEMPLATE_ARFLAGS="-xar -o" |
1237 fi | |
2813 | 1238 ;; |
1239 esac | |
1240 | |
1241 if $use_rpath; then | |
4353 | 1242 if test -n "$enable_rpath_arg"; then |
1243 RLD_FLAG="$enable_rpath_arg" | |
1244 fi | |
2813 | 1245 else |
4353 | 1246 RLD_FLAG="" |
2813 | 1247 fi |
1248 | |
5844 | 1249 AC_MSG_NOTICE([defining FPICFLAG to be $FPICFLAG]) |
1250 AC_MSG_NOTICE([defining CPICFLAG to be $CPICFLAG]) | |
1251 AC_MSG_NOTICE([defining CXXPICFLAG to be $CXXPICFLAG]) | |
1252 AC_MSG_NOTICE([defining SHLEXT to be $SHLEXT]) | |
1253 AC_MSG_NOTICE([defining SHLLIB to be $SHLLIB]) | |
1254 AC_MSG_NOTICE([defining SHLBIN to be $SHLBIN]) | |
1255 AC_MSG_NOTICE([defining SHLEXT_VER to be $SHLEXT_VER]) | |
1256 AC_MSG_NOTICE([defining SHLLIB_VER to be $SHLLIB_VER]) | |
1257 AC_MSG_NOTICE([defining SHLBIN_VER to be $SHLBIN_VER]) | |
1258 AC_MSG_NOTICE([defining SHLLINKEXT to be $SHLLINKEXT]) | |
6051 | 1259 AC_MSG_NOTICE([defining LIBPRE to be $LIBPRE]) |
5844 | 1260 AC_MSG_NOTICE([defining SH_LD to be $SH_LD]) |
1261 AC_MSG_NOTICE([defining SH_LDFLAGS to be $SH_LDFLAGS]) | |
1262 AC_MSG_NOTICE([defining DL_LD to be $DL_LD]) | |
1263 AC_MSG_NOTICE([defining DL_LDFLAGS to be $DL_LDFLAGS]) | |
1264 AC_MSG_NOTICE([defining MKOCTFILE_DL_LDFLAGS to be $MKOCTFILE_DL_LDFLAGS]) | |
1265 AC_MSG_NOTICE([defining SONAME_FLAGS to be $SONAME_FLAGS]) | |
1266 AC_MSG_NOTICE([defining NO_OCT_FILE_STRIP to be $NO_OCT_FILE_STRIP]) | |
1267 AC_MSG_NOTICE([defining RLD_FLAG to be $RLD_FLAG]) | |
1268 AC_MSG_NOTICE([defining TEMPLATE_AR to be $TEMPLATE_AR]) | |
1269 AC_MSG_NOTICE([defining TEMPLATE_ARFLAGS to be $TEMPLATE_ARFLAGS]) | |
6137 | 1270 AC_MSG_NOTICE([defining CRUFT_DLL_DEFS to be $CRUFT_DLL_DEFS]) |
1271 AC_MSG_NOTICE([defining OCTAVE_DLL_DEFS to be $OCTAVE_DLL_DEFS]) | |
1272 AC_MSG_NOTICE([defining OCTINTERP_DLL_DEFS to be $OCTINTERP_DLL_DEFS]) | |
7825
13871b7de124
Import sources for OpenGL-based renderer.
Michael Goffioul <michael.goffioul@gmail.com>
parents:
7789
diff
changeset
|
1273 AC_MSG_NOTICE([defining OCTGRAPHICS_DLL_DEFS to be $OCTGRAPHICS_DLL_DEFS]) |
5844 | 1274 AC_MSG_NOTICE([defining library_path_var to be $library_path_var]) |
2813 | 1275 AC_SUBST(FPICFLAG) |
1276 AC_SUBST(CPICFLAG) | |
1277 AC_SUBST(CXXPICFLAG) | |
1278 AC_SUBST(SHLEXT) | |
4102 | 1279 AC_SUBST(SHLLIB) |
1280 AC_SUBST(SHLBIN) | |
4126 | 1281 AC_SUBST(SHLEXT_VER) |
1282 AC_SUBST(SHLLIB_VER) | |
1283 AC_SUBST(SHLBIN_VER) | |
1284 AC_SUBST(SHLLINKEXT) | |
6051 | 1285 AC_SUBST(LIBPRE) |
2813 | 1286 AC_SUBST(SH_LD) |
1287 AC_SUBST(SH_LDFLAGS) | |
4759 | 1288 AC_SUBST(DL_LD) |
1289 AC_SUBST(DL_LDFLAGS) | |
1290 AC_SUBST(MKOCTFILE_DL_LDFLAGS) | |
3036 | 1291 AC_SUBST(SONAME_FLAGS) |
4199 | 1292 AC_SUBST(NO_OCT_FILE_STRIP) |
2813 | 1293 AC_SUBST(RLD_FLAG) |
3775 | 1294 AC_SUBST(TEMPLATE_AR) |
1295 AC_SUBST(TEMPLATE_ARFLAGS) | |
6141 | 1296 AC_SUBST(CRUFT_DLL_DEFS) |
1297 AC_SUBST(OCTAVE_DLL_DEFS) | |
1298 AC_SUBST(OCTINTERP_DLL_DEFS) | |
7825
13871b7de124
Import sources for OpenGL-based renderer.
Michael Goffioul <michael.goffioul@gmail.com>
parents:
7789
diff
changeset
|
1299 AC_SUBST(OCTGRAPHICS_DLL_DEFS) |
4104 | 1300 AC_SUBST(library_path_var) |
4102 | 1301 |
2813 | 1302 ### special checks for odd OS specific things. |
1303 ### | |
1304 ### I am told that on some SCO systems, the only place to find some | |
1305 ### functions like gethostname and gettimeofday is in libsocket. | |
1306 | |
3887 | 1307 AC_CHECK_FUNCS(gethostname, [], [AC_CHECK_LIB(socket, gethostname)]) |
1308 AC_CHECK_FUNCS(getpwnam, [], [AC_CHECK_LIB(sun, getpwnam)]) | |
2813 | 1309 |
4388 | 1310 case "$canonical_host_type" in |
6704 | 1311 *-*-cygwin*) |
4388 | 1312 AC_CHECK_LIB(wsock32, gethostname) |
5451 | 1313 LIBS="$LIBS -lwsock32" |
4388 | 1314 ;; |
6704 | 1315 *-*-msdosmsvc* | *-*-mingw*) |
6091 | 1316 LIBS="$LIBS -lws2_32 -lkernel32" |
1317 ;; | |
4388 | 1318 esac |
1319 | |
4353 | 1320 ### Type stuff. |
1321 | |
1322 AC_TYPE_MODE_T | |
1323 AC_TYPE_OFF_T | |
1324 AC_TYPE_PID_T | |
1325 AC_TYPE_SIZE_T | |
1326 AC_TYPE_UID_T | |
1327 AC_CHECK_TYPES([dev_t, ino_t, nlink_t, nlink_t]) | |
1328 AC_CHECK_TYPES([long long int, unsigned long long int]) | |
7237 | 1329 AC_CHECK_TYPES([sigset_t, sig_atomic_t], , , [ |
1330 #if defined (HAVE_SYS_TYPES_H) | |
1331 #include <sys/types.h> | |
1332 #endif | |
1333 #include <signal.h>]) | |
4353 | 1334 |
2813 | 1335 ### How big are ints and how are they oriented? These could probably |
1336 ### be eliminated in favor of run-time checks. | |
1337 | |
3888 | 1338 AC_CHECK_SIZEOF(short) |
1339 AC_CHECK_SIZEOF(int) | |
1340 AC_CHECK_SIZEOF(long) | |
1341 AC_CHECK_SIZEOF(long long) | |
2813 | 1342 |
1343 ### Does the C compiler handle alloca() and const correctly? | |
1344 | |
4602 | 1345 AC_FUNC_ALLOCA |
2813 | 1346 AC_C_CONST |
1347 | |
1348 ### See if we should define NPOS. | |
1349 | |
1350 OCTAVE_STRING_NPOS | |
1351 | |
4360 | 1352 ### See if we should use placement delete. |
1353 | |
1354 OCTAVE_PLACEMENT_DELETE | |
1355 | |
4366 | 1356 ### See if we can auto allocate variable sized arrays. |
1357 | |
1358 OCTAVE_DYNAMIC_AUTO_ARRAYS | |
1359 | |
869 | 1360 ### Checks for header files. |
1361 | |
832 | 1362 AC_HEADER_STDC |
1363 AC_HEADER_DIRENT | |
1377 | 1364 AC_HEADER_TIME |
1365 AC_HEADER_SYS_WAIT | |
2097 | 1366 |
4051 | 1367 ### C headers |
1368 | |
4067 | 1369 AC_CHECK_HEADERS(assert.h curses.h direct.h dlfcn.h fcntl.h float.h \ |
5990 | 1370 floatingpoint.h grp.h ieeefp.h inttypes.h limits.h locale.h memory.h nan.h \ |
7231 | 1371 ncurses.h poll.h pwd.h stdint.h stdlib.h string.h sunmath.h sys/ioctl.h \ |
3308 | 1372 sys/param.h sys/poll.h sys/resource.h sys/select.h sys/stat.h \ |
6694 | 1373 sys/time.h sys/times.h sys/types.h sys/utsname.h sys/utime.h termcap.h \ |
1374 unistd.h utime.h varargs.h) | |
3887 | 1375 |
4051 | 1376 ### C++ headers |
1377 | |
1378 AC_LANG_PUSH(C++) | |
1379 AC_CHECK_HEADERS(sstream) | |
1380 AC_LANG_POP(C++) | |
1381 | |
3887 | 1382 have_termios_h=no |
1383 AC_CHECK_HEADERS($TERMIOS_H, have_termios_h=yes) | |
1384 AC_CHECK_HEADERS(termio.h, have_termio_h=yes, have_termio_h=no) | |
1385 AC_CHECK_HEADERS(sgtty.h, have_sgtty_h=yes, have_sgtty_h=no) | |
5451 | 1386 AC_CHECK_HEADERS(glob.h, have_glob_h=yes, have_glob_h=no) |
1387 AC_CHECK_HEADERS(fnmatch.h, have_fnmatch_h=yes, have_fnmatch_h=no) | |
4067 | 1388 AC_CHECK_HEADERS(conio.h, have_conio_h=yes, have_conio_h=no) |
3249 | 1389 |
3225 | 1390 ### I'm told that termios.h is broken on NeXT systems. |
1391 | |
1392 case "$canonical_host_type" in | |
1393 *-*-nextstep*) | |
3887 | 1394 if test "$have_termios_h" = yes; then |
3249 | 1395 AC_MSG_WARN([Ignoring termios.h on NeXT systems.]) |
3887 | 1396 have_termios_h=no |
3249 | 1397 fi |
3225 | 1398 ;; |
1399 esac | |
1400 | |
3887 | 1401 if test "$have_termios_h" = yes \ |
1402 || test "$have_termio_h" = yes \ | |
1403 || test "$have_sgtty_h" = yes; then | |
832 | 1404 true |
1405 else | |
4064 | 1406 AC_MSG_WARN([I couldn't find termios.h, termio.h, or sgtty.h!]) |
832 | 1407 fi |
869 | 1408 |
5451 | 1409 LIBGLOB= |
1410 AC_SUBST(LIBGLOB) | |
1411 if test "$have_fnmatch_h" = yes && test "$have_glob_h" = yes; then | |
1412 AC_CHECK_FUNCS(fnmatch, have_fnmatch=yes, [ | |
1413 AC_CHECK_LIB(glob, fnmatch, [have_fnmatch=yes; LIBGLOB=-lglob], | |
1414 have_fnmatch=no)]) | |
1415 AC_CHECK_FUNCS(glob, have_glob=yes, [ | |
1416 AC_CHECK_LIB(glob, glob, [have_glob=yes; LIBGLOB=-lglob], | |
1417 have_glob=no)]) | |
1418 | |
1419 if test "$have_fnmatch" != yes || test "$have_glob" != yes; then | |
1420 AC_MSG_ERROR([You are required to have fnmatch and glob]) | |
1421 fi | |
1422 else | |
1423 AC_MSG_ERROR([You are required to have fnmatch.h and glob.h]) | |
1424 fi | |
1425 | |
1788 | 1426 ### Checks for functions and variables. |
869 | 1427 |
7638
2df457529cfa
implement expm1 and log1p functions
Jaroslav Hajek <highegg@gmail.com>
parents:
7636
diff
changeset
|
1428 AC_CHECK_FUNCS(atexit basename bcopy bzero canonicalize_file_name \ |
7789
82be108cc558
First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents:
7683
diff
changeset
|
1429 chmod dup2 endgrent endpwent execvp expm1 expm1f fcntl fork getcwd \ |
7638
2df457529cfa
implement expm1 and log1p functions
Jaroslav Hajek <highegg@gmail.com>
parents:
7636
diff
changeset
|
1430 getegid geteuid getgid getgrent getgrgid getgrnam getpgrp getpid \ |
2df457529cfa
implement expm1 and log1p functions
Jaroslav Hajek <highegg@gmail.com>
parents:
7636
diff
changeset
|
1431 getppid getpwent getpwuid gettimeofday getuid getwd _kbhit kill \ |
7789
82be108cc558
First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents:
7683
diff
changeset
|
1432 lgamma lgammaf lgamma_r lgammaf_r link localtime_r log1p log1pf lstat \ |
82be108cc558
First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents:
7683
diff
changeset
|
1433 memmove mkdir mkfifo mkstemp on_exit pipe poll putenv raise readlink \ |
82be108cc558
First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents:
7683
diff
changeset
|
1434 realpath rename resolvepath rindex rmdir round select setgrent setlocale \ |
82be108cc558
First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents:
7683
diff
changeset
|
1435 setpwent setvbuf sigaction siglongjmp sigpending sigprocmask sigsuspend \ |
7638
2df457529cfa
implement expm1 and log1p functions
Jaroslav Hajek <highegg@gmail.com>
parents:
7636
diff
changeset
|
1436 snprintf stat strcasecmp strdup strerror stricmp strncasecmp \ |
7789
82be108cc558
First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents:
7683
diff
changeset
|
1437 strnicmp strptime strsignal symlink tempnam tgamma tgammaf trunc umask \ |
6694 | 1438 uname unlink usleep utime vfprintf vsprintf vsnprintf waitpid \ |
6829 | 1439 _chmod _snprintf x_utime _utime32) |
1300 | 1440 |
6094 | 1441 case "$canonical_host_type" in |
1442 *-*-msdosmsvc) | |
1443 ## The %T format specifier for strftime is reportedly broken, | |
1444 ## so use our version. We could use an actual configure test | |
1445 ## for this. | |
1446 ;; | |
1447 *) | |
1448 AC_CHECK_FUNCS(strftime) | |
1449 ;; | |
1450 esac | |
1451 | |
7058 | 1452 OCTAVE_STRPTIME_BROKEN |
1708 | 1453 OCTAVE_SMART_PUTENV |
1454 | |
6103 | 1455 case "$canonical_host_type" in |
6704 | 1456 *-*-msdosmsvc | *-*-mingw*) |
6103 | 1457 AC_MSG_CHECKING([for required _WIN32_WINNT]) |
1458 AC_COMPILE_IFELSE(AC_LANG_PROGRAM([[ | |
1459 #include <windows.h> | |
1460 #if _WIN32_WINNT < 0x0403 | |
1461 #error "Wrong version" | |
1462 #endif]], []), | |
1463 AC_MSG_RESULT([none]), [ | |
1464 AC_DEFINE(_WIN32_WINNT, 0x0403, [Define to 0x0403 to access InitializeCriticalSectionAndSpinCount]) | |
1465 AC_MSG_RESULT([0x0403])]) | |
1466 AC_MSG_CHECKING([whether _USE_MATH_DEFINES needs to be defined]) | |
1467 AC_COMPILE_IFELSE(AC_LANG_PROGRAM([[#include <math.h>]], | |
1468 [[int x = M_LN2;]]), | |
1469 AC_MSG_RESULT([no]), [ | |
1470 AC_DEFINE(_USE_MATH_DEFINES, 1, [Define if your system needs it to define math constants like M_LN2]) | |
1471 AC_MSG_RESULT([yes])]) | |
1472 ;; | |
1473 esac | |
1474 | |
4110 | 1475 ### Dynamic linking is now enabled only if we are building shared |
1476 ### libs and some API for dynamic linking is detected. | |
1477 | |
3705 | 1478 LD_CXX='$(CXX)' |
3232 | 1479 RDYNAMIC_FLAG= |
4110 | 1480 DL_API_MSG="" |
1481 dlopen_api=false | |
1482 shl_load_api=false | |
1483 loadlibrary_api=false | |
4163 | 1484 dyld_api=false |
4110 | 1485 |
4163 | 1486 if $SHARED_LIBS || $ENABLE_DYNAMIC_LINKING; then |
1487 | |
6087 | 1488 ## Check for dyld first since OS X can have a non-standard libdl |
4110 | 1489 |
5599 | 1490 AC_CHECK_HEADER(mach-o/dyld.h) |
5717 | 1491 if test "$ac_cv_header_mach_o_dyld_h" = yes; then |
4163 | 1492 dyld_api=true |
1493 else | |
4189 | 1494 AC_CHECK_LIB(dld, shl_load) |
1495 AC_CHECK_FUNCS(shl_load shl_findsym) | |
4201 | 1496 if test "$ac_cv_func_shl_load" = yes \ |
1497 && test "$ac_cv_func_shl_findsym" = yes; then | |
4189 | 1498 shl_load_api=true |
4110 | 1499 else |
4189 | 1500 AC_CHECK_LIB(wsock32, LoadLibrary) |
1501 AC_CHECK_FUNCS(LoadLibrary) | |
4201 | 1502 if test "$ac_cv_func_loadlibrary" = yes; then |
4189 | 1503 loadlibrary_api=true |
2063 | 1504 else |
4189 | 1505 AC_CHECK_LIB(dl, dlopen) |
1506 AC_CHECK_FUNCS(dlopen dlsym dlerror dlclose) | |
4201 | 1507 if test "$ac_cv_func_dlclose" = yes \ |
1508 && test "$ac_cv_func_dlerror" = yes \ | |
1509 && test "$ac_cv_func_dlopen" = yes \ | |
1510 && test "$ac_cv_func_dlsym" = yes; then | |
4189 | 1511 dlopen_api=true |
1512 else | |
4163 | 1513 case "$canonical_host_type" in |
1514 i[[3456]]86-*-sco3.2v5*) | |
1515 LD_CXX='LD_RUN_PATH=$LD_RUN_PATH:$(octlibdir) $(CXX)' | |
1516 dlopen_api=true | |
1517 ;; | |
1518 esac | |
1519 fi | |
2063 | 1520 fi |
4110 | 1521 fi |
1522 fi | |
1523 | |
5451 | 1524 ## autoconf test for LoadLibrary appears broken. Bypass for cygwin/mingw |
6286 | 1525 if $dlopen_api || $shl_load_api || $loadlibrary_api || $dyld_api; then |
1526 true | |
1527 else | |
5451 | 1528 case "$canonical_host_type" in |
6091 | 1529 *-*-cygwin* | *-*-mingw* | *-*-msdosmsvc) |
5451 | 1530 loadlibrary_api=true; |
1531 ;; | |
1532 esac | |
1533 fi | |
1534 | |
4110 | 1535 if $dlopen_api; then |
1536 DL_API_MSG="(dlopen)" | |
1537 AC_DEFINE(HAVE_DLOPEN_API, 1, [Define if your system has dlopen, dlsym, dlerror, and dlclose for dynamic linking]) | |
3958 | 1538 OCTAVE_CXX_FLAG(-rdynamic, [RDYNAMIC_FLAG=-rdynamic]) |
4110 | 1539 elif $shl_load_api; then |
1540 DL_API_MSG="(shl_load)" | |
1541 AC_DEFINE(HAVE_SHL_LOAD_API, 1, [Define if your system has shl_load and shl_findsym for dynamic linking]) | |
1542 elif $loadlibrary_api; then | |
1543 DL_API_MSG="(LoadLibrary)" | |
1544 AC_DEFINE(HAVE_LOADLIBRARY_API, 1, [Define if your system has LoadLibrary for dynamic linking]) | |
4163 | 1545 elif $dyld_api; then |
1546 DL_API_MSG="(dyld)" | |
1547 AC_DEFINE(HAVE_DYLD_API, 1, [Define if your system has dyld for dynamic linking]) | |
4110 | 1548 fi |
1549 | |
4163 | 1550 if $dlopen_api || $shl_load_api || $loadlibrary_api || $dyld_api; then |
4128 | 1551 ENABLE_DYNAMIC_LINKING=true |
1552 AC_DEFINE(ENABLE_DYNAMIC_LINKING, 1, [Define if using dynamic linking]) | |
1978 | 1553 fi |
4163 | 1554 fi |
1555 | |
1556 if $SHARED_LIBS; then | |
1557 LIBOCTINTERP=-loctinterp$SHLLINKEXT | |
1558 LIBOCTAVE=-loctave$SHLLINKEXT | |
1559 LIBCRUFT=-lcruft$SHLLINKEXT | |
1978 | 1560 else |
4110 | 1561 LIBOCTINTERP='$(TOPDIR)/src/liboctinterp.$(LIBEXT)' |
1562 LIBOCTAVE='$(TOPDIR)/liboctave/liboctave.$(LIBEXT)' | |
1563 LIBCRUFT='$(TOPDIR)/libcruft/libcruft.$(LIBEXT)' | |
1664 | 1564 fi |
4163 | 1565 |
4110 | 1566 AC_SUBST(LD_CXX) |
3232 | 1567 AC_SUBST(RDYNAMIC_FLAG) |
4128 | 1568 AC_SUBST(ENABLE_DYNAMIC_LINKING) |
4110 | 1569 AC_SUBST(LIBOCTINTERP) |
1570 AC_SUBST(LIBOCTAVE) | |
1571 AC_SUBST(LIBCRUFT) | |
1901 | 1572 |
1300 | 1573 ### There is more than one possible prototype for gettimeofday. See |
2782 | 1574 ### which one (if any) appears in sys/time.h. These tests are from |
1575 ### Emacs 19. | |
1300 | 1576 |
2782 | 1577 AC_MSG_CHECKING(for struct timeval) |
5844 | 1578 AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[#ifdef TIME_WITH_SYS_TIME |
2782 | 1579 #include <sys/time.h> |
1580 #include <time.h> | |
1581 #else | |
1582 #ifdef HAVE_SYS_TIME_H | |
1583 #include <sys/time.h> | |
1584 #else | |
1585 #include <time.h> | |
1586 #endif | |
5844 | 1587 #endif]], [[static struct timeval x; x.tv_sec = x.tv_usec;]])], |
2782 | 1588 [AC_MSG_RESULT(yes) |
1589 HAVE_TIMEVAL=yes | |
3887 | 1590 AC_DEFINE(HAVE_TIMEVAL, 1, [Define if struct timeval is defined.])], |
2782 | 1591 [AC_MSG_RESULT(no) |
1592 HAVE_TIMEVAL=no]) | |
1593 | |
1594 if test "x$HAVE_TIMEVAL" = xyes; then | |
1595 AC_MSG_CHECKING(whether gettimeofday can't accept two arguments) | |
5842 | 1596 AC_LINK_IFELSE([AC_LANG_PROGRAM([[#ifdef TIME_WITH_SYS_TIME |
2782 | 1597 #include <sys/time.h> |
1598 #include <time.h> | |
1599 #else | |
1600 #ifdef HAVE_SYS_TIME_H | |
1601 #include <sys/time.h> | |
1602 #else | |
1603 #include <time.h> | |
1604 #endif | |
5842 | 1605 #endif]], [[struct timeval time; |
1606 struct timezone dummy; | |
1607 gettimeofday (&time, &dummy);]])], | |
1608 [AC_MSG_RESULT(no)], | |
2782 | 1609 [AC_MSG_RESULT(yes) |
5842 | 1610 AC_DEFINE(GETTIMEOFDAY_NO_TZ, 1, |
1611 [Define if your system has a single-arg prototype for gettimeofday.])]) | |
2782 | 1612 fi |
869 | 1613 |
832 | 1614 dnl Would like to get rid of this cruft, and just have |
1615 dnl | |
1616 dnl AC_CHECK_FUNCS(finite isnan isinf) | |
1617 dnl | |
1618 dnl instead, but that used to fail on some systems... | |
369 | 1619 dnl |
832 | 1620 dnl Also just using AC_CHECK_FUNCS doesn't seem to work to find isinf |
1621 dnl and isnan on Linux systems, so we use AC_CHECK_FUNC, and if that | |
369 | 1622 dnl fails, we try again by including math.h and invoking the function |
1623 dnl with an argument. | |
869 | 1624 |
2508 | 1625 ### I am told that Inf and NaN don't work on m68k HP sytems, and that |
1626 ### on SCO systems, isnan and isinf don't work, but they can be | |
1627 ### replaced by something that does. | |
956 | 1628 |
1629 case "$canonical_host_type" in | |
1384 | 1630 m68k-hp-hpux*) |
956 | 1631 ;; |
2508 | 1632 *-*-sco*) |
5844 | 1633 AC_MSG_NOTICE([defining SCO to be 1]) |
3887 | 1634 AC_DEFINE(SCO, 1, [Define if using an SCO system.]) |
5844 | 1635 AC_MSG_NOTICE([forcing HAVE_ISINF for SCO]) |
3887 | 1636 AC_DEFINE(HAVE_ISINF, 1, [Define if you have isinf().]) |
5844 | 1637 AC_MSG_NOTICE([forcing HAVE_ISNAN for SCO]) |
3887 | 1638 AC_DEFINE(HAVE_ISNAN, 1, [Define if you have isnan().]) |
2508 | 1639 ;; |
956 | 1640 *) |
4349 | 1641 AC_CHECK_FUNCS(finite isnan isinf copysign signbit) |
6061 | 1642 AC_CHECK_FUNCS(_finite _isnan _copysign) |
5098 | 1643 AC_CHECK_DECLS(signbit, , , [#include <math.h>]) |
956 | 1644 ;; |
1645 esac | |
1646 | |
1076 | 1647 ### Check for nonstandard but common math functions that we need. |
1648 | |
7789
82be108cc558
First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents:
7683
diff
changeset
|
1649 AC_CHECK_FUNCS(acosh acoshf asinh asinhf atanh atanhf erf erff erfc erfcf exp2 exp2f log2 log2f) |
3130 | 1650 |
869 | 1651 ### Checks for OS specific cruft. |
1652 | |
3887 | 1653 AC_CHECK_MEMBERS([struct stat.st_blksize, struct stat.st_blocks, struct stat.st_rdev]) |
1654 | |
405 | 1655 AC_STRUCT_TM |
1186 | 1656 AC_STRUCT_TIMEZONE |
1388 | 1657 AC_FUNC_CLOSEDIR_VOID |
1225 | 1658 |
3892 | 1659 AC_CHECK_MEMBERS(struct group.gr_passwd) |
2548 | 1660 |
4067 | 1661 # mkdir takes a single argument on some systems. |
1662 OCTAVE_MKDIR_TAKES_ONE_ARG | |
1663 | |
3887 | 1664 octave_found_termlib=no |
2592 | 1665 for termlib in ncurses curses termcap terminfo termlib; do |
2034 | 1666 AC_CHECK_LIB(${termlib}, tputs, [TERMLIBS="${TERMLIBS} -l${termlib}"]) |
405 | 1667 case "${TERMLIBS}" in |
1668 *-l${termlib}*) | |
3822 | 1669 LIBS="$TERMLIBS $LIBS" |
4102 | 1670 AC_SUBST(TERMLIBS) |
3887 | 1671 octave_found_termlib=yes |
405 | 1672 break |
1673 ;; | |
1674 esac | |
1675 done | |
869 | 1676 |
3887 | 1677 if test "$octave_found_termlib" = no; then |
1678 warn_termlibs="I couldn't find -ltermcap, -lterminfo, -lncurses, -lcurses, o\ | |
1679 r -ltermlib!" | |
3105 | 1680 AC_MSG_WARN($warn_termlibs) |
2488 | 1681 fi |
1682 | |
3822 | 1683 OCTAVE_ENABLE_READLINE |
1684 | |
832 | 1685 AC_MSG_CHECKING([for struct exception in math.h]) |
5842 | 1686 AC_LINK_IFELSE([AC_LANG_PROGRAM([[#include <math.h>]], |
1687 [[struct exception *x; x->type; x->name;]])], | |
1688 [AC_MSG_RESULT(yes) | |
1689 AC_DEFINE(EXCEPTION_IN_MATH, 1, | |
1690 [Define if your math.h declares struct exception for matherr().])], | |
1691 [AC_MSG_RESULT(no)]) | |
869 | 1692 |
1693 ### Signal stuff. | |
1694 | |
834 | 1695 AC_TYPE_SIGNAL |
5844 | 1696 AC_CHECK_DECLS([sys_siglist], [], [], |
1697 [#include <signal.h> | |
1698 /* NetBSD declares sys_siglist in unistd.h. */ | |
1699 #if HAVE_UNISTD_H | |
1700 # include <unistd.h> | |
1701 #endif | |
1702 ]) | |
2470 | 1703 OCTAVE_SIGNAL_CHECK |
1704 OCTAVE_REINSTALL_SIGHANDLERS | |
6098 | 1705 if test "$ac_cv_type_signal" = "void"; then |
1706 AC_DEFINE(RETSIGTYPE_IS_VOID, 1, [Define if this if RETSIGTYPE is defined to be void. Needed because preprocessor comparisons to void fail on some systems.]) | |
1707 fi | |
869 | 1708 |
2633 | 1709 ### A system dependent kluge or two. |
1710 | |
2035 | 1711 AC_CHECK_FUNCS(getrusage times) |
2427 | 1712 case "$canonical_host_type" in |
3971 | 1713 *-*-cygwin*) |
3887 | 1714 AC_DEFINE(RUSAGE_TIMES_ONLY, 1, [Define if your struct rusage only has time information.]) |
2427 | 1715 ;; |
1716 esac | |
1717 | |
869 | 1718 ### Checks for other programs used for building, testing, installing, |
1719 ### and running Octave. | |
1720 | |
4544 | 1721 AC_PROG_AWK |
7244 | 1722 OCTAVE_PROG_FIND |
4084 | 1723 OCTAVE_PROG_SED |
5465 | 1724 OCTAVE_PROG_PERL |
5496 | 1725 OCTAVE_PROG_PYTHON |
4084 | 1726 |
3729 | 1727 OCTAVE_PROG_FLEX |
1728 OCTAVE_PROG_BISON | |
869 | 1729 |
1722 | 1730 AC_PROG_LN_S |
1731 | |
3222 | 1732 OCTAVE_PROG_NM |
869 | 1733 |
405 | 1734 AC_PROG_INSTALL |
2642 | 1735 INSTALL_SCRIPT='${INSTALL}' |
1736 AC_SUBST(INSTALL_SCRIPT) | |
869 | 1737 |
5468 | 1738 OCTAVE_PROG_DESKTOP_FILE_INSTALL |
1739 | |
3130 | 1740 OCTAVE_PROG_GNUPLOT |
1741 OCTAVE_PROG_PAGER | |
3673 | 1742 OCTAVE_PROG_GPERF |
3130 | 1743 |
5934 | 1744 OCTAVE_PROG_GHOSTSCRIPT |
1745 OCTAVE_PROG_MAKEINFO | |
1746 OCTAVE_PROG_TEXI2DVI | |
1747 OCTAVE_PROG_TEXI2PDF | |
1748 | |
2032 | 1749 ### Even though we include config.h, we need to have the preprocessor |
1750 ### defines available in a variable for the octave-bug script. Use | |
1751 ### UGLY_DEFS for that. | |
1752 | |
1753 AC_OUTPUT_MAKE_DEFS | |
3956 | 1754 |
6957 | 1755 ### We have to insert extra levels of backslash quoting here so that |
1756 ### the right thing ends up in oct-conf.h. | |
6959 | 1757 UGLY_DEFS=`echo $DEFS | $SED 's,\\",\\\\\\\\\\\\\\\\\\",g'` |
5844 | 1758 AC_MSG_NOTICE([defining UGLY_DEFS to be $UGLY_DEFS]) |
2032 | 1759 AC_SUBST(UGLY_DEFS) |
1760 | |
4645 | 1761 ### Maybe add -Wall, -W, and -Wshadow to compiler flags now that we're |
4587 | 1762 ### done feature testing. |
869 | 1763 |
3131 | 1764 if test -z "$EXTERN_CFLAGS"; then |
4626 | 1765 OCTAVE_CC_FLAG(-Wall, [ |
1766 WARN_CFLAGS="$WARN_CFLAGS -Wall"; | |
1767 AC_MSG_RESULT([adding -Wall to WARN_CFLAGS])]) | |
4645 | 1768 OCTAVE_CC_FLAG(-W, [ |
1769 WARN_CFLAGS="$WARN_CFLAGS -W"; | |
1770 AC_MSG_RESULT([adding -W to WARN_CFLAGS])]) | |
4626 | 1771 OCTAVE_CC_FLAG(-Wshadow, [ |
1772 WARN_CFLAGS="$WARN_CFLAGS -Wshadow"; | |
1773 AC_MSG_RESULT([adding -Wshadow to WARN_CFLAGS])]) | |
405 | 1774 fi |
3131 | 1775 |
1776 if test -z "$EXTERN_CXXFLAGS"; then | |
4626 | 1777 OCTAVE_CXX_FLAG(-Wall, [ |
1778 WARN_CXXFLAGS="$WARN_CXXFLAGS -Wall"; | |
1779 AC_MSG_RESULT([adding -Wall to WARN_CXXFLAGS])]) | |
4645 | 1780 OCTAVE_CXX_FLAG(-W, [ |
1781 WARN_CXXFLAGS="$WARN_CXXFLAGS -W"; | |
1782 AC_MSG_RESULT([adding -W to WARN_CXXFLAGS])]) | |
4626 | 1783 OCTAVE_CXX_FLAG(-Wshadow, [ |
1784 WARN_CXXFLAGS="$WARN_CXXFLAGS -Wshadow"; | |
1785 AC_MSG_RESULT([adding -Wshadow to WARN_CXXFLAGS])]) | |
5759 | 1786 OCTAVE_CXX_FLAG(-Wold-style-cast, [ |
1787 WARN_CXXFLAGS="$WARN_CXXFLAGS -Wold-style-cast"; | |
1788 AC_MSG_RESULT([adding -Wold-style-cast to WARN_CXXFLAGS])]) | |
405 | 1789 fi |
869 | 1790 |
4971 | 1791 GCC_PICKY_FLAGS="-Wcast-align -Wcast-qual -Wmissing-prototypes \ |
1792 -Wpointer-arith -Wstrict-prototypes -Wwrite-strings" | |
2813 | 1793 |
5194 | 1794 GXX_PICKY_FLAGS="-Wcast-align -Wcast-qual -Wpointer-arith \ |
1795 -Wwrite-strings -Weffc++ -Wenum-clash" | |
2813 | 1796 |
1797 AC_ARG_ENABLE(picky-flags, | |
5844 | 1798 [AS_HELP_STRING([--enable-picky-flags], |
1799 [add extra warning options to CFLAGS, CXXFLAGS, FFLAGS])], | |
3131 | 1800 [if test "$enableval" = no; then |
1801 true | |
2813 | 1802 elif test "$enableval" = yes; then |
3131 | 1803 if test -z "$EXTERN_CFLAGS"; then |
1804 for flag in $GCC_PICKY_FLAGS; do | |
4626 | 1805 OCTAVE_CC_FLAG($flag, [ |
1806 WARN_CFLAGS="$WARN_CFLAGS $flag"; | |
1807 AC_MSG_RESULT([adding $flag to WARN_CFLAGS])]) | |
3131 | 1808 done |
2813 | 1809 fi |
3131 | 1810 if test -z "$EXTERN_CXXFLAGS"; then |
1811 for flag in $GXX_PICKY_FLAGS; do | |
4626 | 1812 OCTAVE_CXX_FLAG($flag, [ |
1813 WARN_CXXFLAGS="$WARN_CXXFLAGS $flag"; | |
1814 AC_MSG_RESULT([adding $flag to WARN_CXXFLAGS])]) | |
3131 | 1815 done |
2813 | 1816 fi |
1817 fi], []) | |
1818 | |
4626 | 1819 AC_SUBST(WARN_CFLAGS) |
1820 AC_SUBST(WARN_CXXFLAGS) | |
1821 | |
1146 | 1822 ### Run configure in subdirectories. |
1823 | |
1304 | 1824 export CC |
1825 export CXX | |
1826 export F77 | |
1827 | |
4378 | 1828 AC_CONFIG_SUBDIRS(scripts) |
3887 | 1829 |
3923 | 1830 ### Some things to add to the bottom of config.h. |
1831 | |
1832 AH_BOTTOM([ | |
1833 #if defined (__GNUC__) | |
5389 | 1834 #define GCC_ATTR_DEPRECATED __attribute__ ((__deprecated__)) |
3923 | 1835 #define GCC_ATTR_NORETURN __attribute__ ((__noreturn__)) |
1836 #define GCC_ATTR_UNUSED __attribute__ ((__unused__)) | |
1837 #else | |
5389 | 1838 #define GCC_ATTR_DEPRECATED |
3923 | 1839 #define GCC_ATTR_NORETURN |
1840 #define GCC_ATTR_UNUSED | |
1841 #endif | |
1842 | |
1843 #define X_CAST(T, E) (T) (E) | |
1844 | |
5854 | 1845 #if defined (CXX_BROKEN_REINTERPRET_CAST) |
1846 #define FCN_PTR_CAST(T, E) (T) (E) | |
1847 #else | |
1848 #define FCN_PTR_CAST(T, E) reinterpret_cast<T> (E) | |
1849 #endif | |
1850 | |
3923 | 1851 #if defined(HAVE_F2C) && !defined(F77_FUNC) |
1852 # define F77_FUNC(x,X) x ## _ | |
1853 # define F77_FUNC_(x,X) x ## __ | |
1854 #endif | |
1855 | |
1856 #if !defined(HAVE_DEV_T) | |
4064 | 1857 typedef short dev_t; |
3923 | 1858 #endif |
1859 | |
1860 #if !defined(HAVE_INO_T) | |
4064 | 1861 typedef unsigned long ino_t; |
3923 | 1862 #endif |
1863 | |
1864 #if !defined(HAVE_NLINK_T) | |
4064 | 1865 typedef short nlink_t; |
3923 | 1866 #endif |
1867 | |
1868 #if !defined(HAVE_SIGSET_T) | |
4064 | 1869 typedef int sigset_t; |
3923 | 1870 #endif |
4101 | 1871 |
4180 | 1872 #if !defined(HAVE_SIG_ATOMIC_T) |
1873 typedef int sig_atomic_t; | |
1874 #endif | |
1875 | |
6122 | 1876 #if defined (_MSC_VER) |
1877 #define __WIN32__ | |
6276 | 1878 #define WIN32 |
6122 | 1879 /* missing parameters in macros */ |
1880 #pragma warning (disable: 4003) | |
1881 /* missing implementations in template instantiation */ | |
1882 #pragma warning (disable: 4996) | |
1883 /* deprecated function names (FIXME?) */ | |
1884 #pragma warning (disable: 4661) | |
1885 #endif | |
1886 | |
4377 | 1887 #if defined (__WIN32__) && ! defined (__CYGWIN__) |
4101 | 1888 #define OCTAVE_HAVE_WINDOWS_FILESYSTEM 1 |
6049 | 1889 #elif defined (__CYGWIN__) |
4377 | 1890 #define OCTAVE_HAVE_WINDOWS_FILESYSTEM 1 |
1891 #define OCTAVE_HAVE_POSIX_FILESYSTEM 1 | |
6049 | 1892 #else |
1893 #define OCTAVE_HAVE_POSIX_FILESYSTEM 1 | |
4101 | 1894 #endif |
1895 | |
1896 /* Define if we expect to have <windows.h>, Sleep, etc. */ | |
4102 | 1897 #if defined (__WIN32__) && ! defined (__CYGWIN__) |
4101 | 1898 #define OCTAVE_USE_WINDOWS_API 1 |
1899 #endif | |
4153 | 1900 |
4180 | 1901 /* sigsetjmp is a macro, not a function. */ |
1902 #if defined (sigsetjmp) && defined (HAVE_SIGLONGJMP) | |
1903 #define OCTAVE_HAVE_SIG_JUMP | |
1904 #endif | |
4249 | 1905 |
4726 | 1906 /* Always use vector<T>, since we sometimes allocate large chunks |
1907 of memory and that can cause trouble due to stack size limits. | |
1908 | |
1909 Note that using auto_ptr is not appropriate because it uses delete, | |
1910 not delete[] and we need the latter to properly handle arrays | |
1911 allocated with new[size]. | |
1912 | |
5174 | 1913 Use < T > instead of <T> to avoid problems if T is a template type |
1914 (say, foo<int>) and the preprocessor fails to insert a space and | |
1915 generates <foo<int>>. | |
1916 | |
4366 | 1917 #if defined (HAVE_DYNAMIC_AUTO_ARRAYS) |
5174 | 1918 |
4249 | 1919 #define OCTAVE_LOCAL_BUFFER(T, buf, size) \ |
1920 T buf[size] | |
5174 | 1921 |
1922 #else | |
1923 | |
1924 */ | |
1925 | |
4249 | 1926 #define OCTAVE_LOCAL_BUFFER(T, buf, size) \ |
5174 | 1927 std::vector< T > buf ## _vector (size); \ |
6149 | 1928 T *buf = ((size) > 0 ? &(buf ## _vector[0]) : 0) |
5174 | 1929 |
4382 | 1930 /* #endif */ |
4278 | 1931 |
1932 #if defined (__DECCXX) | |
1933 #define __USE_STD_IOSTREAM | |
1934 #endif | |
4552 | 1935 |
1936 #if defined (_UNICOS) | |
1937 #define F77_USES_CRAY_CALLING_CONVENTION | |
1938 #endif | |
1939 | |
1940 #if 0 | |
1941 #define F77_USES_VISUAL_FORTRAN_CALLING_CONVENTION | |
1942 #endif | |
5275 | 1943 |
5297 | 1944 #ifdef USE_64_BIT_IDX_T |
1945 #define SIZEOF_OCTAVE_IDX_TYPE 8 | |
1946 #else | |
1947 #define SIZEOF_OCTAVE_IDX_TYPE SIZEOF_INT | |
1948 #endif | |
1949 | |
7067 | 1950 #define OCTAVE_EMPTY_CPP_ARG |
1951 | |
6121 | 1952 #include "oct-dlldefs.h" |
5275 | 1953 #include "oct-types.h" |
3923 | 1954 ]) |
1955 | |
869 | 1956 ### Do the substitutions in all the Makefiles. |
1957 | |
7253 | 1958 AC_CONFIG_FILES([Makefile octMakefile Makeconf test/Makefile |
1959 doc/Makefile doc/faq/Makefile doc/interpreter/Makefile | |
1960 doc/liboctave/Makefile doc/refcard/Makefile emacs/Makefile | |
1961 examples/Makefile liboctave/Makefile liboctave/oct-types.h | |
1962 src/Makefile src/mxarray.h libcruft/Makefile libcruft/Makerules | |
1963 libcruft/amos/Makefile libcruft/blas/Makefile | |
1964 libcruft/daspk/Makefile libcruft/dasrt/Makefile | |
1965 libcruft/dassl/Makefile libcruft/fftpack/Makefile | |
1966 libcruft/lapack/Makefile libcruft/minpack/Makefile | |
1967 libcruft/misc/Makefile libcruft/odepack/Makefile | |
1968 libcruft/ordered-qz/Makefile libcruft/quadpack/Makefile | |
7553
56be6f31dd4e
implementation of QR factorization updating
Jaroslav Hajek <highegg@gmail.com>
parents:
7483
diff
changeset
|
1969 libcruft/qrupdate/Makefile |
7253 | 1970 libcruft/ranlib/Makefile libcruft/slatec-fn/Makefile |
1971 libcruft/slatec-err/Makefile libcruft/villad/Makefile | |
7874
e3a502930e2a
eliminate src/graphics subdirectory
John W. Eaton <jwe@octave.org>
parents:
7863
diff
changeset
|
1972 libcruft/blas-xtra/Makefile libcruft/lapack-xtra/Makefile]) |
3887 | 1973 AC_OUTPUT |
1225 | 1974 |
3887 | 1975 AC_CONFIG_COMMANDS([default-1],[[chmod +x install-octave]],[[]]) |
3176 | 1976 |
1225 | 1977 ### Print a summary so that important information isn't missed. |
1978 | |
1979 if test -z "$F77"; then | |
1980 FORT="$F2C $F2CFLAGS" | |
1981 else | |
2610 | 1982 FORT="$F77 $FFLAGS" |
1225 | 1983 fi |
1984 | |
5844 | 1985 AC_MSG_NOTICE([ |
1225 | 1986 |
1987 Octave is now configured for $canonical_host_type | |
1988 | |
1664 | 1989 Source directory: $srcdir |
1990 Installation prefix: $prefix | |
4626 | 1991 C compiler: $CC $XTRA_CFLAGS $WARN_CFLAGS $CFLAGS |
1992 C++ compiler: $CXX $XTRA_CXXFLAGS $WARN_CXXFLAGS $CXXFLAGS | |
1664 | 1993 Fortran compiler: $FORT |
1994 Fortran libraries: $FLIBS | |
3820 | 1995 BLAS libraries: $BLAS_LIBS |
3827 | 1996 FFTW libraries: $FFTW_LIBS |
5235 | 1997 GLPK libraries: $GLPK_LIBS |
5203 | 1998 UMFPACK libraries: $UMFPACK_LIBS |
6024 | 1999 AMD libraries: $AMD_LIBS |
2000 CAMD libraries: $CAMD_LIBS | |
5451 | 2001 COLAMD libraries: $COLAMD_LIBS |
2002 CCOLAMD libraries: $CCOLAMD_LIBS | |
2003 CHOLMOD libraries: $CHOLMOD_LIBS | |
5610 | 2004 CXSPARSE libraries: $CXSPARSE_LIBS |
3820 | 2005 HDF5 libraries: $HDF5_LIBS |
6043 | 2006 CURL libraries: $CURL_LIBS |
6024 | 2007 REGEX libraries: $REGEX_LIBS |
6829 | 2008 QHULL libraries: $QHULL_LIBS |
3822 | 2009 LIBS: $LIBS |
1664 | 2010 Default pager: $DEFAULT_PAGER |
7361 | 2011 gnuplot: $GNUPLOT |
7863
2a62d45fa21d
added check for FTGL library
Shai Ayal <shaiay@users.sourceforge.net>
parents:
7834
diff
changeset
|
2012 OPENGL libraries: $OPENGL_LIBS |
2a62d45fa21d
added check for FTGL library
Shai Ayal <shaiay@users.sourceforge.net>
parents:
7834
diff
changeset
|
2013 fltk backend libs: $GRAPHICS_LIBS |
1664 | 2014 |
4110 | 2015 Do internal array bounds checking: $BOUNDS_CHECKING |
2016 Build static libraries: $STATIC_LIBS | |
2017 Build shared libraries: $SHARED_LIBS | |
4128 | 2018 Dynamic Linking: $ENABLE_DYNAMIC_LINKING $DL_API_MSG |
4110 | 2019 Include support for GNU readline: $USE_READLINE |
5275 | 2020 64-bit array dims and indexing: $USE_64_BIT_IDX_T |
1225 | 2021 ]) |
3105 | 2022 |
2023 warn_msg_printed=false | |
2024 | |
4469 | 2025 if $ENABLE_DYNAMIC_LINKING; then |
2026 if $SHARED_LIBS; then | |
2027 true | |
2028 else | |
2029 AC_MSG_WARN([You used --enable-dl but not --enable-shared.]) | |
2030 AC_MSG_WARN([Are you sure that is what you want to do?]) | |
2031 warn_msg_printed=true | |
2032 fi | |
2033 fi | |
2034 | |
3105 | 2035 if test -n "$gxx_only"; then |
2036 AC_MSG_WARN($gxx_only) | |
2037 warn_msg_printed=true | |
2038 fi | |
2039 | |
2040 if test -n "$warn_gcc_version"; then | |
2041 AC_MSG_WARN($warn_gcc_version) | |
2042 warn_msg_printed=true | |
2043 fi | |
2044 | |
2045 if test -n "$warn_gcc_only"; then | |
2046 AC_MSG_WARN($warn_gcc_only) | |
2047 warn_msg_printed=true | |
2048 fi | |
2049 | |
3825 | 2050 if test -n "$warn_readline"; then |
2051 AC_MSG_WARN($warn_readline) | |
2052 warn_msg_printed=true | |
2053 fi | |
2054 | |
3105 | 2055 if test -n "$warn_termlibs"; then |
2056 AC_MSG_WARN($warn_termlibs) | |
2057 warn_msg_printed=true | |
2058 fi | |
2059 | |
3673 | 2060 if test -n "$warn_gperf"; then |
2061 AC_MSG_WARN($warn_gperf) | |
2062 warn_msg_printed=true | |
2063 fi | |
2064 | |
3105 | 2065 if test -n "$warn_flex"; then |
2066 AC_MSG_WARN($warn_flex) | |
2067 warn_msg_printed=true | |
2068 fi | |
2069 | |
2070 if test -n "$warn_bison"; then | |
2071 AC_MSG_WARN($warn_bison) | |
2072 warn_msg_printed=true | |
2073 fi | |
2074 | |
2075 if test -n "$warn_less"; then | |
2076 AC_MSG_WARN($warn_less) | |
2077 warn_msg_printed=true | |
2078 fi | |
2079 | |
7683
8136cb19fb7a
implement BLAS-F77 call compatibility check
Jaroslav Hajek <highegg@gmail.com>
parents:
7638
diff
changeset
|
2080 if test -n "$warn_blas_f77_incompatible"; then |
8136cb19fb7a
implement BLAS-F77 call compatibility check
Jaroslav Hajek <highegg@gmail.com>
parents:
7638
diff
changeset
|
2081 AC_MSG_WARN($warn_blas_f77_incompatible) |
8136cb19fb7a
implement BLAS-F77 call compatibility check
Jaroslav Hajek <highegg@gmail.com>
parents:
7638
diff
changeset
|
2082 warn_msg_printed=true |
8136cb19fb7a
implement BLAS-F77 call compatibility check
Jaroslav Hajek <highegg@gmail.com>
parents:
7638
diff
changeset
|
2083 fi |
8136cb19fb7a
implement BLAS-F77 call compatibility check
Jaroslav Hajek <highegg@gmail.com>
parents:
7638
diff
changeset
|
2084 |
5203 | 2085 if test -n "$warn_umfpack"; then |
2086 AC_MSG_WARN($warn_umfpack) | |
2087 warn_msg_printed=true | |
2088 fi | |
2089 | |
7619 | 2090 if test -n "$warn_amd"; then |
2091 AC_MSG_WARN($warn_amd) | |
2092 warn_msg_printed=true | |
2093 fi | |
2094 | |
5451 | 2095 if test -n "$warn_colamd"; then |
2096 AC_MSG_WARN($warn_colamd) | |
2097 warn_msg_printed=true | |
2098 fi | |
2099 | |
2100 if test -n "$warn_ccolamd"; then | |
2101 AC_MSG_WARN($warn_ccolamd) | |
2102 warn_msg_printed=true | |
2103 fi | |
2104 | |
2105 if test -n "$warn_cholmod"; then | |
2106 AC_MSG_WARN($warn_cholmod) | |
2107 warn_msg_printed=true | |
2108 fi | |
2109 | |
5703 | 2110 if test -n "$warn_cxsparse"; then |
2111 AC_MSG_WARN($warn_cxsparse) | |
2112 warn_msg_printed=true | |
2113 fi | |
2114 | |
6335 | 2115 if test -n "$warn_curl"; then |
2116 AC_MSG_WARN($warn_curl) | |
2117 warn_msg_printed=true | |
2118 fi | |
2119 | |
6133 | 2120 if test -n "$warn_fftw"; then |
2121 AC_MSG_WARN($warn_fftw) | |
2122 warn_msg_printed=true | |
2123 fi | |
2124 | |
2125 if test -n "$warn_glpk"; then | |
2126 AC_MSG_WARN($warn_glpk) | |
2127 warn_msg_printed=true | |
2128 fi | |
2129 | |
5203 | 2130 if test -n "$warn_hdf5"; then |
2131 AC_MSG_WARN($warn_hdf5) | |
2132 warn_msg_printed=true | |
2133 fi | |
2134 | |
6133 | 2135 if test -n "$warn_regex"; then |
2136 AC_MSG_WARN($warn_regex) | |
2137 warn_msg_printed=true | |
2138 fi | |
2139 | |
6025 | 2140 if test -n "$warn_pcre"; then |
2141 AC_MSG_WARN($warn_pcre) | |
2142 warn_msg_printed=true | |
2143 fi | |
2144 | |
6829 | 2145 if test -n "$warn_qhull"; then |
2146 AC_MSG_WARN($warn_qhull) | |
2147 warn_msg_printed=true | |
2148 fi | |
2149 | |
5270 | 2150 if test -n "$warn_zlib"; then |
2151 AC_MSG_WARN($warn_zlib) | |
2152 warn_msg_printed=true | |
2153 fi | |
2154 | |
5934 | 2155 if test -n "$warn_ghostscript"; then |
2156 AC_MSG_WARN($warn_ghostscript) | |
2157 warn_msg_printed=true | |
2158 fi | |
2159 | |
2160 if test -n "$warn_makeinfo"; then | |
2161 AC_MSG_WARN($warn_makeinfo) | |
2162 warn_msg_printed=true | |
2163 fi | |
2164 | |
2165 if test -n "$warn_texi2dvi"; then | |
2166 AC_MSG_WARN($warn_texi2dvi) | |
2167 warn_msg_printed=true | |
2168 fi | |
2169 | |
2170 if test -n "$warn_texi2pdf"; then | |
2171 AC_MSG_WARN($warn_texi2pdf) | |
2172 warn_msg_printed=true | |
2173 fi | |
2174 | |
5275 | 2175 if test -n "$warn_64_bit"; then |
2176 AC_MSG_WARN($warn_64_bit) | |
2177 warn_msg_printed=true | |
2178 fi | |
2179 | |
3105 | 2180 if test -n "$warn_gnuplot"; then |
2181 | |
2182 ## If you change this text, be sure to also change the corresponding | |
2183 ## set of warnings above. | |
2184 | |
6161 | 2185 AC_MSG_WARN([]) |
3105 | 2186 AC_MSG_WARN([I didn't find gnuplot. It isn't necessary to have gnuplot]) |
2187 AC_MSG_WARN([installed, but you won't be able to use any of Octave's]) | |
2188 AC_MSG_WARN([plotting commands without it.]) | |
2189 AC_MSG_WARN([]) | |
2190 AC_MSG_WARN([If gnuplot is installed but it isn't in your path, you can]) | |
2191 AC_MSG_WARN([tell Octave where to find it by typing the command]) | |
2192 AC_MSG_WARN([]) | |
2193 AC_MSG_WARN([gnuplot_binary = "/full/path/to/gnuplot/binary"]) | |
2194 AC_MSG_WARN([]) | |
2195 AC_MSG_WARN([at the Octave prompt.]) | |
6161 | 2196 AC_MSG_WARN([]) |
3105 | 2197 warn_msg_printed=true |
2198 fi | |
2199 | |
5857 | 2200 if $USE_64_BIT_IDX_T; then |
6161 | 2201 AC_MSG_WARN([]) |
5857 | 2202 AC_MSG_WARN([You used the EXPERIMENTAL --enable-64 option.]) |
2203 AC_MSG_WARN([Are you sure that is what you want to do?]) | |
2204 AC_MSG_WARN([]) | |
2205 AC_MSG_WARN([You must ensure that the Fortran compiler generates]) | |
2206 AC_MSG_WARN([code with 8 byte signed INTEGER values, and that your]) | |
2207 AC_MSG_WARN([BLAS and LAPACK libraries are compiled to use 8 byte]) | |
2208 AC_MSG_WARN([signed integers for array indexing.]) | |
6161 | 2209 AC_MSG_WARN([]) |
5857 | 2210 warn_msg_printed=true |
3105 | 2211 fi |
2212 | |
7834
caab78e7e377
added checks for fltk & freetype in configure script
Shai Ayal <shaiay@sourceforge.net>
parents:
7825
diff
changeset
|
2213 if test -n "$warn_graphics"; then |
caab78e7e377
added checks for fltk & freetype in configure script
Shai Ayal <shaiay@sourceforge.net>
parents:
7825
diff
changeset
|
2214 AC_MSG_WARN($warn_graphics) |
caab78e7e377
added checks for fltk & freetype in configure script
Shai Ayal <shaiay@sourceforge.net>
parents:
7825
diff
changeset
|
2215 AC_MSG_WARN([]) |
caab78e7e377
added checks for fltk & freetype in configure script
Shai Ayal <shaiay@sourceforge.net>
parents:
7825
diff
changeset
|
2216 AC_MSG_WARN([I didn't find the necessary libraries to compile native]) |
caab78e7e377
added checks for fltk & freetype in configure script
Shai Ayal <shaiay@sourceforge.net>
parents:
7825
diff
changeset
|
2217 AC_MSG_WARN([graphics. It isn't necessary to have native graphics]) |
caab78e7e377
added checks for fltk & freetype in configure script
Shai Ayal <shaiay@sourceforge.net>
parents:
7825
diff
changeset
|
2218 AC_MSG_WARN([but you will have to use gnuplot or you won't be able]) |
caab78e7e377
added checks for fltk & freetype in configure script
Shai Ayal <shaiay@sourceforge.net>
parents:
7825
diff
changeset
|
2219 AC_MSG_WARN([to use any of Octave's plotting commands]) |
caab78e7e377
added checks for fltk & freetype in configure script
Shai Ayal <shaiay@sourceforge.net>
parents:
7825
diff
changeset
|
2220 AC_MSG_WARN([]) |
caab78e7e377
added checks for fltk & freetype in configure script
Shai Ayal <shaiay@sourceforge.net>
parents:
7825
diff
changeset
|
2221 warn_msg_printed=true |
caab78e7e377
added checks for fltk & freetype in configure script
Shai Ayal <shaiay@sourceforge.net>
parents:
7825
diff
changeset
|
2222 fi |
caab78e7e377
added checks for fltk & freetype in configure script
Shai Ayal <shaiay@sourceforge.net>
parents:
7825
diff
changeset
|
2223 |
6191 | 2224 if $warn_msg_printed; then |
6161 | 2225 AC_MSG_NOTICE([ |
2226 | |
2227 NOTE: libraries may be skipped if a library is not found OR | |
2228 if the library on your system is missing required features. | |
2229 ]) | |
2230 fi | |
2231 | |
3105 | 2232 ### End of configure. |