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