Mercurial > hg > octave-lyh
annotate configure.ac @ 15110:4f6e058e4161 gui
Integrate GUI building with regular octave build system.
* configure.ac: Add detection of qmake, moc and uic. Use qmake to retrieve Qt
include and lib directories. Detect openpty (for libqterminal compilation).
Add generation of gui/Makefile and gui/src/Makefile. Add WIN32_TERMINAL automake
conditional.
* gui/Makefile.am: New file.
* gui/src/Makefile.am: Likewise.
author | Michael Goffioul <michael.goffioul@gmail.com> |
---|---|
date | Sun, 05 Aug 2012 14:37:22 +0100 |
parents | a132d206a36a |
children | 7279c6fc3acb |
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 | |
14138
72c96de7a403
maint: update copyright notices for 2012
John W. Eaton <jwe@octave.org>
parents:
14103
diff
changeset
|
5 dnl Copyright (C) 1993-2012 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 | |
7016 | 11 ### Free Software Foundation; either version 3 of the License, or (at |
12 ### your option) any later version. | |
869 | 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 | |
7016 | 20 ### along with Octave; see the file COPYING. If not, see |
21 ### <http://www.gnu.org/licenses/>. | |
869 | 22 |
4587 | 23 ### Preserve CFLAGS and CXXFLAGS from the environment before doing |
24 ### anything else because we don't know which macros might call | |
25 ### AC_PROG_CC or AC_PROG_CXX. | |
26 | |
27 EXTERN_CFLAGS="$CFLAGS" | |
28 EXTERN_CXXFLAGS="$CXXFLAGS" | |
29 | |
14296
6cb3b158e973
maint: Bump Octave version to development numbering of 3.7.0+
Rik <octave@nomad.inbox5.com>
parents:
14204
diff
changeset
|
30 AC_INIT([GNU Octave], [3.7.0+], [http://octave.org/bugs.html], [octave]) |
9794
0d4613a736e9
convert build system to use automake and libtool
John W. Eaton <jwe@octave.org>
parents:
9787
diff
changeset
|
31 |
0d4613a736e9
convert build system to use automake and libtool
John W. Eaton <jwe@octave.org>
parents:
9787
diff
changeset
|
32 dnl PACKAGE_VERSION is set by the AC_INIT VERSION arg |
0d4613a736e9
convert build system to use automake and libtool
John W. Eaton <jwe@octave.org>
parents:
9787
diff
changeset
|
33 OCTAVE_VERSION="$PACKAGE_VERSION" |
14204 | 34 OCTAVE_API_VERSION_NUMBER="48" |
9917
c1210502785b
provide OCTAVE_API_VERSION_NUMBER
John W. Eaton <jwe@octave.org>
parents:
9915
diff
changeset
|
35 OCTAVE_API_VERSION="api-v$OCTAVE_API_VERSION_NUMBER+" |
14393 | 36 OCTAVE_RELEASE_DATE="2012-02-22" |
14138
72c96de7a403
maint: update copyright notices for 2012
John W. Eaton <jwe@octave.org>
parents:
14103
diff
changeset
|
37 OCTAVE_COPYRIGHT="Copyright (C) 2012 John W. Eaton and others." |
9794
0d4613a736e9
convert build system to use automake and libtool
John W. Eaton <jwe@octave.org>
parents:
9787
diff
changeset
|
38 AC_SUBST(OCTAVE_VERSION) |
9917
c1210502785b
provide OCTAVE_API_VERSION_NUMBER
John W. Eaton <jwe@octave.org>
parents:
9915
diff
changeset
|
39 AC_SUBST(OCTAVE_API_VERSION_NUMBER) |
9794
0d4613a736e9
convert build system to use automake and libtool
John W. Eaton <jwe@octave.org>
parents:
9787
diff
changeset
|
40 AC_SUBST(OCTAVE_API_VERSION) |
0d4613a736e9
convert build system to use automake and libtool
John W. Eaton <jwe@octave.org>
parents:
9787
diff
changeset
|
41 AC_SUBST(OCTAVE_RELEASE_DATE) |
0d4613a736e9
convert build system to use automake and libtool
John W. Eaton <jwe@octave.org>
parents:
9787
diff
changeset
|
42 AC_SUBST(OCTAVE_COPYRIGHT) |
0d4613a736e9
convert build system to use automake and libtool
John W. Eaton <jwe@octave.org>
parents:
9787
diff
changeset
|
43 |
7451 | 44 AC_REVISION($Revision: 1.603 $) |
9909 | 45 AC_PREREQ([2.62]) |
3887 | 46 AC_CONFIG_SRCDIR([src/octave.cc]) |
15059
6130d87495b8
configure.ac: replace deprecated AC_CONFIG_HEADER macro
Carnë Draug <carandraug+dev@gmail.com>
parents:
15054
diff
changeset
|
47 AC_CONFIG_HEADERS([config.h]) |
9946 | 48 AC_CONFIG_AUX_DIR([build-aux]) |
9794
0d4613a736e9
convert build system to use automake and libtool
John W. Eaton <jwe@octave.org>
parents:
9787
diff
changeset
|
49 AC_CONFIG_MACRO_DIR([m4]) |
869 | 50 |
9946 | 51 AM_INIT_AUTOMAKE([1.11 tar-ustar]) |
52 | |
5844 | 53 OCTAVE_HOST_TYPE |
54 | |
15063
36cbcc37fdb8
Refactor configure.ac to make it more understandable.
Rik <rik@octave.org>
parents:
15059
diff
changeset
|
55 AC_DEFINE(OCTAVE_SOURCE, 1, [Define to 1 if this is Octave.]) |
3887 | 56 |
15063
36cbcc37fdb8
Refactor configure.ac to make it more understandable.
Rik <rik@octave.org>
parents:
15059
diff
changeset
|
57 dnl FIXME: Can this MSVC test be moved down to the section on finding a |
36cbcc37fdb8
Refactor configure.ac to make it more understandable.
Rik <rik@octave.org>
parents:
15059
diff
changeset
|
58 dnl a C compiler which already has an MSVC exception test? |
36cbcc37fdb8
Refactor configure.ac to make it more understandable.
Rik <rik@octave.org>
parents:
15059
diff
changeset
|
59 dnl FIXME: We should probably only generate this file if it is missing. |
6090 | 60 ### Produce unistd.h for MSVC target, this simplifies changes in |
61 ### Octave source tree and avoid problems with lex-generated code. | |
62 case "$canonical_host_type" in | |
63 *-*-msdosmsvc) | |
64 AC_MSG_NOTICE([Generating replacement for <unistd.h> for MSVC]) | |
65 cat << \EOF > unistd.h | |
66 /* File generated by configure script. */ | |
67 #include <direct.h> | |
68 #include <io.h> | |
69 #include <process.h> | |
70 EOF | |
71 CPPFLAGS="-I. $CPPFLAGS" | |
72 ;; | |
73 esac | |
74 | |
9091
45c832e9976d
configure.in: require autoconf 2.60; eliminate some obsolete macros
John W. Eaton <jwe@octave.org>
parents:
9090
diff
changeset
|
75 AC_USE_SYSTEM_EXTENSIONS |
1667 | 76 |
15063
36cbcc37fdb8
Refactor configure.ac to make it more understandable.
Rik <rik@octave.org>
parents:
15059
diff
changeset
|
77 ### Path separator. |
10123
8590f3c51868
Fix a few MSVC-related problems and partially re-enable MSVC compilation.
Michael Goffioul <michael.goffioul@gmail.com>
parents:
10092
diff
changeset
|
78 |
5451 | 79 sepchar=: |
80 AC_ARG_WITH(sepchar, | |
5842 | 81 [AS_HELP_STRING([--with-sepchar=<char>], |
5844 | 82 [use <char> as the path separation character])]) |
5451 | 83 case $with_sepchar in |
84 yes | "") | |
85 case "$canonical_host_type" in | |
6090 | 86 *-*-mingw* | *-*-msdosmsvc) |
12451 | 87 sepchar=';' |
5451 | 88 ;; |
89 esac | |
90 ;; | |
91 no) | |
92 AC_MSG_ERROR([You are required to define a path separation character]) | |
93 ;; | |
94 *) | |
95 sepchar=$with_sepchar | |
96 ;; | |
97 esac | |
98 AC_SUBST(sepchar) | |
99 AC_DEFINE_UNQUOTED(SEPCHAR, ['$sepchar'], [Define this to be the path separator for your system, as a character constant.]) | |
100 AC_DEFINE_UNQUOTED(SEPCHAR_STR, ["$sepchar"], [Define this to the path separator, as a string.]) | |
101 | |
15063
36cbcc37fdb8
Refactor configure.ac to make it more understandable.
Rik <rik@octave.org>
parents:
15059
diff
changeset
|
102 ### Set default file locations |
2223 | 103 |
2813 | 104 OCTAVE_SET_DEFAULT(man1dir, '$(mandir)/man1') |
105 OCTAVE_SET_DEFAULT(man1ext, '.1') | |
8940
6994961bf1f4
use doc-cache instead of DOC for doc cache file name
John W. Eaton <jwe@octave.org>
parents:
8938
diff
changeset
|
106 OCTAVE_SET_DEFAULT(doc_cache_file, '$(octetcdir)/doc-cache') |
14614
4e9dc46d4125
handle texinfo macros consistently in help system and manual
John W. Eaton <jwe@octave.org>
parents:
14605
diff
changeset
|
107 OCTAVE_SET_DEFAULT(texi_macros_file, '$(octetcdir)/macros.texi') |
2813 | 108 OCTAVE_SET_DEFAULT(infofile, '$(infodir)/octave.info') |
9794
0d4613a736e9
convert build system to use automake and libtool
John W. Eaton <jwe@octave.org>
parents:
9787
diff
changeset
|
109 OCTAVE_SET_DEFAULT(octincludedir, '$(includedir)/octave-$(version)/octave') |
3029 | 110 OCTAVE_SET_DEFAULT(fcnfiledir, '$(datadir)/octave/$(version)/m') |
2813 | 111 OCTAVE_SET_DEFAULT(localfcnfiledir, '$(datadir)/octave/site/m') |
4449 | 112 OCTAVE_SET_DEFAULT(localapifcnfiledir, |
5778 | 113 '$(datadir)/octave/site/$(api_version)/m') |
3597 | 114 OCTAVE_SET_DEFAULT(localverfcnfiledir, '$(datadir)/octave/$(version)/site/m') |
8719
679c270b7584
install DOC and NEWS in $octetcdir
John W. Eaton <jwe@octave.org>
parents:
8698
diff
changeset
|
115 OCTAVE_SET_DEFAULT(octetcdir, '$(datadir)/octave/$(version)/etc') |
12710
762d10c77277
maint: use libdir for .oct files, not libexecdir
John W. Eaton <jwe@octave.org>
parents:
12538
diff
changeset
|
116 OCTAVE_SET_DEFAULT(octlibdir, '$(libdir)/octave/$(version)') |
3029 | 117 OCTAVE_SET_DEFAULT(archlibdir, |
3130 | 118 '$(libexecdir)/octave/$(version)/exec/$(canonical_host_type)') |
3029 | 119 OCTAVE_SET_DEFAULT(localarchlibdir, |
3130 | 120 '$(libexecdir)/octave/site/exec/$(canonical_host_type)') |
5909 | 121 OCTAVE_SET_DEFAULT(localapiarchlibdir, |
122 '$(libexecdir)/octave/$(api_version)/site/exec/$(canonical_host_type)') | |
3597 | 123 OCTAVE_SET_DEFAULT(localverarchlibdir, |
124 '$(libexecdir)/octave/$(version)/site/exec/$(canonical_host_type)') | |
3029 | 125 OCTAVE_SET_DEFAULT(octfiledir, |
12710
762d10c77277
maint: use libdir for .oct files, not libexecdir
John W. Eaton <jwe@octave.org>
parents:
12538
diff
changeset
|
126 '$(libdir)/octave/$(version)/oct/$(canonical_host_type)') |
3029 | 127 OCTAVE_SET_DEFAULT(localoctfiledir, |
12710
762d10c77277
maint: use libdir for .oct files, not libexecdir
John W. Eaton <jwe@octave.org>
parents:
12538
diff
changeset
|
128 '$(libdir)/octave/site/oct/$(canonical_host_type)') |
4449 | 129 OCTAVE_SET_DEFAULT(localapioctfiledir, |
12710
762d10c77277
maint: use libdir for .oct files, not libexecdir
John W. Eaton <jwe@octave.org>
parents:
12538
diff
changeset
|
130 '$(libdir)/octave/site/oct/$(api_version)/$(canonical_host_type)') |
3597 | 131 OCTAVE_SET_DEFAULT(localveroctfiledir, |
12710
762d10c77277
maint: use libdir for .oct files, not libexecdir
John W. Eaton <jwe@octave.org>
parents:
12538
diff
changeset
|
132 '$(libdir)/octave/$(version)/site/oct/$(canonical_host_type)') |
3029 | 133 OCTAVE_SET_DEFAULT(imagedir, '$(datadir)/octave/$(version)/imagelib') |
1667 | 134 |
9575
55ecaefb7d0f
Use pkg-config to configure GraphicsMagick++.
David Grundberg <individ@acc.umu.se>
parents:
9573
diff
changeset
|
135 ### Find pkg-config executable (sets $PKG_CONFIG) |
55ecaefb7d0f
Use pkg-config to configure GraphicsMagick++.
David Grundberg <individ@acc.umu.se>
parents:
9573
diff
changeset
|
136 |
55ecaefb7d0f
Use pkg-config to configure GraphicsMagick++.
David Grundberg <individ@acc.umu.se>
parents:
9573
diff
changeset
|
137 PKG_PROG_PKG_CONFIG |
55ecaefb7d0f
Use pkg-config to configure GraphicsMagick++.
David Grundberg <individ@acc.umu.se>
parents:
9573
diff
changeset
|
138 |
2155 | 139 ### Make configure args available for other uses. |
140 | |
141 config_opts=$ac_configure_args | |
142 AC_SUBST(config_opts) | |
143 | |
15063
36cbcc37fdb8
Refactor configure.ac to make it more understandable.
Rik <rik@octave.org>
parents:
15059
diff
changeset
|
144 ### Enable bounds checking on element references within Octave's array and |
36cbcc37fdb8
Refactor configure.ac to make it more understandable.
Rik <rik@octave.org>
parents:
15059
diff
changeset
|
145 ### matrix classes. This slows down some operations a bit, so it is turned off |
36cbcc37fdb8
Refactor configure.ac to make it more understandable.
Rik <rik@octave.org>
parents:
15059
diff
changeset
|
146 ### by default. |
2108 | 147 |
2450 | 148 BOUNDS_CHECKING=false |
2108 | 149 AC_ARG_ENABLE(bounds-check, |
5844 | 150 [AS_HELP_STRING([--enable-bounds-check], |
7091 | 151 [bounds checking for indexing in internal array classes (default is no)])], |
3060 | 152 [if test "$enableval" = yes; then BOUNDS_CHECKING=true; fi], []) |
2108 | 153 if $BOUNDS_CHECKING; then |
15063
36cbcc37fdb8
Refactor configure.ac to make it more understandable.
Rik <rik@octave.org>
parents:
15059
diff
changeset
|
154 AC_DEFINE(BOUNDS_CHECKING, 1, [Define to 1 to use internal bounds checking.]) |
2108 | 155 fi |
156 | |
15063
36cbcc37fdb8
Refactor configure.ac to make it more understandable.
Rik <rik@octave.org>
parents:
15059
diff
changeset
|
157 ### Use Octave's built-in memory allocator rather than straightforward malloc. |
36cbcc37fdb8
Refactor configure.ac to make it more understandable.
Rik <rik@octave.org>
parents:
15059
diff
changeset
|
158 ### Disabled by default. |
36cbcc37fdb8
Refactor configure.ac to make it more understandable.
Rik <rik@octave.org>
parents:
15059
diff
changeset
|
159 |
13838
a35d381e22b0
make octave_allocator optional and disable by default
John W. Eaton <jwe@octave.org>
parents:
13745
diff
changeset
|
160 USE_OCTAVE_ALLOCATOR=false |
a35d381e22b0
make octave_allocator optional and disable by default
John W. Eaton <jwe@octave.org>
parents:
13745
diff
changeset
|
161 AC_ARG_ENABLE(octave-allocator, |
a35d381e22b0
make octave_allocator optional and disable by default
John W. Eaton <jwe@octave.org>
parents:
13745
diff
changeset
|
162 [AS_HELP_STRING([--enable-octave-allocator], |
a35d381e22b0
make octave_allocator optional and disable by default
John W. Eaton <jwe@octave.org>
parents:
13745
diff
changeset
|
163 [use the obsolete octave_allocator class for many of Octave's objects (mostly octave_value types). You probably do NOT want to enable this feature. (default is no)])], |
13985
43cc49c7abd1
Use thread-safe atomic reference counting (GCC and MSVC).
Michael Goffioul <michael.goffioul@gmail.com>
parents:
13838
diff
changeset
|
164 [if test "$enableval" = yes; then USE_OCTAVE_ALLOCATOR=true; fi], []) |
13838
a35d381e22b0
make octave_allocator optional and disable by default
John W. Eaton <jwe@octave.org>
parents:
13745
diff
changeset
|
165 if $USE_OCTAVE_ALLOCATOR; then |
15063
36cbcc37fdb8
Refactor configure.ac to make it more understandable.
Rik <rik@octave.org>
parents:
15059
diff
changeset
|
166 AC_DEFINE(USE_OCTAVE_ALLOCATOR, 1, [Define to 1 to use octave_allocator class.]) |
13838
a35d381e22b0
make octave_allocator optional and disable by default
John W. Eaton <jwe@octave.org>
parents:
13745
diff
changeset
|
167 fi |
a35d381e22b0
make octave_allocator optional and disable by default
John W. Eaton <jwe@octave.org>
parents:
13745
diff
changeset
|
168 |
15063
36cbcc37fdb8
Refactor configure.ac to make it more understandable.
Rik <rik@octave.org>
parents:
15059
diff
changeset
|
169 ### Use atomic operations for internal reference counting. This is required |
36cbcc37fdb8
Refactor configure.ac to make it more understandable.
Rik <rik@octave.org>
parents:
15059
diff
changeset
|
170 ### for thread-safe behavior but incurs a significant slowdown, and is thus |
36cbcc37fdb8
Refactor configure.ac to make it more understandable.
Rik <rik@octave.org>
parents:
15059
diff
changeset
|
171 ### disabled by default. |
36cbcc37fdb8
Refactor configure.ac to make it more understandable.
Rik <rik@octave.org>
parents:
15059
diff
changeset
|
172 |
13985
43cc49c7abd1
Use thread-safe atomic reference counting (GCC and MSVC).
Michael Goffioul <michael.goffioul@gmail.com>
parents:
13838
diff
changeset
|
173 USE_ATOMIC_REFCOUNT=false |
43cc49c7abd1
Use thread-safe atomic reference counting (GCC and MSVC).
Michael Goffioul <michael.goffioul@gmail.com>
parents:
13838
diff
changeset
|
174 AC_ARG_ENABLE(atomic-refcount, |
43cc49c7abd1
Use thread-safe atomic reference counting (GCC and MSVC).
Michael Goffioul <michael.goffioul@gmail.com>
parents:
13838
diff
changeset
|
175 [AS_HELP_STRING([--enable-atomic-refcount], |
15063
36cbcc37fdb8
Refactor configure.ac to make it more understandable.
Rik <rik@octave.org>
parents:
15059
diff
changeset
|
176 [use atomic operations for internal reference counting. This is required for thread-safe behavior. (default is no)])], |
13985
43cc49c7abd1
Use thread-safe atomic reference counting (GCC and MSVC).
Michael Goffioul <michael.goffioul@gmail.com>
parents:
13838
diff
changeset
|
177 [if test "$enableval" = yes; then USE_ATOMIC_REFCOUNT=true; fi], []) |
43cc49c7abd1
Use thread-safe atomic reference counting (GCC and MSVC).
Michael Goffioul <michael.goffioul@gmail.com>
parents:
13838
diff
changeset
|
178 if $USE_ATOMIC_REFCOUNT; then |
15063
36cbcc37fdb8
Refactor configure.ac to make it more understandable.
Rik <rik@octave.org>
parents:
15059
diff
changeset
|
179 AC_DEFINE(USE_ATOMIC_REFCOUNT, 1, [Define to 1 to use atomic operations for reference counting.]) |
13985
43cc49c7abd1
Use thread-safe atomic reference counting (GCC and MSVC).
Michael Goffioul <michael.goffioul@gmail.com>
parents:
13838
diff
changeset
|
180 fi |
43cc49c7abd1
Use thread-safe atomic reference counting (GCC and MSVC).
Michael Goffioul <michael.goffioul@gmail.com>
parents:
13838
diff
changeset
|
181 |
15063
36cbcc37fdb8
Refactor configure.ac to make it more understandable.
Rik <rik@octave.org>
parents:
15059
diff
changeset
|
182 ### Disable running Make in the doc directory. |
36cbcc37fdb8
Refactor configure.ac to make it more understandable.
Rik <rik@octave.org>
parents:
15059
diff
changeset
|
183 ### This is useful, for example, when building Octave on systems without TeX. |
36cbcc37fdb8
Refactor configure.ac to make it more understandable.
Rik <rik@octave.org>
parents:
15059
diff
changeset
|
184 |
10092
02453ee20140
allow building of docs to be disabled
John W. Eaton <jwe@octave.org>
parents:
10077
diff
changeset
|
185 DOCDIR=doc |
02453ee20140
allow building of docs to be disabled
John W. Eaton <jwe@octave.org>
parents:
10077
diff
changeset
|
186 AC_ARG_ENABLE(docs, |
02453ee20140
allow building of docs to be disabled
John W. Eaton <jwe@octave.org>
parents:
10077
diff
changeset
|
187 [AS_HELP_STRING([--enable-docs], [build documentation (default is yes)])], |
02453ee20140
allow building of docs to be disabled
John W. Eaton <jwe@octave.org>
parents:
10077
diff
changeset
|
188 [if test "$enableval" = no; then |
02453ee20140
allow building of docs to be disabled
John W. Eaton <jwe@octave.org>
parents:
10077
diff
changeset
|
189 DOCDIR= |
02453ee20140
allow building of docs to be disabled
John W. Eaton <jwe@octave.org>
parents:
10077
diff
changeset
|
190 warn_docs="building documentation disabled; make dist will fail" |
14605
28e53daab1f8
Cleanup on autoconf warnings
Jordi Gutiérrez Hermoso <jordigh@octave.org>
parents:
14579
diff
changeset
|
191 OCTAVE_CONFIGURE_WARNING([warn_docs]) |
10092
02453ee20140
allow building of docs to be disabled
John W. Eaton <jwe@octave.org>
parents:
10077
diff
changeset
|
192 fi], []) |
02453ee20140
allow building of docs to be disabled
John W. Eaton <jwe@octave.org>
parents:
10077
diff
changeset
|
193 AC_SUBST(DOCDIR) |
02453ee20140
allow building of docs to be disabled
John W. Eaton <jwe@octave.org>
parents:
10077
diff
changeset
|
194 |
5275 | 195 ### If possible, use a 64-bit integer type for array dimensions and indexing. |
196 | |
197 USE_64_BIT_IDX_T=false | |
198 OCTAVE_IDX_TYPE=int | |
199 AC_ARG_ENABLE(64, | |
5844 | 200 [AS_HELP_STRING([--enable-64], |
5857 | 201 [(EXPERIMENTAL) use 64-bit integers for array dimensions and indexing])], |
5275 | 202 [if test "$enableval" = yes; then USE_64_BIT_IDX_T=true; fi], []) |
203 if $USE_64_BIT_IDX_T; then | |
204 AC_CHECK_SIZEOF(void *) | |
205 AC_CHECK_SIZEOF(int) | |
206 AC_CHECK_SIZEOF(long) | |
207 if test $ac_cv_sizeof_void_p -eq 8; then | |
208 if test $ac_cv_sizeof_int -eq 8; then | |
209 OCTAVE_IDX_TYPE=int | |
210 elif test $ac_cv_sizeof_long -eq 8; then | |
211 OCTAVE_IDX_TYPE=long | |
15063
36cbcc37fdb8
Refactor configure.ac to make it more understandable.
Rik <rik@octave.org>
parents:
15059
diff
changeset
|
212 AC_DEFINE(IDX_TYPE_LONG, 1, [Define to 1 if octave index type is long.]) |
5275 | 213 else |
5857 | 214 warn_64_bit="no suitable type found for octave_idx_type so disabling 64-bit features" |
14605
28e53daab1f8
Cleanup on autoconf warnings
Jordi Gutiérrez Hermoso <jordigh@octave.org>
parents:
14579
diff
changeset
|
215 OCTAVE_CONFIGURE_WARNING([warn_64_bit]) |
5275 | 216 USE_64_BIT_IDX_T=false |
217 fi | |
218 else | |
15063
36cbcc37fdb8
Refactor configure.ac to make it more understandable.
Rik <rik@octave.org>
parents:
15059
diff
changeset
|
219 warn_64_bit="pointers are not 64-bits wide; disabling 64-bit features" |
14605
28e53daab1f8
Cleanup on autoconf warnings
Jordi Gutiérrez Hermoso <jordigh@octave.org>
parents:
14579
diff
changeset
|
220 OCTAVE_CONFIGURE_WARNING([warn_64_bit]) |
5275 | 221 USE_64_BIT_IDX_T=false |
222 fi | |
223 fi | |
224 AC_SUBST(OCTAVE_IDX_TYPE) | |
9648
11844593875a
eliminate oct-dlldefs.h and oct-types.h
John W. Eaton <jwe@octave.org>
parents:
9645
diff
changeset
|
225 AC_DEFINE_UNQUOTED(OCTAVE_IDX_TYPE, $OCTAVE_IDX_TYPE, |
15063
36cbcc37fdb8
Refactor configure.ac to make it more understandable.
Rik <rik@octave.org>
parents:
15059
diff
changeset
|
226 [Define to the type of octave_idx_type (64 or 32 bit signed integer).]) |
5275 | 227 if $USE_64_BIT_IDX_T; then |
15063
36cbcc37fdb8
Refactor configure.ac to make it more understandable.
Rik <rik@octave.org>
parents:
15059
diff
changeset
|
228 AC_DEFINE(USE_64_BIT_IDX_T, 1, [Define to 1 if using 64-bit integers for array dimensions and indexing.]) |
5275 | 229 fi |
230 AC_SUBST(USE_64_BIT_IDX_T) | |
231 | |
3215 | 232 ### It seems that there are some broken inline assembly functions in |
233 ### the GNU libc. Since I'm not sure how to test whether we are using | |
234 ### GNU libc, just disable them for all platforms. | |
235 | |
5844 | 236 AC_MSG_NOTICE([defining __NO_MATH_INLINES avoids buggy GNU libc exp function]) |
15063
36cbcc37fdb8
Refactor configure.ac to make it more understandable.
Rik <rik@octave.org>
parents:
15059
diff
changeset
|
237 AC_DEFINE(__NO_MATH_INLINES, 1, [Define to 1 if your version of GNU libc has buggy inline assembly code for math functions like exp.]) |
3215 | 238 |
15063
36cbcc37fdb8
Refactor configure.ac to make it more understandable.
Rik <rik@octave.org>
parents:
15059
diff
changeset
|
239 ### Determine which C++ compiler to use (we expect to find g++). |
869 | 240 |
405 | 241 AC_PROG_CXX |
242 AC_PROG_CXXCPP | |
869 | 243 |
15063
36cbcc37fdb8
Refactor configure.ac to make it more understandable.
Rik <rik@octave.org>
parents:
15059
diff
changeset
|
244 ### Check version number when using g++. |
869 | 245 |
2353 | 246 gxx_version=`$CXX -v 2>&1 | grep "^.*g.. version" | \ |
4368 | 247 sed -e 's/^.*g.. version *//' -e 's/cygnus-//' -e 's/egcs-//' -e 's/ .*//'` |
3107 | 248 |
405 | 249 case "$gxx_version" in |
9178
a6375c37dad4
update config stuff to gripe with g++-3.x
Jaroslav Hajek <highegg@gmail.com>
parents:
9176
diff
changeset
|
250 1.* | 2.[[0123456789]].* | 3.[[01234]].*) |
4843 | 251 AC_MSG_ERROR([g++ version $gxx_version will probably fail to compile Octave] |
252 ) | |
253 ;; | |
405 | 254 esac |
869 | 255 |
1894 | 256 CXX_VERSION= |
257 if test -n "$gxx_version"; then | |
258 CXX_VERSION="$gxx_version" | |
259 fi | |
260 AC_SUBST(CXX_VERSION) | |
261 | |
3107 | 262 OCTAVE_CXX_NEW_FRIEND_TEMPLATE_DECL |
3769 | 263 OCTAVE_CXX_ISO_COMPLIANT_LIBRARY |
5854 | 264 OCTAVE_CXX_BROKEN_REINTERPRET_CAST |
3107 | 265 |
15063
36cbcc37fdb8
Refactor configure.ac to make it more understandable.
Rik <rik@octave.org>
parents:
15059
diff
changeset
|
266 ### Determine which C compiler to use (we expect to find gcc). |
869 | 267 |
5 | 268 AC_PROG_CC |
405 | 269 AC_PROG_CPP |
832 | 270 AC_PROG_GCC_TRADITIONAL |
869 | 271 |
15063
36cbcc37fdb8
Refactor configure.ac to make it more understandable.
Rik <rik@octave.org>
parents:
15059
diff
changeset
|
272 ## Check for MSVC |
36cbcc37fdb8
Refactor configure.ac to make it more understandable.
Rik <rik@octave.org>
parents:
15059
diff
changeset
|
273 have_msvc=no |
36cbcc37fdb8
Refactor configure.ac to make it more understandable.
Rik <rik@octave.org>
parents:
15059
diff
changeset
|
274 case "$canonical_host_type" in |
36cbcc37fdb8
Refactor configure.ac to make it more understandable.
Rik <rik@octave.org>
parents:
15059
diff
changeset
|
275 *-*-msdosmsvc) |
36cbcc37fdb8
Refactor configure.ac to make it more understandable.
Rik <rik@octave.org>
parents:
15059
diff
changeset
|
276 have_msvc=yes |
36cbcc37fdb8
Refactor configure.ac to make it more understandable.
Rik <rik@octave.org>
parents:
15059
diff
changeset
|
277 ;; |
36cbcc37fdb8
Refactor configure.ac to make it more understandable.
Rik <rik@octave.org>
parents:
15059
diff
changeset
|
278 *-*-mingw*) |
36cbcc37fdb8
Refactor configure.ac to make it more understandable.
Rik <rik@octave.org>
parents:
15059
diff
changeset
|
279 AC_MSG_CHECKING([for MSVC compiler]) |
36cbcc37fdb8
Refactor configure.ac to make it more understandable.
Rik <rik@octave.org>
parents:
15059
diff
changeset
|
280 AC_PREPROC_IFELSE([AC_LANG_SOURCE([ |
36cbcc37fdb8
Refactor configure.ac to make it more understandable.
Rik <rik@octave.org>
parents:
15059
diff
changeset
|
281 #ifndef _MSC_VER |
36cbcc37fdb8
Refactor configure.ac to make it more understandable.
Rik <rik@octave.org>
parents:
15059
diff
changeset
|
282 #error "Not MSVC compiler" |
36cbcc37fdb8
Refactor configure.ac to make it more understandable.
Rik <rik@octave.org>
parents:
15059
diff
changeset
|
283 #endif |
36cbcc37fdb8
Refactor configure.ac to make it more understandable.
Rik <rik@octave.org>
parents:
15059
diff
changeset
|
284 ])], have_msvc=yes, have_msvc=no) |
36cbcc37fdb8
Refactor configure.ac to make it more understandable.
Rik <rik@octave.org>
parents:
15059
diff
changeset
|
285 AC_MSG_RESULT([$have_msvc]) |
36cbcc37fdb8
Refactor configure.ac to make it more understandable.
Rik <rik@octave.org>
parents:
15059
diff
changeset
|
286 ;; |
36cbcc37fdb8
Refactor configure.ac to make it more understandable.
Rik <rik@octave.org>
parents:
15059
diff
changeset
|
287 esac |
36cbcc37fdb8
Refactor configure.ac to make it more understandable.
Rik <rik@octave.org>
parents:
15059
diff
changeset
|
288 |
36cbcc37fdb8
Refactor configure.ac to make it more understandable.
Rik <rik@octave.org>
parents:
15059
diff
changeset
|
289 ### gnulib initialization |
9946 | 290 |
291 gl_EARLY | |
292 gl_INIT | |
293 | |
15063
36cbcc37fdb8
Refactor configure.ac to make it more understandable.
Rik <rik@octave.org>
parents:
15059
diff
changeset
|
294 ### Check version number when using gcc. |
869 | 295 |
2353 | 296 gcc_version=`$CC -v 2>&1 | grep "^.*gcc version" | \ |
3107 | 297 sed -e 's/^.*g.. version *//' -e 's/cygnus-//' -e 's/egcs-//'` |
405 | 298 case "$gcc_version" in |
9794
0d4613a736e9
convert build system to use automake and libtool
John W. Eaton <jwe@octave.org>
parents:
9787
diff
changeset
|
299 [12].*) |
3105 | 300 warn_gcc_version="gcc version $gcc_version is likely to cause problems" |
14605
28e53daab1f8
Cleanup on autoconf warnings
Jordi Gutiérrez Hermoso <jordigh@octave.org>
parents:
14579
diff
changeset
|
301 OCTAVE_CONFIGURE_WARNING([warn_gcc_version]) |
405 | 302 ;; |
5 | 303 esac |
869 | 304 |
1894 | 305 CC_VERSION= |
306 if test -n "$gcc_version"; then | |
307 CC_VERSION="$gcc_version" | |
308 fi | |
309 AC_SUBST(CC_VERSION) | |
310 | |
15063
36cbcc37fdb8
Refactor configure.ac to make it more understandable.
Rik <rik@octave.org>
parents:
15059
diff
changeset
|
311 ### Determine the compiler flag necessary to create dependencies |
3775 | 312 |
15063
36cbcc37fdb8
Refactor configure.ac to make it more understandable.
Rik <rik@octave.org>
parents:
15059
diff
changeset
|
313 ## Assume GCC. |
6087 | 314 INCLUDE_DEPS=true |
3775 | 315 DEPEND_FLAGS="-M" |
316 DEPEND_EXTRA_SED_PATTERN="" | |
6087 | 317 if test "$GCC" = yes; then |
318 true | |
319 else | |
320 case "$canonical_host_type" in | |
321 sparc-sun-solaris2* | i386-pc-solaris2*) | |
3775 | 322 DEPEND_FLAGS="-xM1" |
323 DEPEND_EXTRA_SED_PATTERN="-e '/\/opt\/SUNWspro/d'" | |
6087 | 324 ;; |
7451 | 325 *-*-msdosmsvc) |
326 ;; | |
10123
8590f3c51868
Fix a few MSVC-related problems and partially re-enable MSVC compilation.
Michael Goffioul <michael.goffioul@gmail.com>
parents:
10092
diff
changeset
|
327 *-*-mingw*) |
8590f3c51868
Fix a few MSVC-related problems and partially re-enable MSVC compilation.
Michael Goffioul <michael.goffioul@gmail.com>
parents:
10092
diff
changeset
|
328 if test "$have_msvc" = "no"; then |
12451 | 329 INCLUDE_DEPS=false |
10123
8590f3c51868
Fix a few MSVC-related problems and partially re-enable MSVC compilation.
Michael Goffioul <michael.goffioul@gmail.com>
parents:
10092
diff
changeset
|
330 fi |
8590f3c51868
Fix a few MSVC-related problems and partially re-enable MSVC compilation.
Michael Goffioul <michael.goffioul@gmail.com>
parents:
10092
diff
changeset
|
331 ;; |
6087 | 332 *) |
333 INCLUDE_DEPS=false | |
334 ;; | |
335 esac | |
336 fi | |
337 AC_SUBST(INCLUDE_DEPS) | |
3775 | 338 AC_SUBST(DEPEND_FLAGS) |
339 AC_SUBST(DEPEND_EXTRA_SED_PATTERN) | |
340 | |
15063
36cbcc37fdb8
Refactor configure.ac to make it more understandable.
Rik <rik@octave.org>
parents:
15059
diff
changeset
|
341 ### Check for pthread library |
36cbcc37fdb8
Refactor configure.ac to make it more understandable.
Rik <rik@octave.org>
parents:
15059
diff
changeset
|
342 |
10951 | 343 AX_PTHREAD |
15063
36cbcc37fdb8
Refactor configure.ac to make it more understandable.
Rik <rik@octave.org>
parents:
15059
diff
changeset
|
344 ## Include pthread libs and flags here in case other tests need them. |
36cbcc37fdb8
Refactor configure.ac to make it more understandable.
Rik <rik@octave.org>
parents:
15059
diff
changeset
|
345 ## They seem to be required for the OpenGL tests on Debian systems. |
9970
cc7ea6083774
configure.ac: use pthread flags and libs for tests
John W. Eaton <jwe@octave.org>
parents:
9946
diff
changeset
|
346 LIBS="$PTHREAD_LIBS $LIBS" |
cc7ea6083774
configure.ac: use pthread flags and libs for tests
John W. Eaton <jwe@octave.org>
parents:
9946
diff
changeset
|
347 CFLAGS="$CFLAGS $PTHREAD_CFLAGS" |
9488
ee572cdd4b97
add configure checks for pthread library and compiler flags
John W. Eaton <jwe@octave.org>
parents:
9424
diff
changeset
|
348 |
9603
8bea4e89326f
implement FLOAT_STORE to allow safer complex comparisons on x87
Jaroslav Hajek <highegg@gmail.com>
parents:
9596
diff
changeset
|
349 ### When compiling math for x87, problems may arise in some code comparing |
8bea4e89326f
implement FLOAT_STORE to allow safer complex comparisons on x87
Jaroslav Hajek <highegg@gmail.com>
parents:
9596
diff
changeset
|
350 ### floating-point intermediate results. |
8bea4e89326f
implement FLOAT_STORE to allow safer complex comparisons on x87
Jaroslav Hajek <highegg@gmail.com>
parents:
9596
diff
changeset
|
351 ### Generally, it helps to store the result in a local volatile variable, |
8bea4e89326f
implement FLOAT_STORE to allow safer complex comparisons on x87
Jaroslav Hajek <highegg@gmail.com>
parents:
9596
diff
changeset
|
352 ### but it also degrades performance. |
8bea4e89326f
implement FLOAT_STORE to allow safer complex comparisons on x87
Jaroslav Hajek <highegg@gmail.com>
parents:
9596
diff
changeset
|
353 ### Thus, we provide a FLOAT_TRUNCATE macro that may be defined to "volatile" |
8bea4e89326f
implement FLOAT_STORE to allow safer complex comparisons on x87
Jaroslav Hajek <highegg@gmail.com>
parents:
9596
diff
changeset
|
354 ### when compiling for x87 target, or left empty for modern SSE math, that |
8bea4e89326f
implement FLOAT_STORE to allow safer complex comparisons on x87
Jaroslav Hajek <highegg@gmail.com>
parents:
9596
diff
changeset
|
355 ### doesn't suffer from this problem at all. |
8bea4e89326f
implement FLOAT_STORE to allow safer complex comparisons on x87
Jaroslav Hajek <highegg@gmail.com>
parents:
9596
diff
changeset
|
356 AC_ARG_ENABLE(float-truncate, |
8bea4e89326f
implement FLOAT_STORE to allow safer complex comparisons on x87
Jaroslav Hajek <highegg@gmail.com>
parents:
9596
diff
changeset
|
357 [AS_HELP_STRING([--enable-float-truncate], |
8bea4e89326f
implement FLOAT_STORE to allow safer complex comparisons on x87
Jaroslav Hajek <highegg@gmail.com>
parents:
9596
diff
changeset
|
358 [enables truncating intermediate FP results.])], |
8bea4e89326f
implement FLOAT_STORE to allow safer complex comparisons on x87
Jaroslav Hajek <highegg@gmail.com>
parents:
9596
diff
changeset
|
359 [if test "$enableval" = yes; then ac_float_truncate=volatile; |
8bea4e89326f
implement FLOAT_STORE to allow safer complex comparisons on x87
Jaroslav Hajek <highegg@gmail.com>
parents:
9596
diff
changeset
|
360 else ac_float_truncate=; fi], |
8bea4e89326f
implement FLOAT_STORE to allow safer complex comparisons on x87
Jaroslav Hajek <highegg@gmail.com>
parents:
9596
diff
changeset
|
361 ac_float_truncate=) |
8bea4e89326f
implement FLOAT_STORE to allow safer complex comparisons on x87
Jaroslav Hajek <highegg@gmail.com>
parents:
9596
diff
changeset
|
362 |
8bea4e89326f
implement FLOAT_STORE to allow safer complex comparisons on x87
Jaroslav Hajek <highegg@gmail.com>
parents:
9596
diff
changeset
|
363 AC_DEFINE_UNQUOTED(FLOAT_TRUNCATE, $ac_float_truncate, |
15063
36cbcc37fdb8
Refactor configure.ac to make it more understandable.
Rik <rik@octave.org>
parents:
15059
diff
changeset
|
364 [Define to volatile if you need to truncate intermediate FP results.]) |
36cbcc37fdb8
Refactor configure.ac to make it more understandable.
Rik <rik@octave.org>
parents:
15059
diff
changeset
|
365 |
36cbcc37fdb8
Refactor configure.ac to make it more understandable.
Rik <rik@octave.org>
parents:
15059
diff
changeset
|
366 ### Determine extra CFLAGS that may be necessary for Octave. |
9603
8bea4e89326f
implement FLOAT_STORE to allow safer complex comparisons on x87
Jaroslav Hajek <highegg@gmail.com>
parents:
9596
diff
changeset
|
367 |
15063
36cbcc37fdb8
Refactor configure.ac to make it more understandable.
Rik <rik@octave.org>
parents:
15059
diff
changeset
|
368 ## On Intel systems with gcc, we may need to compile with -mieee-fp |
36cbcc37fdb8
Refactor configure.ac to make it more understandable.
Rik <rik@octave.org>
parents:
15059
diff
changeset
|
369 ## and -ffloat-store to get full support for IEEE floating point. |
36cbcc37fdb8
Refactor configure.ac to make it more understandable.
Rik <rik@octave.org>
parents:
15059
diff
changeset
|
370 ## |
36cbcc37fdb8
Refactor configure.ac to make it more understandable.
Rik <rik@octave.org>
parents:
15059
diff
changeset
|
371 ## On Alpha/OSF systems, we need -mieee. |
869 | 372 |
3126 | 373 ieee_fp_flag= |
350 | 374 case "$canonical_host_type" in |
6102 | 375 ## Keep this pattern first, so that it is preferred over the |
376 ## following pattern for x86. | |
3887 | 377 i[[3456789]]86-*-*) |
5076 | 378 if test "$GCC" = yes; then |
379 OCTAVE_CC_FLAG(-mieee-fp, [ | |
380 ieee_fp_flag=-mieee-fp | |
381 XTRA_CFLAGS="$XTRA_CFLAGS -mieee-fp" | |
5844 | 382 AC_MSG_NOTICE([adding -mieee-fp to XTRA_CFLAGS])]) |
3126 | 383 |
15063
36cbcc37fdb8
Refactor configure.ac to make it more understandable.
Rik <rik@octave.org>
parents:
15059
diff
changeset
|
384 ## OCTAVE_CC_FLAG(-ffloat-store, [ |
36cbcc37fdb8
Refactor configure.ac to make it more understandable.
Rik <rik@octave.org>
parents:
15059
diff
changeset
|
385 ## float_store_flag=-ffloat-store |
36cbcc37fdb8
Refactor configure.ac to make it more understandable.
Rik <rik@octave.org>
parents:
15059
diff
changeset
|
386 ## XTRA_CFLAGS="$XTRA_CFLAGS -ffloat-store" |
36cbcc37fdb8
Refactor configure.ac to make it more understandable.
Rik <rik@octave.org>
parents:
15059
diff
changeset
|
387 ## AC_MSG_RESULT([adding -ffloat-store to XTRA_CFLAGS])]) |
5076 | 388 fi |
389 if test "$GXX" = yes; then | |
390 OCTAVE_CXX_FLAG(-mieee-fp, [ | |
12451 | 391 ieee_fp_flag=-mieee-fp |
392 XTRA_CXXFLAGS="$XTRA_CXXFLAGS -mieee-fp" | |
393 AC_MSG_NOTICE([adding -mieee-fp to XTRA_CXXFLAGS])]) | |
5076 | 394 |
15063
36cbcc37fdb8
Refactor configure.ac to make it more understandable.
Rik <rik@octave.org>
parents:
15059
diff
changeset
|
395 ## OCTAVE_CXX_FLAG(-ffloat-store, [ |
36cbcc37fdb8
Refactor configure.ac to make it more understandable.
Rik <rik@octave.org>
parents:
15059
diff
changeset
|
396 ## float_store_flag=-ffloat-store |
36cbcc37fdb8
Refactor configure.ac to make it more understandable.
Rik <rik@octave.org>
parents:
15059
diff
changeset
|
397 ## XTRA_CXXFLAGS="$XTRA_CXXFLAGS -ffloat-store" |
36cbcc37fdb8
Refactor configure.ac to make it more understandable.
Rik <rik@octave.org>
parents:
15059
diff
changeset
|
398 ## AC_MSG_RESULT([adding -ffloat-store to XTRA_CXXFLAGS])]) |
5076 | 399 fi |
324 | 400 ;; |
3127 | 401 alpha*-*-*) |
4284 | 402 if test "$GCC" = yes; then |
4812 | 403 OCTAVE_CC_FLAG(-mieee, [ |
12451 | 404 ieee_fp_flag=-mieee |
405 XTRA_CFLAGS="$XTRA_CFLAGS -mieee" | |
406 AC_MSG_NOTICE([adding -mieee to XTRA_CFLAGS])]) | |
5076 | 407 else |
408 OCTAVE_CC_FLAG(-ieee, [ | |
12451 | 409 ieee_fp_flag=-ieee |
410 XTRA_CFLAGS="$XTRA_CFLAGS -ieee" | |
411 AC_MSG_NOTICE([adding -ieee to XTRA_CFLAGS])]) | |
5076 | 412 fi |
413 if test "$GXX" = yes; then | |
4812 | 414 OCTAVE_CXX_FLAG(-mieee, [ |
12451 | 415 ieee_fp_flag=-mieee |
416 XTRA_CXXFLAGS="$XTRA_CXXFLAGS -mieee" | |
417 AC_MSG_NOTICE([adding -mieee to XTRA_CXXFLAGS])]) | |
4284 | 418 else |
419 OCTAVE_CXX_FLAG(-ieee, [ | |
12451 | 420 ieee_fp_flag=-ieee |
421 XTRA_CXXFLAGS="$XTRA_CXXFLAGS -ieee" | |
422 AC_MSG_NOTICE([adding -ieee to XTRA_CXXFLAGS])]) | |
4284 | 423 fi |
2020 | 424 ;; |
3176 | 425 *ibm-aix4*) |
3351 | 426 OCTAVE_CC_FLAG(-mminimal-toc, [ |
427 XTRA_CFLAGS="$XTRA_CFLAGS -mminimal-toc"]) | |
3176 | 428 |
3351 | 429 OCTAVE_CXX_FLAG(-mminimal-toc, [ |
430 XTRA_CXXFLAGS="$XTRA_CXXFLAGS -mminimal-toc"]) | |
3176 | 431 ;; |
324 | 432 esac |
3126 | 433 |
15063
36cbcc37fdb8
Refactor configure.ac to make it more understandable.
Rik <rik@octave.org>
parents:
15059
diff
changeset
|
434 AC_SUBST(XTRA_CFLAGS) |
36cbcc37fdb8
Refactor configure.ac to make it more understandable.
Rik <rik@octave.org>
parents:
15059
diff
changeset
|
435 AC_SUBST(XTRA_CXXFLAGS) |
36cbcc37fdb8
Refactor configure.ac to make it more understandable.
Rik <rik@octave.org>
parents:
15059
diff
changeset
|
436 |
36cbcc37fdb8
Refactor configure.ac to make it more understandable.
Rik <rik@octave.org>
parents:
15059
diff
changeset
|
437 ### Test whether the compiler supports OpenMP. This is experimental so disable |
36cbcc37fdb8
Refactor configure.ac to make it more understandable.
Rik <rik@octave.org>
parents:
15059
diff
changeset
|
438 ### it by default. Enable it with the flag --enable-openmp. |
36cbcc37fdb8
Refactor configure.ac to make it more understandable.
Rik <rik@octave.org>
parents:
15059
diff
changeset
|
439 |
10471
bcabc1c4f20c
Add detection of OpenMP support to configure. Disabled by default
David Bateman <dbateman@free.fr>
parents:
10456
diff
changeset
|
440 USE_OPENMP=false |
bcabc1c4f20c
Add detection of OpenMP support to configure. Disabled by default
David Bateman <dbateman@free.fr>
parents:
10456
diff
changeset
|
441 AC_ARG_ENABLE(openmp, |
bcabc1c4f20c
Add detection of OpenMP support to configure. Disabled by default
David Bateman <dbateman@free.fr>
parents:
10456
diff
changeset
|
442 [AS_HELP_STRING([--enable-openmp], |
bcabc1c4f20c
Add detection of OpenMP support to configure. Disabled by default
David Bateman <dbateman@free.fr>
parents:
10456
diff
changeset
|
443 [(EXPERIMENTAL) use OpenMP SMP multi-threading])], |
bcabc1c4f20c
Add detection of OpenMP support to configure. Disabled by default
David Bateman <dbateman@free.fr>
parents:
10456
diff
changeset
|
444 [if test "$enableval" = yes; then USE_OPENMP=true; fi], []) |
bcabc1c4f20c
Add detection of OpenMP support to configure. Disabled by default
David Bateman <dbateman@free.fr>
parents:
10456
diff
changeset
|
445 if $USE_OPENMP; then |
bcabc1c4f20c
Add detection of OpenMP support to configure. Disabled by default
David Bateman <dbateman@free.fr>
parents:
10456
diff
changeset
|
446 case "$canonical_host_type" in |
bcabc1c4f20c
Add detection of OpenMP support to configure. Disabled by default
David Bateman <dbateman@free.fr>
parents:
10456
diff
changeset
|
447 *-*-mingw* | *-*-cygwin* | *-*-gnu*) |
bcabc1c4f20c
Add detection of OpenMP support to configure. Disabled by default
David Bateman <dbateman@free.fr>
parents:
10456
diff
changeset
|
448 OCTAVE_CHECK_OPENMP(-fopenmp) |
bcabc1c4f20c
Add detection of OpenMP support to configure. Disabled by default
David Bateman <dbateman@free.fr>
parents:
10456
diff
changeset
|
449 ;; |
bcabc1c4f20c
Add detection of OpenMP support to configure. Disabled by default
David Bateman <dbateman@free.fr>
parents:
10456
diff
changeset
|
450 *-*-msdosmsvc) |
15063
36cbcc37fdb8
Refactor configure.ac to make it more understandable.
Rik <rik@octave.org>
parents:
15059
diff
changeset
|
451 ## FIXME: is this the right flag for MSVC? |
10471
bcabc1c4f20c
Add detection of OpenMP support to configure. Disabled by default
David Bateman <dbateman@free.fr>
parents:
10456
diff
changeset
|
452 OCTAVE_CHECK_OPENMP(-openmp) |
bcabc1c4f20c
Add detection of OpenMP support to configure. Disabled by default
David Bateman <dbateman@free.fr>
parents:
10456
diff
changeset
|
453 ;; |
bcabc1c4f20c
Add detection of OpenMP support to configure. Disabled by default
David Bateman <dbateman@free.fr>
parents:
10456
diff
changeset
|
454 ## Add other compilers supporting OpenMP here |
bcabc1c4f20c
Add detection of OpenMP support to configure. Disabled by default
David Bateman <dbateman@free.fr>
parents:
10456
diff
changeset
|
455 esac |
bcabc1c4f20c
Add detection of OpenMP support to configure. Disabled by default
David Bateman <dbateman@free.fr>
parents:
10456
diff
changeset
|
456 fi |
bcabc1c4f20c
Add detection of OpenMP support to configure. Disabled by default
David Bateman <dbateman@free.fr>
parents:
10456
diff
changeset
|
457 |
15063
36cbcc37fdb8
Refactor configure.ac to make it more understandable.
Rik <rik@octave.org>
parents:
15059
diff
changeset
|
458 dnl FIXME: This is OS-specific tests. Can this be moved further down in |
36cbcc37fdb8
Refactor configure.ac to make it more understandable.
Rik <rik@octave.org>
parents:
15059
diff
changeset
|
459 dnl configure.ac to reside with other similar tests? |
1667 | 460 ### Use -static if compiling on Alpha OSF/1 1.3 systems. |
461 | |
462 case "$canonical_host_type" in | |
3127 | 463 alpha*-dec-osf1.3) |
1667 | 464 LD_STATIC_FLAG=-static |
465 ;; | |
466 esac | |
1679 | 467 if test -n "$LD_STATIC_FLAG"; then |
5844 | 468 AC_MSG_NOTICE([defining LD_STATIC_FLAG to be $LD_STATIC_FLAG]) |
1679 | 469 fi |
470 AC_SUBST(LD_STATIC_FLAG) | |
1667 | 471 |
4094 | 472 ### Defaults for cross compiling. BUILD_CC and BUILD_CXX are |
473 ### the compilers that we use for building tools on the build system. | |
4098 | 474 ### For now, we assume that the only cross compiling we can do is |
4298 | 475 ### with gcc on a Unixy system, but the dedicated hacker can override these. |
4094 | 476 |
477 if test "$cross_compiling" = yes; then | |
478 BUILD_CC="gcc" | |
479 BUILD_CFLAGS="-O2 -g" | |
480 BUILD_CXX="g++" | |
481 BUILD_CXXFLAGS="-O2 -g" | |
4298 | 482 BUILD_LDFLAGS="" |
4098 | 483 BUILD_EXEEXT="" |
4094 | 484 else |
4298 | 485 BUILD_CC='$(CC)' |
486 BUILD_CFLAGS='$(CFLAGS)' | |
487 BUILD_CXX='$(CXX)' | |
488 BUILD_CXXFLAGS='$(CXXFLAGS)' | |
489 BUILD_LDFLAGS='$(LDFLAGS)' | |
15071
c53c28c7c811
configure.ac: Comment out unneeded special build flags for Sun C++ compiler.
Rik <rik@octave.org>
parents:
15063
diff
changeset
|
490 ## 2012/07/31: Commented out special build requirements |
c53c28c7c811
configure.ac: Comment out unneeded special build flags for Sun C++ compiler.
Rik <rik@octave.org>
parents:
15063
diff
changeset
|
491 ## for Sun compiler now that gendoc.cc is no longer part of build. |
c53c28c7c811
configure.ac: Comment out unneeded special build flags for Sun C++ compiler.
Rik <rik@octave.org>
parents:
15063
diff
changeset
|
492 ################################################################## |
c53c28c7c811
configure.ac: Comment out unneeded special build flags for Sun C++ compiler.
Rik <rik@octave.org>
parents:
15063
diff
changeset
|
493 #case "$canonical_host_type" in |
c53c28c7c811
configure.ac: Comment out unneeded special build flags for Sun C++ compiler.
Rik <rik@octave.org>
parents:
15063
diff
changeset
|
494 # sparc-sun-solaris2*) |
c53c28c7c811
configure.ac: Comment out unneeded special build flags for Sun C++ compiler.
Rik <rik@octave.org>
parents:
15063
diff
changeset
|
495 # if test "$GCC" != yes; then |
c53c28c7c811
configure.ac: Comment out unneeded special build flags for Sun C++ compiler.
Rik <rik@octave.org>
parents:
15063
diff
changeset
|
496 # ## The Sun C++ compiler never seems to complete compiling |
c53c28c7c811
configure.ac: Comment out unneeded special build flags for Sun C++ compiler.
Rik <rik@octave.org>
parents:
15063
diff
changeset
|
497 # ## gendoc.cc unless we reduce the optimization level... |
c53c28c7c811
configure.ac: Comment out unneeded special build flags for Sun C++ compiler.
Rik <rik@octave.org>
parents:
15063
diff
changeset
|
498 # ## BUILD_CXXFLAGS="-g -O1" |
c53c28c7c811
configure.ac: Comment out unneeded special build flags for Sun C++ compiler.
Rik <rik@octave.org>
parents:
15063
diff
changeset
|
499 # fi |
c53c28c7c811
configure.ac: Comment out unneeded special build flags for Sun C++ compiler.
Rik <rik@octave.org>
parents:
15063
diff
changeset
|
500 # ;; |
c53c28c7c811
configure.ac: Comment out unneeded special build flags for Sun C++ compiler.
Rik <rik@octave.org>
parents:
15063
diff
changeset
|
501 #esac |
4298 | 502 BUILD_EXEEXT='$(EXEEXT)' |
4094 | 503 fi |
504 | |
505 AC_ARG_VAR(BUILD_CC, [build system C compiler (used if cross compiling)]) | |
506 AC_ARG_VAR(BUILD_CFLAGS, [build system C compiler flags (used if cross compiling)]) | |
507 AC_ARG_VAR(BUILD_CXX, [build system C++ compiler (used if cross compiling)]) | |
508 AC_ARG_VAR(BUILD_CXXFLAGS, [build system C++ compiler flags (used if cross compiling)]) | |
4298 | 509 AC_ARG_VAR(BUILD_LDFLAGS, [build system C++ compiler link flags (used if cross compiling)]) |
510 AC_ARG_VAR(BUILD_EXEEXT, [build system executable extension (used if cross compiling)]) | |
3222 | 511 |
3232 | 512 dnl This is bogus. We shouldn't have to explicitly add libc too! |
9596
f26229391ea1
configure.in, aclocal.m4: check fortran integer size
John W. Eaton <jwe@octave.org>
parents:
9583
diff
changeset
|
513 dnl Keep this check before the check for the Fortran compiler, |
f26229391ea1
configure.in, aclocal.m4: check fortran integer size
John W. Eaton <jwe@octave.org>
parents:
9583
diff
changeset
|
514 dnl in case -lm is needed to compile Fortran programs. |
3232 | 515 |
516 ### Look for math library. If found, this will add -lm to LIBS. | |
517 | |
518 case "$canonical_host_type" in | |
519 *-*-linux*) | |
520 AC_CHECK_LIB(m, sin, , , -lc) | |
521 ;; | |
522 *) | |
523 AC_CHECK_LIB(m, sin) | |
524 ;; | |
525 esac | |
526 | |
15063
36cbcc37fdb8
Refactor configure.ac to make it more understandable.
Rik <rik@octave.org>
parents:
15059
diff
changeset
|
527 ### Determine the Fortran compiler and how to invoke it |
36cbcc37fdb8
Refactor configure.ac to make it more understandable.
Rik <rik@octave.org>
parents:
15059
diff
changeset
|
528 |
9596
f26229391ea1
configure.in, aclocal.m4: check fortran integer size
John W. Eaton <jwe@octave.org>
parents:
9583
diff
changeset
|
529 ## Default FFLAGS is -O. |
f26229391ea1
configure.in, aclocal.m4: check fortran integer size
John W. Eaton <jwe@octave.org>
parents:
9583
diff
changeset
|
530 if test "x$FFLAGS" = x; then |
f26229391ea1
configure.in, aclocal.m4: check fortran integer size
John W. Eaton <jwe@octave.org>
parents:
9583
diff
changeset
|
531 FFLAGS="-O" |
f26229391ea1
configure.in, aclocal.m4: check fortran integer size
John W. Eaton <jwe@octave.org>
parents:
9583
diff
changeset
|
532 fi |
f26229391ea1
configure.in, aclocal.m4: check fortran integer size
John W. Eaton <jwe@octave.org>
parents:
9583
diff
changeset
|
533 |
f26229391ea1
configure.in, aclocal.m4: check fortran integer size
John W. Eaton <jwe@octave.org>
parents:
9583
diff
changeset
|
534 ## the F77 variable, if set, overrides AC_PROG_F77 automatically |
f26229391ea1
configure.in, aclocal.m4: check fortran integer size
John W. Eaton <jwe@octave.org>
parents:
9583
diff
changeset
|
535 AC_PROG_F77 |
f26229391ea1
configure.in, aclocal.m4: check fortran integer size
John W. Eaton <jwe@octave.org>
parents:
9583
diff
changeset
|
536 AC_F77_LIBRARY_LDFLAGS |
f26229391ea1
configure.in, aclocal.m4: check fortran integer size
John W. Eaton <jwe@octave.org>
parents:
9583
diff
changeset
|
537 AC_F77_DUMMY_MAIN |
f26229391ea1
configure.in, aclocal.m4: check fortran integer size
John W. Eaton <jwe@octave.org>
parents:
9583
diff
changeset
|
538 AC_F77_WRAPPERS |
f26229391ea1
configure.in, aclocal.m4: check fortran integer size
John W. Eaton <jwe@octave.org>
parents:
9583
diff
changeset
|
539 |
f26229391ea1
configure.in, aclocal.m4: check fortran integer size
John W. Eaton <jwe@octave.org>
parents:
9583
diff
changeset
|
540 F77_TOLOWER=true |
f26229391ea1
configure.in, aclocal.m4: check fortran integer size
John W. Eaton <jwe@octave.org>
parents:
9583
diff
changeset
|
541 F77_APPEND_UNDERSCORE=true |
f26229391ea1
configure.in, aclocal.m4: check fortran integer size
John W. Eaton <jwe@octave.org>
parents:
9583
diff
changeset
|
542 F77_APPEND_EXTRA_UNDERSCORE=true |
f26229391ea1
configure.in, aclocal.m4: check fortran integer size
John W. Eaton <jwe@octave.org>
parents:
9583
diff
changeset
|
543 |
f26229391ea1
configure.in, aclocal.m4: check fortran integer size
John W. Eaton <jwe@octave.org>
parents:
9583
diff
changeset
|
544 case "$ac_cv_f77_mangling" in |
f26229391ea1
configure.in, aclocal.m4: check fortran integer size
John W. Eaton <jwe@octave.org>
parents:
9583
diff
changeset
|
545 "upper case") F77_TOLOWER=false ;; |
f26229391ea1
configure.in, aclocal.m4: check fortran integer size
John W. Eaton <jwe@octave.org>
parents:
9583
diff
changeset
|
546 esac |
f26229391ea1
configure.in, aclocal.m4: check fortran integer size
John W. Eaton <jwe@octave.org>
parents:
9583
diff
changeset
|
547 case "$ac_cv_f77_mangling" in |
f26229391ea1
configure.in, aclocal.m4: check fortran integer size
John W. Eaton <jwe@octave.org>
parents:
9583
diff
changeset
|
548 "no underscore") F77_APPEND_UNDERSCORE=false ;; |
f26229391ea1
configure.in, aclocal.m4: check fortran integer size
John W. Eaton <jwe@octave.org>
parents:
9583
diff
changeset
|
549 esac |
f26229391ea1
configure.in, aclocal.m4: check fortran integer size
John W. Eaton <jwe@octave.org>
parents:
9583
diff
changeset
|
550 case "$ac_cv_f77_mangling" in |
f26229391ea1
configure.in, aclocal.m4: check fortran integer size
John W. Eaton <jwe@octave.org>
parents:
9583
diff
changeset
|
551 "no extra underscore") F77_APPEND_EXTRA_UNDERSCORE=false ;; |
f26229391ea1
configure.in, aclocal.m4: check fortran integer size
John W. Eaton <jwe@octave.org>
parents:
9583
diff
changeset
|
552 esac |
f26229391ea1
configure.in, aclocal.m4: check fortran integer size
John W. Eaton <jwe@octave.org>
parents:
9583
diff
changeset
|
553 |
f26229391ea1
configure.in, aclocal.m4: check fortran integer size
John W. Eaton <jwe@octave.org>
parents:
9583
diff
changeset
|
554 case "$canonical_host_type" in |
f26229391ea1
configure.in, aclocal.m4: check fortran integer size
John W. Eaton <jwe@octave.org>
parents:
9583
diff
changeset
|
555 i[[3456789]]86-*-*) |
f26229391ea1
configure.in, aclocal.m4: check fortran integer size
John W. Eaton <jwe@octave.org>
parents:
9583
diff
changeset
|
556 if test "$ac_cv_f77_compiler_gnu" = yes; then |
f26229391ea1
configure.in, aclocal.m4: check fortran integer size
John W. Eaton <jwe@octave.org>
parents:
9583
diff
changeset
|
557 OCTAVE_F77_FLAG(-mieee-fp) |
f26229391ea1
configure.in, aclocal.m4: check fortran integer size
John W. Eaton <jwe@octave.org>
parents:
9583
diff
changeset
|
558 ### OCTAVE_F77_FLAG(-ffloat-store) |
f26229391ea1
configure.in, aclocal.m4: check fortran integer size
John W. Eaton <jwe@octave.org>
parents:
9583
diff
changeset
|
559 fi |
f26229391ea1
configure.in, aclocal.m4: check fortran integer size
John W. Eaton <jwe@octave.org>
parents:
9583
diff
changeset
|
560 ;; |
f26229391ea1
configure.in, aclocal.m4: check fortran integer size
John W. Eaton <jwe@octave.org>
parents:
9583
diff
changeset
|
561 alpha*-*-*) |
f26229391ea1
configure.in, aclocal.m4: check fortran integer size
John W. Eaton <jwe@octave.org>
parents:
9583
diff
changeset
|
562 if test "$ac_cv_f77_compiler_gnu" = yes; then |
f26229391ea1
configure.in, aclocal.m4: check fortran integer size
John W. Eaton <jwe@octave.org>
parents:
9583
diff
changeset
|
563 OCTAVE_F77_FLAG(-mieee) |
f26229391ea1
configure.in, aclocal.m4: check fortran integer size
John W. Eaton <jwe@octave.org>
parents:
9583
diff
changeset
|
564 else |
f26229391ea1
configure.in, aclocal.m4: check fortran integer size
John W. Eaton <jwe@octave.org>
parents:
9583
diff
changeset
|
565 OCTAVE_F77_FLAG(-ieee) |
f26229391ea1
configure.in, aclocal.m4: check fortran integer size
John W. Eaton <jwe@octave.org>
parents:
9583
diff
changeset
|
566 OCTAVE_F77_FLAG(-fpe1) |
f26229391ea1
configure.in, aclocal.m4: check fortran integer size
John W. Eaton <jwe@octave.org>
parents:
9583
diff
changeset
|
567 fi |
f26229391ea1
configure.in, aclocal.m4: check fortran integer size
John W. Eaton <jwe@octave.org>
parents:
9583
diff
changeset
|
568 ;; |
f26229391ea1
configure.in, aclocal.m4: check fortran integer size
John W. Eaton <jwe@octave.org>
parents:
9583
diff
changeset
|
569 powerpc-apple-machten*) |
f26229391ea1
configure.in, aclocal.m4: check fortran integer size
John W. Eaton <jwe@octave.org>
parents:
9583
diff
changeset
|
570 FFLAGS= |
f26229391ea1
configure.in, aclocal.m4: check fortran integer size
John W. Eaton <jwe@octave.org>
parents:
9583
diff
changeset
|
571 ;; |
f26229391ea1
configure.in, aclocal.m4: check fortran integer size
John W. Eaton <jwe@octave.org>
parents:
9583
diff
changeset
|
572 esac |
f26229391ea1
configure.in, aclocal.m4: check fortran integer size
John W. Eaton <jwe@octave.org>
parents:
9583
diff
changeset
|
573 |
f26229391ea1
configure.in, aclocal.m4: check fortran integer size
John W. Eaton <jwe@octave.org>
parents:
9583
diff
changeset
|
574 if test -n "$FFLAGS"; then |
f26229391ea1
configure.in, aclocal.m4: check fortran integer size
John W. Eaton <jwe@octave.org>
parents:
9583
diff
changeset
|
575 AC_MSG_NOTICE([defining FFLAGS to be $FFLAGS]) |
f26229391ea1
configure.in, aclocal.m4: check fortran integer size
John W. Eaton <jwe@octave.org>
parents:
9583
diff
changeset
|
576 fi |
f26229391ea1
configure.in, aclocal.m4: check fortran integer size
John W. Eaton <jwe@octave.org>
parents:
9583
diff
changeset
|
577 |
f26229391ea1
configure.in, aclocal.m4: check fortran integer size
John W. Eaton <jwe@octave.org>
parents:
9583
diff
changeset
|
578 AC_SUBST(F77_TOLOWER) |
f26229391ea1
configure.in, aclocal.m4: check fortran integer size
John W. Eaton <jwe@octave.org>
parents:
9583
diff
changeset
|
579 AC_SUBST(F77_APPEND_UNDERSCORE) |
f26229391ea1
configure.in, aclocal.m4: check fortran integer size
John W. Eaton <jwe@octave.org>
parents:
9583
diff
changeset
|
580 AC_SUBST(F77_APPEND_EXTRA_UNDERSCORE) |
f26229391ea1
configure.in, aclocal.m4: check fortran integer size
John W. Eaton <jwe@octave.org>
parents:
9583
diff
changeset
|
581 |
f26229391ea1
configure.in, aclocal.m4: check fortran integer size
John W. Eaton <jwe@octave.org>
parents:
9583
diff
changeset
|
582 if test -z "$F77"; then |
15063
36cbcc37fdb8
Refactor configure.ac to make it more understandable.
Rik <rik@octave.org>
parents:
15059
diff
changeset
|
583 AC_MSG_ERROR([in order to build Octave, you must have a compatible Fortran compiler or wrapper script for f2c that functions as a Fortran compiler installed and in your path. See the file INSTALL for more information.]) |
9596
f26229391ea1
configure.in, aclocal.m4: check fortran integer size
John W. Eaton <jwe@octave.org>
parents:
9583
diff
changeset
|
584 fi |
f26229391ea1
configure.in, aclocal.m4: check fortran integer size
John W. Eaton <jwe@octave.org>
parents:
9583
diff
changeset
|
585 |
14550
bc4c574ab3b6
Add configure check for isnan in fortran.
Carlo de Falco <cdf@users.sourceforge.net>
parents:
14398
diff
changeset
|
586 OCTAVE_CHECK_FORTRAN_HAVE_ISNAN |
bc4c574ab3b6
Add configure check for isnan in fortran.
Carlo de Falco <cdf@users.sourceforge.net>
parents:
14398
diff
changeset
|
587 F77_ISNAN_MACRO= |
bc4c574ab3b6
Add configure check for isnan in fortran.
Carlo de Falco <cdf@users.sourceforge.net>
parents:
14398
diff
changeset
|
588 if test "x$octave_cv_fortran_have_isnan" = xno; then |
15063
36cbcc37fdb8
Refactor configure.ac to make it more understandable.
Rik <rik@octave.org>
parents:
15059
diff
changeset
|
589 AC_MSG_NOTICE([substituting ISNAN(X) with X.NE.X in Fortran sources]) |
14550
bc4c574ab3b6
Add configure check for isnan in fortran.
Carlo de Falco <cdf@users.sourceforge.net>
parents:
14398
diff
changeset
|
590 F77_ISNAN_MACRO="s|ISNAN(\(@<:@^)@:>@*\))|(\1.NE.\1)|" |
bc4c574ab3b6
Add configure check for isnan in fortran.
Carlo de Falco <cdf@users.sourceforge.net>
parents:
14398
diff
changeset
|
591 fi |
bc4c574ab3b6
Add configure check for isnan in fortran.
Carlo de Falco <cdf@users.sourceforge.net>
parents:
14398
diff
changeset
|
592 AC_SUBST(F77_ISNAN_MACRO) |
bc4c574ab3b6
Add configure check for isnan in fortran.
Carlo de Falco <cdf@users.sourceforge.net>
parents:
14398
diff
changeset
|
593 |
9596
f26229391ea1
configure.in, aclocal.m4: check fortran integer size
John W. Eaton <jwe@octave.org>
parents:
9583
diff
changeset
|
594 OCTAVE_CHECK_FORTRAN_INTEGER_SIZE |
f26229391ea1
configure.in, aclocal.m4: check fortran integer size
John W. Eaton <jwe@octave.org>
parents:
9583
diff
changeset
|
595 if test "x$octave_cv_fortran_integer_size" = xno; then |
f26229391ea1
configure.in, aclocal.m4: check fortran integer size
John W. Eaton <jwe@octave.org>
parents:
9583
diff
changeset
|
596 if $USE_64_BIT_IDX_T; then |
f26229391ea1
configure.in, aclocal.m4: check fortran integer size
John W. Eaton <jwe@octave.org>
parents:
9583
diff
changeset
|
597 case "$F77" in |
10331
6a50aa2cdf00
never compile ranlib with 8-byte integers
John W. Eaton <jwe@octave.org>
parents:
10266
diff
changeset
|
598 *gfortran*) |
6a50aa2cdf00
never compile ranlib with 8-byte integers
John W. Eaton <jwe@octave.org>
parents:
10266
diff
changeset
|
599 case "$F77_INTEGER_8_FLAG" in |
9596
f26229391ea1
configure.in, aclocal.m4: check fortran integer size
John W. Eaton <jwe@octave.org>
parents:
9583
diff
changeset
|
600 *-fdefault-integer-8*) |
f26229391ea1
configure.in, aclocal.m4: check fortran integer size
John W. Eaton <jwe@octave.org>
parents:
9583
diff
changeset
|
601 ;; |
f26229391ea1
configure.in, aclocal.m4: check fortran integer size
John W. Eaton <jwe@octave.org>
parents:
9583
diff
changeset
|
602 *) |
10331
6a50aa2cdf00
never compile ranlib with 8-byte integers
John W. Eaton <jwe@octave.org>
parents:
10266
diff
changeset
|
603 case "$FFLAGS" in |
6a50aa2cdf00
never compile ranlib with 8-byte integers
John W. Eaton <jwe@octave.org>
parents:
10266
diff
changeset
|
604 *-fdefault-integer-8*) |
6a50aa2cdf00
never compile ranlib with 8-byte integers
John W. Eaton <jwe@octave.org>
parents:
10266
diff
changeset
|
605 AC_MSG_NOTICE([setting -fdefault-integer-8 in F77_INTEGER_8_FLAG instead of FFLAGS]) |
6a50aa2cdf00
never compile ranlib with 8-byte integers
John W. Eaton <jwe@octave.org>
parents:
10266
diff
changeset
|
606 FFLAGS=`echo $FFLAGS | sed 's/-fdefault-integer-8//g'` |
6a50aa2cdf00
never compile ranlib with 8-byte integers
John W. Eaton <jwe@octave.org>
parents:
10266
diff
changeset
|
607 F77_INTEGER_8_FLAG="-fdefault-integer-8" |
6a50aa2cdf00
never compile ranlib with 8-byte integers
John W. Eaton <jwe@octave.org>
parents:
10266
diff
changeset
|
608 ;; |
6a50aa2cdf00
never compile ranlib with 8-byte integers
John W. Eaton <jwe@octave.org>
parents:
10266
diff
changeset
|
609 *) |
6a50aa2cdf00
never compile ranlib with 8-byte integers
John W. Eaton <jwe@octave.org>
parents:
10266
diff
changeset
|
610 AC_MSG_NOTICE([adding -fdefault-integer-8 to F77_INTEGER_8_FLAG]) |
6a50aa2cdf00
never compile ranlib with 8-byte integers
John W. Eaton <jwe@octave.org>
parents:
10266
diff
changeset
|
611 F77_INTEGER_8_FLAG="-fdefault-integer-8" |
12451 | 612 ## Invalidate the cache and try again. |
10331
6a50aa2cdf00
never compile ranlib with 8-byte integers
John W. Eaton <jwe@octave.org>
parents:
10266
diff
changeset
|
613 $as_unset octave_cv_fortran_integer_size |
6a50aa2cdf00
never compile ranlib with 8-byte integers
John W. Eaton <jwe@octave.org>
parents:
10266
diff
changeset
|
614 ;; |
6a50aa2cdf00
never compile ranlib with 8-byte integers
John W. Eaton <jwe@octave.org>
parents:
10266
diff
changeset
|
615 esac |
9596
f26229391ea1
configure.in, aclocal.m4: check fortran integer size
John W. Eaton <jwe@octave.org>
parents:
9583
diff
changeset
|
616 ;; |
f26229391ea1
configure.in, aclocal.m4: check fortran integer size
John W. Eaton <jwe@octave.org>
parents:
9583
diff
changeset
|
617 esac |
f26229391ea1
configure.in, aclocal.m4: check fortran integer size
John W. Eaton <jwe@octave.org>
parents:
9583
diff
changeset
|
618 ;; |
f26229391ea1
configure.in, aclocal.m4: check fortran integer size
John W. Eaton <jwe@octave.org>
parents:
9583
diff
changeset
|
619 esac |
f26229391ea1
configure.in, aclocal.m4: check fortran integer size
John W. Eaton <jwe@octave.org>
parents:
9583
diff
changeset
|
620 if test -z "$octave_cv_fortran_integer_size"; then |
f26229391ea1
configure.in, aclocal.m4: check fortran integer size
John W. Eaton <jwe@octave.org>
parents:
9583
diff
changeset
|
621 OCTAVE_CHECK_FORTRAN_INTEGER_SIZE |
f26229391ea1
configure.in, aclocal.m4: check fortran integer size
John W. Eaton <jwe@octave.org>
parents:
9583
diff
changeset
|
622 fi |
f26229391ea1
configure.in, aclocal.m4: check fortran integer size
John W. Eaton <jwe@octave.org>
parents:
9583
diff
changeset
|
623 if test "x$octave_cv_fortran_integer_size" = xno; then |
15063
36cbcc37fdb8
Refactor configure.ac to make it more understandable.
Rik <rik@octave.org>
parents:
15059
diff
changeset
|
624 AC_MSG_ERROR([in order to build Octave with 64-bit indexing support your Fortran compiler must have an option for setting the default integer size to 8 bytes. See the file INSTALL for more information.]) |
9596
f26229391ea1
configure.in, aclocal.m4: check fortran integer size
John W. Eaton <jwe@octave.org>
parents:
9583
diff
changeset
|
625 fi |
f26229391ea1
configure.in, aclocal.m4: check fortran integer size
John W. Eaton <jwe@octave.org>
parents:
9583
diff
changeset
|
626 else |
10331
6a50aa2cdf00
never compile ranlib with 8-byte integers
John W. Eaton <jwe@octave.org>
parents:
10266
diff
changeset
|
627 AC_MSG_ERROR([your Fortran compiler must have an option to make integers the same size as octave_idx_type ($OCTAVE_IDX_TYPE). See the file INSTALL for more information.]) |
9596
f26229391ea1
configure.in, aclocal.m4: check fortran integer size
John W. Eaton <jwe@octave.org>
parents:
9583
diff
changeset
|
628 fi |
f26229391ea1
configure.in, aclocal.m4: check fortran integer size
John W. Eaton <jwe@octave.org>
parents:
9583
diff
changeset
|
629 fi |
10331
6a50aa2cdf00
never compile ranlib with 8-byte integers
John W. Eaton <jwe@octave.org>
parents:
10266
diff
changeset
|
630 AC_SUBST(F77_INTEGER_8_FLAG) |
9596
f26229391ea1
configure.in, aclocal.m4: check fortran integer size
John W. Eaton <jwe@octave.org>
parents:
9583
diff
changeset
|
631 |
f26229391ea1
configure.in, aclocal.m4: check fortran integer size
John W. Eaton <jwe@octave.org>
parents:
9583
diff
changeset
|
632 FC=$F77 |
f26229391ea1
configure.in, aclocal.m4: check fortran integer size
John W. Eaton <jwe@octave.org>
parents:
9583
diff
changeset
|
633 AC_SUBST(FC) |
f26229391ea1
configure.in, aclocal.m4: check fortran integer size
John W. Eaton <jwe@octave.org>
parents:
9583
diff
changeset
|
634 |
f26229391ea1
configure.in, aclocal.m4: check fortran integer size
John W. Eaton <jwe@octave.org>
parents:
9583
diff
changeset
|
635 OCTAVE_F77_FLAG(-ffloat-store, [ |
f26229391ea1
configure.in, aclocal.m4: check fortran integer size
John W. Eaton <jwe@octave.org>
parents:
9583
diff
changeset
|
636 AC_MSG_RESULT([setting F77_FLOAT_STORE_FLAG to -ffloat-store]) |
f26229391ea1
configure.in, aclocal.m4: check fortran integer size
John W. Eaton <jwe@octave.org>
parents:
9583
diff
changeset
|
637 F77_FLOAT_STORE_FLAG=-ffloat-store |
f26229391ea1
configure.in, aclocal.m4: check fortran integer size
John W. Eaton <jwe@octave.org>
parents:
9583
diff
changeset
|
638 AC_SUBST(F77_FLOAT_STORE_FLAG) |
f26229391ea1
configure.in, aclocal.m4: check fortran integer size
John W. Eaton <jwe@octave.org>
parents:
9583
diff
changeset
|
639 ]) |
f26229391ea1
configure.in, aclocal.m4: check fortran integer size
John W. Eaton <jwe@octave.org>
parents:
9583
diff
changeset
|
640 |
15063
36cbcc37fdb8
Refactor configure.ac to make it more understandable.
Rik <rik@octave.org>
parents:
15059
diff
changeset
|
641 ### Check that C compiler and libraries support IEEE754 data format. |
9596
f26229391ea1
configure.in, aclocal.m4: check fortran integer size
John W. Eaton <jwe@octave.org>
parents:
9583
diff
changeset
|
642 OCTAVE_IEEE754_DATA_FORMAT |
f26229391ea1
configure.in, aclocal.m4: check fortran integer size
John W. Eaton <jwe@octave.org>
parents:
9583
diff
changeset
|
643 |
15063
36cbcc37fdb8
Refactor configure.ac to make it more understandable.
Rik <rik@octave.org>
parents:
15059
diff
changeset
|
644 ### Check C++ library for various capabilities. |
14725
fa48fd0f160f
Add configure check for templated bitwise operators.
Carlo de Falco <cdf@users.sourceforge.net>
parents:
14706
diff
changeset
|
645 OCTAVE_CXX_BITWISE_OP_TEMPLATES |
10380
60acc47c203f
configure checks for complex element setter/reference accessor methods
John W. Eaton <jwe@octave.org>
parents:
10346
diff
changeset
|
646 OCTAVE_CXX_COMPLEX_SETTERS |
60acc47c203f
configure checks for complex element setter/reference accessor methods
John W. Eaton <jwe@octave.org>
parents:
10346
diff
changeset
|
647 OCTAVE_CXX_COMPLEX_REFERENCE_ACCESSORS |
60acc47c203f
configure checks for complex element setter/reference accessor methods
John W. Eaton <jwe@octave.org>
parents:
10346
diff
changeset
|
648 |
15063
36cbcc37fdb8
Refactor configure.ac to make it more understandable.
Rik <rik@octave.org>
parents:
15059
diff
changeset
|
649 ### Check for the Qhull library |
6823 | 650 |
9519
ee99f9f37505
improve configure checks for qhull and curl libs
John W. Eaton <jwe@octave.org>
parents:
9515
diff
changeset
|
651 OCTAVE_CHECK_LIBRARY(qhull, QHull, |
ee99f9f37505
improve configure checks for qhull and curl libs
John W. Eaton <jwe@octave.org>
parents:
9515
diff
changeset
|
652 [Qhull library not found -- this will result in loss of functionality of some geometry functions.], |
14315
99428221b4e1
build: Add new location for Qhull2012 include files to build system.
Rik <octave@nomad.inbox5.com>
parents:
14204
diff
changeset
|
653 [libqhull/libqhull.h qhull/libqhull.h libqhull.h qhull/qhull.h qhull.h], [qh_qhull], [], [], |
9519
ee99f9f37505
improve configure checks for qhull and curl libs
John W. Eaton <jwe@octave.org>
parents:
9515
diff
changeset
|
654 [warn_qhull= |
ee99f9f37505
improve configure checks for qhull and curl libs
John W. Eaton <jwe@octave.org>
parents:
9515
diff
changeset
|
655 OCTAVE_CHECK_QHULL_VERSION |
ee99f9f37505
improve configure checks for qhull and curl libs
John W. Eaton <jwe@octave.org>
parents:
9515
diff
changeset
|
656 OCTAVE_CHECK_QHULL_OK([TEXINFO_QHULL="@set HAVE_QHULL" |
15063
36cbcc37fdb8
Refactor configure.ac to make it more understandable.
Rik <rik@octave.org>
parents:
15059
diff
changeset
|
657 AC_DEFINE(HAVE_QHULL, 1, [Define to 1 if Qhull is available.])], [ |
36cbcc37fdb8
Refactor configure.ac to make it more understandable.
Rik <rik@octave.org>
parents:
15059
diff
changeset
|
658 warn_qhull="Qhull library found, but does not seem to work properly -- this will result in loss of functionality of some geometry functions. Please try recompiling the library with -fno-strict-aliasing."])]) |
6855 | 659 |
15063
36cbcc37fdb8
Refactor configure.ac to make it more understandable.
Rik <rik@octave.org>
parents:
15059
diff
changeset
|
660 ### Check for PCRE regex library. |
12464
dfeea9cae79e
require PCRE to build Octave
John W. Eaton <jwe@octave.org>
parents:
12451
diff
changeset
|
661 |
dfeea9cae79e
require PCRE to build Octave
John W. Eaton <jwe@octave.org>
parents:
12451
diff
changeset
|
662 REGEX_LIBS= |
dfeea9cae79e
require PCRE to build Octave
John W. Eaton <jwe@octave.org>
parents:
12451
diff
changeset
|
663 |
dfeea9cae79e
require PCRE to build Octave
John W. Eaton <jwe@octave.org>
parents:
12451
diff
changeset
|
664 pcre_fail_msg="to build Octave, you must have the PCRE library and header files installed" |
7173 | 665 |
14025
9867be070ee1
use pcre/pcre.h if it is present
John W. Eaton <jwe@octave.org>
parents:
13985
diff
changeset
|
666 AC_CHECK_HEADERS([pcre.h pcre/pcre.h]) |
9867be070ee1
use pcre/pcre.h if it is present
John W. Eaton <jwe@octave.org>
parents:
13985
diff
changeset
|
667 |
12464
dfeea9cae79e
require PCRE to build Octave
John W. Eaton <jwe@octave.org>
parents:
12451
diff
changeset
|
668 AC_CACHE_CHECK([whether pcre.h defines the macros we need], |
dfeea9cae79e
require PCRE to build Octave
John W. Eaton <jwe@octave.org>
parents:
12451
diff
changeset
|
669 [ac_cv_pcre_h_macros_present], |
dfeea9cae79e
require PCRE to build Octave
John W. Eaton <jwe@octave.org>
parents:
12451
diff
changeset
|
670 [AC_EGREP_CPP([PCRE_HAS_MACROS_WE_NEED], [ |
14025
9867be070ee1
use pcre/pcre.h if it is present
John W. Eaton <jwe@octave.org>
parents:
13985
diff
changeset
|
671 #if defined (HAVE_PCRE_H) |
7173 | 672 #include <pcre.h> |
14025
9867be070ee1
use pcre/pcre.h if it is present
John W. Eaton <jwe@octave.org>
parents:
13985
diff
changeset
|
673 #elif defined (HAVE_PCRE_PCRE_H) |
9867be070ee1
use pcre/pcre.h if it is present
John W. Eaton <jwe@octave.org>
parents:
13985
diff
changeset
|
674 #include <pcre.h> |
9867be070ee1
use pcre/pcre.h if it is present
John W. Eaton <jwe@octave.org>
parents:
13985
diff
changeset
|
675 #error "NO PCRE HEADER" |
9867be070ee1
use pcre/pcre.h if it is present
John W. Eaton <jwe@octave.org>
parents:
13985
diff
changeset
|
676 #endif |
6133 | 677 #if defined (PCRE_INFO_NAMECOUNT) \ |
678 && defined (PCRE_INFO_NAMEENTRYSIZE) \ | |
679 && defined (PCRE_INFO_NAMETABLE) | |
680 PCRE_HAS_MACROS_WE_NEED | |
7173 | 681 #endif], ac_cv_pcre_h_macros_present=yes, ac_cv_pcre_h_macros_present=no)]) |
7169 | 682 |
12464
dfeea9cae79e
require PCRE to build Octave
John W. Eaton <jwe@octave.org>
parents:
12451
diff
changeset
|
683 if test $ac_cv_pcre_h_macros_present = yes; then |
dfeea9cae79e
require PCRE to build Octave
John W. Eaton <jwe@octave.org>
parents:
12451
diff
changeset
|
684 ## check for pcre-config, and if so, set XTRA_CXXFLAGS appropriately |
dfeea9cae79e
require PCRE to build Octave
John W. Eaton <jwe@octave.org>
parents:
12451
diff
changeset
|
685 AC_CHECK_PROG(HAVE_PCRE_CONFIG, pcre-config, [yes], [no]) |
dfeea9cae79e
require PCRE to build Octave
John W. Eaton <jwe@octave.org>
parents:
12451
diff
changeset
|
686 if test $HAVE_PCRE_CONFIG = yes; then |
dfeea9cae79e
require PCRE to build Octave
John W. Eaton <jwe@octave.org>
parents:
12451
diff
changeset
|
687 XTRA_CXXFLAGS="$XTRA_CXXFLAGS `pcre-config --cflags`" |
dfeea9cae79e
require PCRE to build Octave
John W. Eaton <jwe@octave.org>
parents:
12451
diff
changeset
|
688 REGEX_LIBS="`pcre-config --libs`" |
7173 | 689 else |
12464
dfeea9cae79e
require PCRE to build Octave
John W. Eaton <jwe@octave.org>
parents:
12451
diff
changeset
|
690 REGEX_LIBS="-lpcre" |
7173 | 691 fi |
8621
f1534e248260
configure.in: check for pcre_compile, don't check for other regex functions if pcre library is found
John W. Eaton <jwe@octave.org>
parents:
8618
diff
changeset
|
692 save_LIBS="$LIBS" |
f1534e248260
configure.in: check for pcre_compile, don't check for other regex functions if pcre library is found
John W. Eaton <jwe@octave.org>
parents:
8618
diff
changeset
|
693 LIBS="$REGEX_LIBS $LIBS" |
12464
dfeea9cae79e
require PCRE to build Octave
John W. Eaton <jwe@octave.org>
parents:
12451
diff
changeset
|
694 AC_CHECK_FUNCS(pcre_compile, |
dfeea9cae79e
require PCRE to build Octave
John W. Eaton <jwe@octave.org>
parents:
12451
diff
changeset
|
695 [AC_SUBST(REGEX_LIBS)], |
dfeea9cae79e
require PCRE to build Octave
John W. Eaton <jwe@octave.org>
parents:
12451
diff
changeset
|
696 [AC_MSG_ERROR([$pcre_fail_msg])]) |
8621
f1534e248260
configure.in: check for pcre_compile, don't check for other regex functions if pcre library is found
John W. Eaton <jwe@octave.org>
parents:
8618
diff
changeset
|
697 LIBS="$save_LIBS" |
7174 | 698 else |
12464
dfeea9cae79e
require PCRE to build Octave
John W. Eaton <jwe@octave.org>
parents:
12451
diff
changeset
|
699 AC_MSG_ERROR([$pcre_fail_msg]) |
6133 | 700 fi |
7169 | 701 |
5270 | 702 ### Check for ZLIB library. |
3820 | 703 |
9538
d0239bddf621
use OCTAVE_CHECK_LIB to check for zlib
John W. Eaton <jwe@octave.org>
parents:
9536
diff
changeset
|
704 OCTAVE_CHECK_LIBRARY(z, ZLIB, |
d0239bddf621
use OCTAVE_CHECK_LIB to check for zlib
John W. Eaton <jwe@octave.org>
parents:
9536
diff
changeset
|
705 [ZLIB library not found. Octave will not be able to save or load compressed data files or HDF5 files.], |
d0239bddf621
use OCTAVE_CHECK_LIB to check for zlib
John W. Eaton <jwe@octave.org>
parents:
9536
diff
changeset
|
706 [zlib.h], [gzclearerr]) |
3687 | 707 |
15063
36cbcc37fdb8
Refactor configure.ac to make it more understandable.
Rik <rik@octave.org>
parents:
15059
diff
changeset
|
708 ### Check for the LLVM library |
14899 | 709 dnl |
15063
36cbcc37fdb8
Refactor configure.ac to make it more understandable.
Rik <rik@octave.org>
parents:
15059
diff
changeset
|
710 dnl LLVM is odd and has its own pkg-config like script. We should probably |
36cbcc37fdb8
Refactor configure.ac to make it more understandable.
Rik <rik@octave.org>
parents:
15059
diff
changeset
|
711 dnl check for existence and ???. |
14899 | 712 dnl |
15001
894cf2c07f92
Properly restore compiler and linker flags after llvm tests
Carlo de Falco <cdf@users.sourceforge.net>
parents:
14994
diff
changeset
|
713 save_CPPFLAGS="$CPPFLAGS" |
894cf2c07f92
Properly restore compiler and linker flags after llvm tests
Carlo de Falco <cdf@users.sourceforge.net>
parents:
14994
diff
changeset
|
714 save_CXXFLAGS="$CXXFLAGS" |
894cf2c07f92
Properly restore compiler and linker flags after llvm tests
Carlo de Falco <cdf@users.sourceforge.net>
parents:
14994
diff
changeset
|
715 save_LIBS="$LIBS" |
894cf2c07f92
Properly restore compiler and linker flags after llvm tests
Carlo de Falco <cdf@users.sourceforge.net>
parents:
14994
diff
changeset
|
716 save_LDFLAGS="$LDFLAGS" |
894cf2c07f92
Properly restore compiler and linker flags after llvm tests
Carlo de Falco <cdf@users.sourceforge.net>
parents:
14994
diff
changeset
|
717 |
15063
36cbcc37fdb8
Refactor configure.ac to make it more understandable.
Rik <rik@octave.org>
parents:
15059
diff
changeset
|
718 warn_llvm="LLVM library fails tests. JIT compilation will be disabled." |
14899 | 719 |
14932
1f914446157d
Locate and link with LLVM properly
Max Brister <max@2bass.com>
parents:
14931
diff
changeset
|
720 AC_ARG_VAR(LLVM_CONFIG, [path to llvm-config utility]) |
1f914446157d
Locate and link with LLVM properly
Max Brister <max@2bass.com>
parents:
14931
diff
changeset
|
721 |
1f914446157d
Locate and link with LLVM properly
Max Brister <max@2bass.com>
parents:
14931
diff
changeset
|
722 AC_ARG_ENABLE([jit-debug], |
15063
36cbcc37fdb8
Refactor configure.ac to make it more understandable.
Rik <rik@octave.org>
parents:
15059
diff
changeset
|
723 AS_HELP_STRING([--enable-jit-debug], [Enable debug printing of JIT IRs])) |
14932
1f914446157d
Locate and link with LLVM properly
Max Brister <max@2bass.com>
parents:
14931
diff
changeset
|
724 |
1f914446157d
Locate and link with LLVM properly
Max Brister <max@2bass.com>
parents:
14931
diff
changeset
|
725 AS_IF([test "x$enable_jit_debug" = "xyes"], [ |
15063
36cbcc37fdb8
Refactor configure.ac to make it more understandable.
Rik <rik@octave.org>
parents:
15059
diff
changeset
|
726 AC_DEFINE(OCTAVE_JIT_DEBUG, 1, [Define to 1 for JIT debug printing.]) |
14932
1f914446157d
Locate and link with LLVM properly
Max Brister <max@2bass.com>
parents:
14931
diff
changeset
|
727 ]) |
1f914446157d
Locate and link with LLVM properly
Max Brister <max@2bass.com>
parents:
14931
diff
changeset
|
728 |
14990
149d1e2224f0
configure.ac: llvm include goes in CPPFLAGS not CXXFLAGS
Max Brister <max@2bass.com>
parents:
14956
diff
changeset
|
729 LLVM_CXXFLAGS= |
14899 | 730 LLVM_CPPFLAGS= |
731 LLVM_LDFLAGS= | |
732 LLVM_LIBS= | |
733 | |
14994
bbc825cb2ea0
Use -I instead of -isystem if -isystem is not avaiable
Max Brister <max@2bass.com>
parents:
14993
diff
changeset
|
734 if test "x$ac_cv_env_LLVM_CONFIG_set" = "xset"; then |
15063
36cbcc37fdb8
Refactor configure.ac to make it more understandable.
Rik <rik@octave.org>
parents:
15059
diff
changeset
|
735 ## We use -isystem if available because we do not want to see warnings in LLVM |
14994
bbc825cb2ea0
Use -I instead of -isystem if -isystem is not avaiable
Max Brister <max@2bass.com>
parents:
14993
diff
changeset
|
736 LLVM_INCLUDE_FLAG=-I |
bbc825cb2ea0
Use -I instead of -isystem if -isystem is not avaiable
Max Brister <max@2bass.com>
parents:
14993
diff
changeset
|
737 OCTAVE_CC_FLAG(-isystem ., [ |
bbc825cb2ea0
Use -I instead of -isystem if -isystem is not avaiable
Max Brister <max@2bass.com>
parents:
14993
diff
changeset
|
738 LLVM_INCLUDE_FLAG=-isystem |
bbc825cb2ea0
Use -I instead of -isystem if -isystem is not avaiable
Max Brister <max@2bass.com>
parents:
14993
diff
changeset
|
739 AC_MSG_NOTICE([using -isystem for llvm headers])]) |
bbc825cb2ea0
Use -I instead of -isystem if -isystem is not avaiable
Max Brister <max@2bass.com>
parents:
14993
diff
changeset
|
740 |
14932
1f914446157d
Locate and link with LLVM properly
Max Brister <max@2bass.com>
parents:
14931
diff
changeset
|
741 LLVM_LDFLAGS="-L`$LLVM_CONFIG --libdir`" |
1f914446157d
Locate and link with LLVM properly
Max Brister <max@2bass.com>
parents:
14931
diff
changeset
|
742 LLVM_LIBS=`$LLVM_CONFIG --libs` |
1f914446157d
Locate and link with LLVM properly
Max Brister <max@2bass.com>
parents:
14931
diff
changeset
|
743 dnl Use -isystem so we don't get warnings from llvm headers |
14994
bbc825cb2ea0
Use -I instead of -isystem if -isystem is not avaiable
Max Brister <max@2bass.com>
parents:
14993
diff
changeset
|
744 LLVM_CPPFLAGS="$LLVM_INCLUDE_FLAG `$LLVM_CONFIG --includedir`" |
14990
149d1e2224f0
configure.ac: llvm include goes in CPPFLAGS not CXXFLAGS
Max Brister <max@2bass.com>
parents:
14956
diff
changeset
|
745 LLVM_CXXFLAGS= |
14994
bbc825cb2ea0
Use -I instead of -isystem if -isystem is not avaiable
Max Brister <max@2bass.com>
parents:
14993
diff
changeset
|
746 |
bbc825cb2ea0
Use -I instead of -isystem if -isystem is not avaiable
Max Brister <max@2bass.com>
parents:
14993
diff
changeset
|
747 dnl |
15063
36cbcc37fdb8
Refactor configure.ac to make it more understandable.
Rik <rik@octave.org>
parents:
15059
diff
changeset
|
748 dnl We define some extra flags that LLVM requires in order to include headers. |
36cbcc37fdb8
Refactor configure.ac to make it more understandable.
Rik <rik@octave.org>
parents:
15059
diff
changeset
|
749 dnl Ideally we should get these from llvm-config, but llvm-config isn't very |
14994
bbc825cb2ea0
Use -I instead of -isystem if -isystem is not avaiable
Max Brister <max@2bass.com>
parents:
14993
diff
changeset
|
750 dnl helpful. |
bbc825cb2ea0
Use -I instead of -isystem if -isystem is not avaiable
Max Brister <max@2bass.com>
parents:
14993
diff
changeset
|
751 dnl |
bbc825cb2ea0
Use -I instead of -isystem if -isystem is not avaiable
Max Brister <max@2bass.com>
parents:
14993
diff
changeset
|
752 CPPFLAGS="-D__STDC_CONSTANT_MACROS -D__STDC_LIMIT_MACROS $LLVM_CPPFLAGS $CPPFLAGS" |
bbc825cb2ea0
Use -I instead of -isystem if -isystem is not avaiable
Max Brister <max@2bass.com>
parents:
14993
diff
changeset
|
753 CXXFLAGS="$LLVM_CXXFLAGS $CXXFLAGS" |
bbc825cb2ea0
Use -I instead of -isystem if -isystem is not avaiable
Max Brister <max@2bass.com>
parents:
14993
diff
changeset
|
754 LIBS="$LLVM_LIBS $LIBS" |
bbc825cb2ea0
Use -I instead of -isystem if -isystem is not avaiable
Max Brister <max@2bass.com>
parents:
14993
diff
changeset
|
755 LDFLAGS="$LLVM_LDFLAGS $LDFLAGS" |
14932
1f914446157d
Locate and link with LLVM properly
Max Brister <max@2bass.com>
parents:
14931
diff
changeset
|
756 |
14993
06f2e9bdade6
configure.ac: Skip compiling JIT if LLVM_CONFIG is not specified
Max Brister <max@2bass.com>
parents:
14990
diff
changeset
|
757 AC_LANG_PUSH(C++) |
06f2e9bdade6
configure.ac: Skip compiling JIT if LLVM_CONFIG is not specified
Max Brister <max@2bass.com>
parents:
14990
diff
changeset
|
758 AC_CHECK_HEADER([llvm/LLVMContext.h], [ |
06f2e9bdade6
configure.ac: Skip compiling JIT if LLVM_CONFIG is not specified
Max Brister <max@2bass.com>
parents:
14990
diff
changeset
|
759 AC_MSG_CHECKING([for llvm::getGlobalContext in llvm/LLVMContext.h]) |
06f2e9bdade6
configure.ac: Skip compiling JIT if LLVM_CONFIG is not specified
Max Brister <max@2bass.com>
parents:
14990
diff
changeset
|
760 AC_COMPILE_IFELSE( |
06f2e9bdade6
configure.ac: Skip compiling JIT if LLVM_CONFIG is not specified
Max Brister <max@2bass.com>
parents:
14990
diff
changeset
|
761 [AC_LANG_PROGRAM([[#include <llvm/LLVMContext.h>]], |
06f2e9bdade6
configure.ac: Skip compiling JIT if LLVM_CONFIG is not specified
Max Brister <max@2bass.com>
parents:
14990
diff
changeset
|
762 [[llvm::LLVMContext& ctx = llvm::getGlobalContext ();]])], |
06f2e9bdade6
configure.ac: Skip compiling JIT if LLVM_CONFIG is not specified
Max Brister <max@2bass.com>
parents:
14990
diff
changeset
|
763 [ |
06f2e9bdade6
configure.ac: Skip compiling JIT if LLVM_CONFIG is not specified
Max Brister <max@2bass.com>
parents:
14990
diff
changeset
|
764 AC_MSG_RESULT([yes]) |
06f2e9bdade6
configure.ac: Skip compiling JIT if LLVM_CONFIG is not specified
Max Brister <max@2bass.com>
parents:
14990
diff
changeset
|
765 warn_llvm= |
06f2e9bdade6
configure.ac: Skip compiling JIT if LLVM_CONFIG is not specified
Max Brister <max@2bass.com>
parents:
14990
diff
changeset
|
766 XTRA_CXXFLAGS="$XTRA_CXXFLAGS $LLVM_CXXFLAGS $LLVM_CPPFLAGS" |
06f2e9bdade6
configure.ac: Skip compiling JIT if LLVM_CONFIG is not specified
Max Brister <max@2bass.com>
parents:
14990
diff
changeset
|
767 ], |
06f2e9bdade6
configure.ac: Skip compiling JIT if LLVM_CONFIG is not specified
Max Brister <max@2bass.com>
parents:
14990
diff
changeset
|
768 [AC_MSG_RESULT([no]) |
06f2e9bdade6
configure.ac: Skip compiling JIT if LLVM_CONFIG is not specified
Max Brister <max@2bass.com>
parents:
14990
diff
changeset
|
769 ]) |
14899 | 770 ]) |
14993
06f2e9bdade6
configure.ac: Skip compiling JIT if LLVM_CONFIG is not specified
Max Brister <max@2bass.com>
parents:
14990
diff
changeset
|
771 AC_LANG_POP(C++) |
15001
894cf2c07f92
Properly restore compiler and linker flags after llvm tests
Carlo de Falco <cdf@users.sourceforge.net>
parents:
14994
diff
changeset
|
772 |
14993
06f2e9bdade6
configure.ac: Skip compiling JIT if LLVM_CONFIG is not specified
Max Brister <max@2bass.com>
parents:
14990
diff
changeset
|
773 else |
15063
36cbcc37fdb8
Refactor configure.ac to make it more understandable.
Rik <rik@octave.org>
parents:
15059
diff
changeset
|
774 warn_llvm="LLVM_CONFIG not set. JIT compilation will be disabled." |
14993
06f2e9bdade6
configure.ac: Skip compiling JIT if LLVM_CONFIG is not specified
Max Brister <max@2bass.com>
parents:
14990
diff
changeset
|
775 fi |
06f2e9bdade6
configure.ac: Skip compiling JIT if LLVM_CONFIG is not specified
Max Brister <max@2bass.com>
parents:
14990
diff
changeset
|
776 |
14899 | 777 if test -z "$warn_llvm"; then |
15063
36cbcc37fdb8
Refactor configure.ac to make it more understandable.
Rik <rik@octave.org>
parents:
15059
diff
changeset
|
778 AC_DEFINE(HAVE_LLVM, 1, [Define to 1 if LLVM is available.]) |
14899 | 779 else |
14990
149d1e2224f0
configure.ac: llvm include goes in CPPFLAGS not CXXFLAGS
Max Brister <max@2bass.com>
parents:
14956
diff
changeset
|
780 LLVM_CXXFLAGS= |
14899 | 781 LLVM_CPPFLAGS= |
782 LLVM_LDFLAGS= | |
783 LLVM_LIBS= | |
14993
06f2e9bdade6
configure.ac: Skip compiling JIT if LLVM_CONFIG is not specified
Max Brister <max@2bass.com>
parents:
14990
diff
changeset
|
784 OCTAVE_CONFIGURE_WARNING([warn_llvm]) |
14899 | 785 fi |
786 | |
14990
149d1e2224f0
configure.ac: llvm include goes in CPPFLAGS not CXXFLAGS
Max Brister <max@2bass.com>
parents:
14956
diff
changeset
|
787 AC_SUBST(LLVM_CXXFLAGS) |
14899 | 788 AC_SUBST(LLVM_CPPFLAGS) |
789 AC_SUBST(LLVM_LDFLAGS) | |
790 AC_SUBST(LLVM_LIBS) | |
791 | |
15001
894cf2c07f92
Properly restore compiler and linker flags after llvm tests
Carlo de Falco <cdf@users.sourceforge.net>
parents:
14994
diff
changeset
|
792 CPPFLAGS="$save_CPPFLAGS" |
894cf2c07f92
Properly restore compiler and linker flags after llvm tests
Carlo de Falco <cdf@users.sourceforge.net>
parents:
14994
diff
changeset
|
793 CXXFLAGS="$save_CXXFLAGS" |
894cf2c07f92
Properly restore compiler and linker flags after llvm tests
Carlo de Falco <cdf@users.sourceforge.net>
parents:
14994
diff
changeset
|
794 LIBS="$save_LIBS" |
894cf2c07f92
Properly restore compiler and linker flags after llvm tests
Carlo de Falco <cdf@users.sourceforge.net>
parents:
14994
diff
changeset
|
795 LDFLAGS="$save_LDFLAGS" |
894cf2c07f92
Properly restore compiler and linker flags after llvm tests
Carlo de Falco <cdf@users.sourceforge.net>
parents:
14994
diff
changeset
|
796 |
9538
d0239bddf621
use OCTAVE_CHECK_LIB to check for zlib
John W. Eaton <jwe@octave.org>
parents:
9536
diff
changeset
|
797 ### Check for HDF5 library. |
5270 | 798 |
9542
f5ec5dc66824
use OCTAVE_CHECK_LIBRARY to check for HDF5
John W. Eaton <jwe@octave.org>
parents:
9540
diff
changeset
|
799 save_CPPFLAGS="$CPPFLAGS" |
f5ec5dc66824
use OCTAVE_CHECK_LIBRARY to check for HDF5
John W. Eaton <jwe@octave.org>
parents:
9540
diff
changeset
|
800 CPPFLAGS="$Z_CPPFLAGS $CPPFLAGS" |
f5ec5dc66824
use OCTAVE_CHECK_LIBRARY to check for HDF5
John W. Eaton <jwe@octave.org>
parents:
9540
diff
changeset
|
801 save_LIBS="$LIBS" |
f5ec5dc66824
use OCTAVE_CHECK_LIBRARY to check for HDF5
John W. Eaton <jwe@octave.org>
parents:
9540
diff
changeset
|
802 LIBS="$Z_LDFLAGS $Z_LIBS $LIBS" |
f5ec5dc66824
use OCTAVE_CHECK_LIBRARY to check for HDF5
John W. Eaton <jwe@octave.org>
parents:
9540
diff
changeset
|
803 OCTAVE_CHECK_LIBRARY(hdf5, HDF5, |
f5ec5dc66824
use OCTAVE_CHECK_LIBRARY to check for HDF5
John W. Eaton <jwe@octave.org>
parents:
9540
diff
changeset
|
804 [HDF5 library not found. Octave will not be able to save or load HDF5 data files.], |
f5ec5dc66824
use OCTAVE_CHECK_LIBRARY to check for HDF5
John W. Eaton <jwe@octave.org>
parents:
9540
diff
changeset
|
805 [hdf5.h], [H5Gget_num_objs], [], [], |
f5ec5dc66824
use OCTAVE_CHECK_LIBRARY to check for HDF5
John W. Eaton <jwe@octave.org>
parents:
9540
diff
changeset
|
806 [warn_hdf5= |
9892
ac69e6f4b33d
Add HDF5-1.8 compatibility while maintaining compatibility with HDF5-1.6 versions
Kacper Kowalik <xarthisius.kk@gmail.com>
parents:
9882
diff
changeset
|
807 OCTAVE_HDF5_HAS_ENFORCED_16_API |
ac69e6f4b33d
Add HDF5-1.8 compatibility while maintaining compatibility with HDF5-1.6 versions
Kacper Kowalik <xarthisius.kk@gmail.com>
parents:
9882
diff
changeset
|
808 TEXINFO_HDF5="@set HAVE_HDF5" |
15063
36cbcc37fdb8
Refactor configure.ac to make it more understandable.
Rik <rik@octave.org>
parents:
15059
diff
changeset
|
809 AC_DEFINE(HAVE_HDF5, 1, [Define to 1 if HDF5 is available and newer than version 1.6.]) |
10123
8590f3c51868
Fix a few MSVC-related problems and partially re-enable MSVC compilation.
Michael Goffioul <michael.goffioul@gmail.com>
parents:
10092
diff
changeset
|
810 if test "$have_msvc" = "yes"; then |
8590f3c51868
Fix a few MSVC-related problems and partially re-enable MSVC compilation.
Michael Goffioul <michael.goffioul@gmail.com>
parents:
10092
diff
changeset
|
811 OCTAVE_HDF5_DLL |
8590f3c51868
Fix a few MSVC-related problems and partially re-enable MSVC compilation.
Michael Goffioul <michael.goffioul@gmail.com>
parents:
10092
diff
changeset
|
812 fi |
9892
ac69e6f4b33d
Add HDF5-1.8 compatibility while maintaining compatibility with HDF5-1.6 versions
Kacper Kowalik <xarthisius.kk@gmail.com>
parents:
9882
diff
changeset
|
813 ]) |
9542
f5ec5dc66824
use OCTAVE_CHECK_LIBRARY to check for HDF5
John W. Eaton <jwe@octave.org>
parents:
9540
diff
changeset
|
814 CPPFLAGS="$save_CPPFLAGS" |
f5ec5dc66824
use OCTAVE_CHECK_LIBRARY to check for HDF5
John W. Eaton <jwe@octave.org>
parents:
9540
diff
changeset
|
815 LIBS="$save_LIBS" |
5270 | 816 |
13685
8a688c3179dd
Added files for build system integration.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13024
diff
changeset
|
817 dnl @synopsis BNV_HAVE_QT [--with-Qt-dir=DIR] [--with-Qt-lib-dir=DIR] [--with-Qt-lib=LIB] |
8a688c3179dd
Added files for build system integration.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13024
diff
changeset
|
818 dnl @synopsis BNV_HAVE_QT [--with-Qt-include-dir=DIR] [--with-Qt-bin-dir=DIR] [--with-Qt-lib-dir=DIR] [--with-Qt-lib=LIB] |
8a688c3179dd
Added files for build system integration.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13024
diff
changeset
|
819 dnl |
8a688c3179dd
Added files for build system integration.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13024
diff
changeset
|
820 dnl @summary Search for Trolltech's Qt GUI framework. |
8a688c3179dd
Added files for build system integration.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13024
diff
changeset
|
821 dnl |
8a688c3179dd
Added files for build system integration.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13024
diff
changeset
|
822 dnl Searches common directories for Qt include files, libraries and Qt |
8a688c3179dd
Added files for build system integration.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13024
diff
changeset
|
823 dnl binary utilities. The macro supports several different versions of |
8a688c3179dd
Added files for build system integration.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13024
diff
changeset
|
824 dnl the Qt framework being installed on the same machine. Without |
8a688c3179dd
Added files for build system integration.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13024
diff
changeset
|
825 dnl options, the macro is designed to look for the latest library, |
8a688c3179dd
Added files for build system integration.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13024
diff
changeset
|
826 dnl i.e., the highest definition of QT_VERSION in qglobal.h. By use of |
8a688c3179dd
Added files for build system integration.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13024
diff
changeset
|
827 dnl one or more options a different library may be selected. There are |
8a688c3179dd
Added files for build system integration.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13024
diff
changeset
|
828 dnl two different sets of options. Both sets contain the option |
8a688c3179dd
Added files for build system integration.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13024
diff
changeset
|
829 dnl --with-Qt-lib=LIB which can be used to force the use of a |
8a688c3179dd
Added files for build system integration.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13024
diff
changeset
|
830 dnl particular version of the library file when more than one are |
8a688c3179dd
Added files for build system integration.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13024
diff
changeset
|
831 dnl available. LIB must be in the form as it would appear behind the |
8a688c3179dd
Added files for build system integration.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13024
diff
changeset
|
832 dnl "-l" option to the compiler. Examples for LIB would be "qt-mt" for |
8a688c3179dd
Added files for build system integration.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13024
diff
changeset
|
833 dnl the multi-threaded version and "qt" for the regular version. In |
8a688c3179dd
Added files for build system integration.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13024
diff
changeset
|
834 dnl addition to this, the first set consists of an option |
8a688c3179dd
Added files for build system integration.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13024
diff
changeset
|
835 dnl --with-Qt-dir=DIR which can be used when the installation conforms |
8a688c3179dd
Added files for build system integration.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13024
diff
changeset
|
836 dnl to Trolltech's standard installation, which means that header files |
8a688c3179dd
Added files for build system integration.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13024
diff
changeset
|
837 dnl are in DIR/include, binary utilities are in DIR/bin and the library |
8a688c3179dd
Added files for build system integration.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13024
diff
changeset
|
838 dnl is in DIR/lib. The second set of options can be used to indicate |
8a688c3179dd
Added files for build system integration.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13024
diff
changeset
|
839 dnl individual locations for the header files, the binary utilities and |
8a688c3179dd
Added files for build system integration.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13024
diff
changeset
|
840 dnl the library file, in addition to the specific version of the |
8a688c3179dd
Added files for build system integration.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13024
diff
changeset
|
841 dnl library file. |
8a688c3179dd
Added files for build system integration.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13024
diff
changeset
|
842 dnl |
8a688c3179dd
Added files for build system integration.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13024
diff
changeset
|
843 dnl The following shell variable is set to either "yes" or "no": |
8a688c3179dd
Added files for build system integration.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13024
diff
changeset
|
844 dnl |
8a688c3179dd
Added files for build system integration.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13024
diff
changeset
|
845 dnl have_qt |
8a688c3179dd
Added files for build system integration.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13024
diff
changeset
|
846 dnl |
8a688c3179dd
Added files for build system integration.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13024
diff
changeset
|
847 dnl Additionally, the following variables are exported: |
8a688c3179dd
Added files for build system integration.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13024
diff
changeset
|
848 dnl |
8a688c3179dd
Added files for build system integration.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13024
diff
changeset
|
849 dnl QT_CXXFLAGS |
8a688c3179dd
Added files for build system integration.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13024
diff
changeset
|
850 dnl QT_LIBS |
8a688c3179dd
Added files for build system integration.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13024
diff
changeset
|
851 dnl QT_MOC |
8a688c3179dd
Added files for build system integration.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13024
diff
changeset
|
852 dnl QT_UIC |
8a688c3179dd
Added files for build system integration.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13024
diff
changeset
|
853 dnl QT_DIR |
8a688c3179dd
Added files for build system integration.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13024
diff
changeset
|
854 dnl |
8a688c3179dd
Added files for build system integration.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13024
diff
changeset
|
855 dnl which respectively contain an "-I" flag pointing to the Qt include |
8a688c3179dd
Added files for build system integration.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13024
diff
changeset
|
856 dnl directory (and "-DQT_THREAD_SUPPORT" when LIB is "qt-mt"), link |
8a688c3179dd
Added files for build system integration.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13024
diff
changeset
|
857 dnl flags necessary to link with Qt and X, the name of the meta object |
8a688c3179dd
Added files for build system integration.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13024
diff
changeset
|
858 dnl compiler and the user interface compiler both with full path, and |
8a688c3179dd
Added files for build system integration.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13024
diff
changeset
|
859 dnl finaly the variable QTDIR as Trolltech likes to see it defined (if |
8a688c3179dd
Added files for build system integration.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13024
diff
changeset
|
860 dnl possible). |
8a688c3179dd
Added files for build system integration.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13024
diff
changeset
|
861 dnl |
8a688c3179dd
Added files for build system integration.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13024
diff
changeset
|
862 dnl Example lines for Makefile.in: |
8a688c3179dd
Added files for build system integration.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13024
diff
changeset
|
863 dnl |
8a688c3179dd
Added files for build system integration.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13024
diff
changeset
|
864 dnl CXXFLAGS = @QT_CXXFLAGS@ |
8a688c3179dd
Added files for build system integration.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13024
diff
changeset
|
865 dnl MOC = @QT_MOC@ |
8a688c3179dd
Added files for build system integration.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13024
diff
changeset
|
866 dnl |
8a688c3179dd
Added files for build system integration.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13024
diff
changeset
|
867 dnl After the variables have been set, a trial compile and link is |
8a688c3179dd
Added files for build system integration.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13024
diff
changeset
|
868 dnl performed to check the correct functioning of the meta object |
8a688c3179dd
Added files for build system integration.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13024
diff
changeset
|
869 dnl compiler. This test may fail when the different detected elements |
8a688c3179dd
Added files for build system integration.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13024
diff
changeset
|
870 dnl stem from different releases of the Qt framework. In that case, an |
8a688c3179dd
Added files for build system integration.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13024
diff
changeset
|
871 dnl error message is emitted and configure stops. |
8a688c3179dd
Added files for build system integration.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13024
diff
changeset
|
872 dnl |
8a688c3179dd
Added files for build system integration.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13024
diff
changeset
|
873 dnl No common variables such as $LIBS or $CFLAGS are polluted. |
8a688c3179dd
Added files for build system integration.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13024
diff
changeset
|
874 dnl |
8a688c3179dd
Added files for build system integration.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13024
diff
changeset
|
875 dnl Options: |
8a688c3179dd
Added files for build system integration.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13024
diff
changeset
|
876 dnl |
8a688c3179dd
Added files for build system integration.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13024
diff
changeset
|
877 dnl --with-Qt-dir=DIR: DIR is equal to $QTDIR if you have followed the |
8a688c3179dd
Added files for build system integration.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13024
diff
changeset
|
878 dnl installation instructions of Trolltech. Header files are in |
8a688c3179dd
Added files for build system integration.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13024
diff
changeset
|
879 dnl DIR/include, binary utilities are in DIR/bin and the library is in |
8a688c3179dd
Added files for build system integration.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13024
diff
changeset
|
880 dnl DIR/lib. |
8a688c3179dd
Added files for build system integration.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13024
diff
changeset
|
881 dnl |
8a688c3179dd
Added files for build system integration.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13024
diff
changeset
|
882 dnl --with-Qt-include-dir=DIR: Qt header files are in DIR. |
8a688c3179dd
Added files for build system integration.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13024
diff
changeset
|
883 dnl |
8a688c3179dd
Added files for build system integration.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13024
diff
changeset
|
884 dnl --with-Qt-bin-dir=DIR: Qt utilities such as moc and uic are in DIR. |
8a688c3179dd
Added files for build system integration.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13024
diff
changeset
|
885 dnl |
8a688c3179dd
Added files for build system integration.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13024
diff
changeset
|
886 dnl --with-Qt-lib-dir=DIR: The Qt library is in DIR. |
8a688c3179dd
Added files for build system integration.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13024
diff
changeset
|
887 dnl |
8a688c3179dd
Added files for build system integration.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13024
diff
changeset
|
888 dnl --with-Qt-lib=LIB: Use -lLIB to link with the Qt library. |
8a688c3179dd
Added files for build system integration.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13024
diff
changeset
|
889 dnl |
8a688c3179dd
Added files for build system integration.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13024
diff
changeset
|
890 dnl If some option "=no" or, equivalently, a --without-Qt-* version is |
8a688c3179dd
Added files for build system integration.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13024
diff
changeset
|
891 dnl given in stead of a --with-Qt-*, "have_qt" is set to "no" and the |
8a688c3179dd
Added files for build system integration.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13024
diff
changeset
|
892 dnl other variables are set to the empty string. |
8a688c3179dd
Added files for build system integration.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13024
diff
changeset
|
893 dnl |
8a688c3179dd
Added files for build system integration.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13024
diff
changeset
|
894 dnl @category InstalledPackages |
8a688c3179dd
Added files for build system integration.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13024
diff
changeset
|
895 dnl @author Bastiaan Veelo <Bastiaan@Veelo.net> |
8a688c3179dd
Added files for build system integration.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13024
diff
changeset
|
896 dnl @version 2006-03-12 |
8a688c3179dd
Added files for build system integration.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13024
diff
changeset
|
897 dnl @license AllPermissive |
8a688c3179dd
Added files for build system integration.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13024
diff
changeset
|
898 |
8a688c3179dd
Added files for build system integration.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13024
diff
changeset
|
899 dnl Copyright (C) 2001, 2002, 2003, 2005, 2006 Bastiaan Veelo |
8a688c3179dd
Added files for build system integration.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13024
diff
changeset
|
900 |
8a688c3179dd
Added files for build system integration.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13024
diff
changeset
|
901 dnl THANKS! This code includes bug fixes and contributions made by: |
8a688c3179dd
Added files for build system integration.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13024
diff
changeset
|
902 dnl Tim McClarren, |
8a688c3179dd
Added files for build system integration.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13024
diff
changeset
|
903 dnl Dennis R. Weilert, |
8a688c3179dd
Added files for build system integration.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13024
diff
changeset
|
904 dnl Qingning Huo, |
8a688c3179dd
Added files for build system integration.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13024
diff
changeset
|
905 dnl Brian Mingus, |
8a688c3179dd
Added files for build system integration.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13024
diff
changeset
|
906 dnl Jens Hannemann, |
8a688c3179dd
Added files for build system integration.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13024
diff
changeset
|
907 dnl Pavel Roskin, |
8a688c3179dd
Added files for build system integration.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13024
diff
changeset
|
908 dnl Scott J. Bertin. |
8a688c3179dd
Added files for build system integration.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13024
diff
changeset
|
909 |
8a688c3179dd
Added files for build system integration.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13024
diff
changeset
|
910 dnl ChangeLog |
8a688c3179dd
Added files for build system integration.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13024
diff
changeset
|
911 dnl 2006-03-12 * Hide output of ls and fix an m4 quoting problem (due to Scott J. Bertin). |
8a688c3179dd
Added files for build system integration.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13024
diff
changeset
|
912 dnl 2006-02-13 * Check compiler return value instead of parsing the error stream, |
8a688c3179dd
Added files for build system integration.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13024
diff
changeset
|
913 dnl which detected warnings as false negatives (due to Jens Hannemann). |
8a688c3179dd
Added files for build system integration.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13024
diff
changeset
|
914 dnl 2006-02-02 * Spelling of "Success". |
8a688c3179dd
Added files for build system integration.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13024
diff
changeset
|
915 dnl * Fixed unsave test for $bnv_qt_lib without quotes. |
8a688c3179dd
Added files for build system integration.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13024
diff
changeset
|
916 dnl * Put dnl in front of all comments. |
8a688c3179dd
Added files for build system integration.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13024
diff
changeset
|
917 dnl * Changed -l$bnv_qt_lib_dir into -L$bnv_qt_lib_dir (all due to Pavel Roskin). |
8a688c3179dd
Added files for build system integration.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13024
diff
changeset
|
918 dnl 2006-01-19 * Support for 64bit architectures. |
8a688c3179dd
Added files for build system integration.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13024
diff
changeset
|
919 dnl * Updated documentation. |
8a688c3179dd
Added files for build system integration.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13024
diff
changeset
|
920 dnl 2006-01-18: * Fix "cat: bnv_qt_test.c: No such file or directory" (due to Jens Hannemann). |
8a688c3179dd
Added files for build system integration.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13024
diff
changeset
|
921 dnl * Hide output of failing ls. |
8a688c3179dd
Added files for build system integration.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13024
diff
changeset
|
922 dnl 2006-01-11: * Check in /Developer on Mac OS X; Check in $QTDIR (due to Brian Mingus). |
8a688c3179dd
Added files for build system integration.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13024
diff
changeset
|
923 |
8a688c3179dd
Added files for build system integration.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13024
diff
changeset
|
924 dnl Calls BNV_PATH_QT_DIRECT (contained in this file) as a subroutine. |
8a688c3179dd
Added files for build system integration.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13024
diff
changeset
|
925 AC_DEFUN([BNV_HAVE_QT], |
8a688c3179dd
Added files for build system integration.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13024
diff
changeset
|
926 [ |
8a688c3179dd
Added files for build system integration.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13024
diff
changeset
|
927 AC_REQUIRE([AC_PROG_CXX]) |
8a688c3179dd
Added files for build system integration.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13024
diff
changeset
|
928 AC_REQUIRE([AC_PATH_X]) |
8a688c3179dd
Added files for build system integration.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13024
diff
changeset
|
929 AC_REQUIRE([AC_PATH_XTRA]) |
8a688c3179dd
Added files for build system integration.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13024
diff
changeset
|
930 |
8a688c3179dd
Added files for build system integration.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13024
diff
changeset
|
931 AC_MSG_CHECKING(for Qt) |
8a688c3179dd
Added files for build system integration.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13024
diff
changeset
|
932 |
8a688c3179dd
Added files for build system integration.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13024
diff
changeset
|
933 AC_ARG_WITH([Qt-dir], |
8a688c3179dd
Added files for build system integration.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13024
diff
changeset
|
934 [ --with-Qt-dir=DIR DIR is equal to $QTDIR if you have followed the |
8a688c3179dd
Added files for build system integration.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13024
diff
changeset
|
935 installation instructions of Trolltech. Header |
8a688c3179dd
Added files for build system integration.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13024
diff
changeset
|
936 files are in DIR/include, binary utilities are |
8a688c3179dd
Added files for build system integration.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13024
diff
changeset
|
937 in DIR/bin. The library is in DIR/lib, unless |
8a688c3179dd
Added files for build system integration.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13024
diff
changeset
|
938 --with-Qt-lib-dir is also set.]) |
8a688c3179dd
Added files for build system integration.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13024
diff
changeset
|
939 AC_ARG_WITH([Qt-include-dir], |
8a688c3179dd
Added files for build system integration.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13024
diff
changeset
|
940 [ --with-Qt-include-dir=DIR |
8a688c3179dd
Added files for build system integration.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13024
diff
changeset
|
941 Qt header files are in DIR]) |
8a688c3179dd
Added files for build system integration.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13024
diff
changeset
|
942 AC_ARG_WITH([Qt-bin-dir], |
8a688c3179dd
Added files for build system integration.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13024
diff
changeset
|
943 [ --with-Qt-bin-dir=DIR Qt utilities such as moc and uic are in DIR]) |
8a688c3179dd
Added files for build system integration.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13024
diff
changeset
|
944 AC_ARG_WITH([Qt-lib-dir], |
8a688c3179dd
Added files for build system integration.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13024
diff
changeset
|
945 [ --with-Qt-lib-dir=DIR The Qt library is in DIR]) |
8a688c3179dd
Added files for build system integration.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13024
diff
changeset
|
946 AC_ARG_WITH([Qt-lib], |
8a688c3179dd
Added files for build system integration.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13024
diff
changeset
|
947 [ --with-Qt-lib=LIB Use -lLIB to link with the Qt library]) |
8a688c3179dd
Added files for build system integration.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13024
diff
changeset
|
948 if test x"$with_Qt_dir" = x"no" || |
8a688c3179dd
Added files for build system integration.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13024
diff
changeset
|
949 test x"$with_Qt_include-dir" = x"no" || |
8a688c3179dd
Added files for build system integration.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13024
diff
changeset
|
950 test x"$with_Qt_bin_dir" = x"no" || |
8a688c3179dd
Added files for build system integration.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13024
diff
changeset
|
951 test x"$with_Qt_lib_dir" = x"no" || |
8a688c3179dd
Added files for build system integration.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13024
diff
changeset
|
952 test x"$with_Qt_lib" = x"no"; then |
8a688c3179dd
Added files for build system integration.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13024
diff
changeset
|
953 # user disabled Qt. Leave cache alone. |
8a688c3179dd
Added files for build system integration.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13024
diff
changeset
|
954 have_qt="User disabled Qt." |
8a688c3179dd
Added files for build system integration.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13024
diff
changeset
|
955 else |
8a688c3179dd
Added files for build system integration.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13024
diff
changeset
|
956 # "yes" is a bogus option |
8a688c3179dd
Added files for build system integration.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13024
diff
changeset
|
957 if test x"$with_Qt_dir" = xyes; then |
8a688c3179dd
Added files for build system integration.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13024
diff
changeset
|
958 with_Qt_dir= |
8a688c3179dd
Added files for build system integration.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13024
diff
changeset
|
959 fi |
8a688c3179dd
Added files for build system integration.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13024
diff
changeset
|
960 if test x"$with_Qt_include_dir" = xyes; then |
8a688c3179dd
Added files for build system integration.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13024
diff
changeset
|
961 with_Qt_include_dir= |
8a688c3179dd
Added files for build system integration.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13024
diff
changeset
|
962 fi |
8a688c3179dd
Added files for build system integration.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13024
diff
changeset
|
963 if test x"$with_Qt_bin_dir" = xyes; then |
8a688c3179dd
Added files for build system integration.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13024
diff
changeset
|
964 with_Qt_bin_dir= |
8a688c3179dd
Added files for build system integration.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13024
diff
changeset
|
965 fi |
8a688c3179dd
Added files for build system integration.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13024
diff
changeset
|
966 if test x"$with_Qt_lib_dir" = xyes; then |
8a688c3179dd
Added files for build system integration.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13024
diff
changeset
|
967 with_Qt_lib_dir= |
8a688c3179dd
Added files for build system integration.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13024
diff
changeset
|
968 fi |
8a688c3179dd
Added files for build system integration.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13024
diff
changeset
|
969 if test x"$with_Qt_lib" = xyes; then |
8a688c3179dd
Added files for build system integration.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13024
diff
changeset
|
970 with_Qt_lib= |
8a688c3179dd
Added files for build system integration.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13024
diff
changeset
|
971 fi |
8a688c3179dd
Added files for build system integration.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13024
diff
changeset
|
972 # No Qt unless we discover otherwise |
8a688c3179dd
Added files for build system integration.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13024
diff
changeset
|
973 have_qt=no |
8a688c3179dd
Added files for build system integration.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13024
diff
changeset
|
974 # Check whether we are requested to link with a specific version |
8a688c3179dd
Added files for build system integration.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13024
diff
changeset
|
975 if test x"$with_Qt_lib" != x; then |
8a688c3179dd
Added files for build system integration.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13024
diff
changeset
|
976 bnv_qt_lib="$with_Qt_lib" |
8a688c3179dd
Added files for build system integration.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13024
diff
changeset
|
977 fi |
8a688c3179dd
Added files for build system integration.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13024
diff
changeset
|
978 # Check whether we were supplied with an answer already |
8a688c3179dd
Added files for build system integration.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13024
diff
changeset
|
979 if test x"$with_Qt_dir" != x; then |
8a688c3179dd
Added files for build system integration.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13024
diff
changeset
|
980 have_qt=yes |
8a688c3179dd
Added files for build system integration.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13024
diff
changeset
|
981 bnv_qt_dir="$with_Qt_dir" |
8a688c3179dd
Added files for build system integration.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13024
diff
changeset
|
982 bnv_qt_include_dir="$with_Qt_dir/include" |
8a688c3179dd
Added files for build system integration.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13024
diff
changeset
|
983 bnv_qt_bin_dir="$with_Qt_dir/bin" |
8a688c3179dd
Added files for build system integration.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13024
diff
changeset
|
984 bnv_qt_lib_dir="$with_Qt_dir/lib" |
8a688c3179dd
Added files for build system integration.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13024
diff
changeset
|
985 # Only search for the lib if the user did not define one already |
8a688c3179dd
Added files for build system integration.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13024
diff
changeset
|
986 if test x"$bnv_qt_lib" = x; then |
8a688c3179dd
Added files for build system integration.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13024
diff
changeset
|
987 bnv_qt_lib="`ls $bnv_qt_lib_dir/libqt* | sed -n 1p | |
8a688c3179dd
Added files for build system integration.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13024
diff
changeset
|
988 sed s@$bnv_qt_lib_dir/lib@@ | [sed s@[.].*@@]`" |
8a688c3179dd
Added files for build system integration.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13024
diff
changeset
|
989 fi |
8a688c3179dd
Added files for build system integration.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13024
diff
changeset
|
990 bnv_qt_LIBS="-L$bnv_qt_lib_dir -l$bnv_qt_lib $X_PRE_LIBS $X_LIBS -lX11 -lXext -lXmu -lXt -lXi $X_EXTRA_LIBS" |
8a688c3179dd
Added files for build system integration.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13024
diff
changeset
|
991 else |
8a688c3179dd
Added files for build system integration.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13024
diff
changeset
|
992 # Use cached value or do search, starting with suggestions from |
8a688c3179dd
Added files for build system integration.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13024
diff
changeset
|
993 # the command line |
8a688c3179dd
Added files for build system integration.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13024
diff
changeset
|
994 AC_CACHE_VAL(bnv_cv_have_qt, |
8a688c3179dd
Added files for build system integration.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13024
diff
changeset
|
995 [ |
8a688c3179dd
Added files for build system integration.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13024
diff
changeset
|
996 # We are not given a solution and there is no cached value. |
8a688c3179dd
Added files for build system integration.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13024
diff
changeset
|
997 bnv_qt_dir=NO |
8a688c3179dd
Added files for build system integration.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13024
diff
changeset
|
998 bnv_qt_include_dir=NO |
8a688c3179dd
Added files for build system integration.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13024
diff
changeset
|
999 bnv_qt_lib_dir=NO |
8a688c3179dd
Added files for build system integration.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13024
diff
changeset
|
1000 if test x"$bnv_qt_lib" = x; then |
8a688c3179dd
Added files for build system integration.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13024
diff
changeset
|
1001 bnv_qt_lib=NO |
8a688c3179dd
Added files for build system integration.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13024
diff
changeset
|
1002 fi |
8a688c3179dd
Added files for build system integration.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13024
diff
changeset
|
1003 BNV_PATH_QT_DIRECT |
8a688c3179dd
Added files for build system integration.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13024
diff
changeset
|
1004 if test "$bnv_qt_dir" = NO || |
8a688c3179dd
Added files for build system integration.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13024
diff
changeset
|
1005 test "$bnv_qt_include_dir" = NO || |
8a688c3179dd
Added files for build system integration.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13024
diff
changeset
|
1006 test "$bnv_qt_lib_dir" = NO || |
8a688c3179dd
Added files for build system integration.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13024
diff
changeset
|
1007 test "$bnv_qt_lib" = NO; then |
8a688c3179dd
Added files for build system integration.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13024
diff
changeset
|
1008 # Problem with finding complete Qt. Cache the known absence of Qt. |
8a688c3179dd
Added files for build system integration.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13024
diff
changeset
|
1009 bnv_cv_have_qt="have_qt=no" |
8a688c3179dd
Added files for build system integration.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13024
diff
changeset
|
1010 else |
8a688c3179dd
Added files for build system integration.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13024
diff
changeset
|
1011 # Record where we found Qt for the cache. |
8a688c3179dd
Added files for build system integration.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13024
diff
changeset
|
1012 bnv_cv_have_qt="have_qt=yes \ |
8a688c3179dd
Added files for build system integration.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13024
diff
changeset
|
1013 bnv_qt_dir=$bnv_qt_dir \ |
8a688c3179dd
Added files for build system integration.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13024
diff
changeset
|
1014 bnv_qt_include_dir=$bnv_qt_include_dir \ |
8a688c3179dd
Added files for build system integration.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13024
diff
changeset
|
1015 bnv_qt_bin_dir=$bnv_qt_bin_dir \ |
8a688c3179dd
Added files for build system integration.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13024
diff
changeset
|
1016 bnv_qt_LIBS=\"$bnv_qt_LIBS\"" |
8a688c3179dd
Added files for build system integration.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13024
diff
changeset
|
1017 fi |
8a688c3179dd
Added files for build system integration.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13024
diff
changeset
|
1018 ])dnl |
8a688c3179dd
Added files for build system integration.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13024
diff
changeset
|
1019 eval "$bnv_cv_have_qt" |
8a688c3179dd
Added files for build system integration.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13024
diff
changeset
|
1020 fi # all $bnv_qt_* are set |
8a688c3179dd
Added files for build system integration.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13024
diff
changeset
|
1021 fi # $have_qt reflects the system status |
8a688c3179dd
Added files for build system integration.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13024
diff
changeset
|
1022 if test x"$have_qt" = xyes; then |
8a688c3179dd
Added files for build system integration.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13024
diff
changeset
|
1023 QT_CXXFLAGS="-I$bnv_qt_include_dir" |
8a688c3179dd
Added files for build system integration.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13024
diff
changeset
|
1024 if test x"$bnv_qt_lib" = xqt-mt; then |
8a688c3179dd
Added files for build system integration.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13024
diff
changeset
|
1025 QT_CXXFLAGS="$QT_CXXFLAGS -DQT_THREAD_SUPPORT" |
8a688c3179dd
Added files for build system integration.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13024
diff
changeset
|
1026 fi |
8a688c3179dd
Added files for build system integration.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13024
diff
changeset
|
1027 QT_DIR="$bnv_qt_dir" |
8a688c3179dd
Added files for build system integration.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13024
diff
changeset
|
1028 QT_LIBS="$bnv_qt_LIBS" |
8a688c3179dd
Added files for build system integration.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13024
diff
changeset
|
1029 # If bnv_qt_dir is defined, utilities are expected to be in the |
8a688c3179dd
Added files for build system integration.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13024
diff
changeset
|
1030 # bin subdirectory |
8a688c3179dd
Added files for build system integration.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13024
diff
changeset
|
1031 if test x"$bnv_qt_dir" != x; then |
8a688c3179dd
Added files for build system integration.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13024
diff
changeset
|
1032 if test -x "$bnv_qt_dir/bin/uic"; then |
8a688c3179dd
Added files for build system integration.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13024
diff
changeset
|
1033 QT_UIC="$bnv_qt_dir/bin/uic" |
8a688c3179dd
Added files for build system integration.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13024
diff
changeset
|
1034 else |
8a688c3179dd
Added files for build system integration.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13024
diff
changeset
|
1035 # Old versions of Qt don't have uic |
8a688c3179dd
Added files for build system integration.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13024
diff
changeset
|
1036 QT_UIC= |
8a688c3179dd
Added files for build system integration.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13024
diff
changeset
|
1037 fi |
8a688c3179dd
Added files for build system integration.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13024
diff
changeset
|
1038 QT_MOC="$bnv_qt_dir/bin/moc" |
8a688c3179dd
Added files for build system integration.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13024
diff
changeset
|
1039 else |
8a688c3179dd
Added files for build system integration.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13024
diff
changeset
|
1040 # Or maybe we are told where to look for the utilities |
8a688c3179dd
Added files for build system integration.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13024
diff
changeset
|
1041 if test x"$bnv_qt_bin_dir" != x; then |
8a688c3179dd
Added files for build system integration.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13024
diff
changeset
|
1042 if test -x "$bnv_qt_bin_dir/uic"; then |
8a688c3179dd
Added files for build system integration.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13024
diff
changeset
|
1043 QT_UIC="$bnv_qt_bin_dir/uic" |
8a688c3179dd
Added files for build system integration.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13024
diff
changeset
|
1044 else |
8a688c3179dd
Added files for build system integration.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13024
diff
changeset
|
1045 # Old versions of Qt don't have uic |
8a688c3179dd
Added files for build system integration.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13024
diff
changeset
|
1046 QT_UIC= |
8a688c3179dd
Added files for build system integration.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13024
diff
changeset
|
1047 fi |
8a688c3179dd
Added files for build system integration.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13024
diff
changeset
|
1048 QT_MOC="$bnv_qt_bin_dir/moc" |
8a688c3179dd
Added files for build system integration.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13024
diff
changeset
|
1049 else |
8a688c3179dd
Added files for build system integration.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13024
diff
changeset
|
1050 # Last possibility is that they are in $PATH |
8a688c3179dd
Added files for build system integration.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13024
diff
changeset
|
1051 QT_UIC="`which uic`" |
8a688c3179dd
Added files for build system integration.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13024
diff
changeset
|
1052 QT_MOC="`which moc`" |
8a688c3179dd
Added files for build system integration.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13024
diff
changeset
|
1053 fi |
8a688c3179dd
Added files for build system integration.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13024
diff
changeset
|
1054 fi |
8a688c3179dd
Added files for build system integration.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13024
diff
changeset
|
1055 # All variables are defined, report the result |
8a688c3179dd
Added files for build system integration.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13024
diff
changeset
|
1056 AC_MSG_RESULT([$have_qt: |
8a688c3179dd
Added files for build system integration.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13024
diff
changeset
|
1057 QT_CXXFLAGS=$QT_CXXFLAGS |
8a688c3179dd
Added files for build system integration.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13024
diff
changeset
|
1058 QT_DIR=$QT_DIR |
8a688c3179dd
Added files for build system integration.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13024
diff
changeset
|
1059 QT_LIBS=$QT_LIBS |
8a688c3179dd
Added files for build system integration.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13024
diff
changeset
|
1060 QT_UIC=$QT_UIC |
8a688c3179dd
Added files for build system integration.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13024
diff
changeset
|
1061 QT_MOC=$QT_MOC]) |
8a688c3179dd
Added files for build system integration.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13024
diff
changeset
|
1062 else |
8a688c3179dd
Added files for build system integration.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13024
diff
changeset
|
1063 # Qt was not found |
8a688c3179dd
Added files for build system integration.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13024
diff
changeset
|
1064 QT_CXXFLAGS= |
8a688c3179dd
Added files for build system integration.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13024
diff
changeset
|
1065 QT_DIR= |
8a688c3179dd
Added files for build system integration.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13024
diff
changeset
|
1066 QT_LIBS= |
8a688c3179dd
Added files for build system integration.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13024
diff
changeset
|
1067 QT_UIC= |
8a688c3179dd
Added files for build system integration.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13024
diff
changeset
|
1068 QT_MOC= |
8a688c3179dd
Added files for build system integration.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13024
diff
changeset
|
1069 AC_MSG_RESULT($have_qt) |
8a688c3179dd
Added files for build system integration.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13024
diff
changeset
|
1070 fi |
8a688c3179dd
Added files for build system integration.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13024
diff
changeset
|
1071 AC_SUBST(QT_CXXFLAGS) |
8a688c3179dd
Added files for build system integration.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13024
diff
changeset
|
1072 AC_SUBST(QT_DIR) |
8a688c3179dd
Added files for build system integration.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13024
diff
changeset
|
1073 AC_SUBST(QT_LIBS) |
8a688c3179dd
Added files for build system integration.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13024
diff
changeset
|
1074 AC_SUBST(QT_UIC) |
8a688c3179dd
Added files for build system integration.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13024
diff
changeset
|
1075 AC_SUBST(QT_MOC) |
8a688c3179dd
Added files for build system integration.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13024
diff
changeset
|
1076 |
8a688c3179dd
Added files for build system integration.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13024
diff
changeset
|
1077 #### Being paranoid: |
8a688c3179dd
Added files for build system integration.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13024
diff
changeset
|
1078 if test x"$have_qt" = xyes; then |
8a688c3179dd
Added files for build system integration.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13024
diff
changeset
|
1079 AC_MSG_CHECKING(correct functioning of Qt installation) |
8a688c3179dd
Added files for build system integration.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13024
diff
changeset
|
1080 AC_CACHE_VAL(bnv_cv_qt_test_result, |
8a688c3179dd
Added files for build system integration.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13024
diff
changeset
|
1081 [ |
8a688c3179dd
Added files for build system integration.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13024
diff
changeset
|
1082 cat > bnv_qt_test.h << EOF |
8a688c3179dd
Added files for build system integration.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13024
diff
changeset
|
1083 #include <qobject.h> |
8a688c3179dd
Added files for build system integration.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13024
diff
changeset
|
1084 class Test : public QObject |
8a688c3179dd
Added files for build system integration.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13024
diff
changeset
|
1085 { |
8a688c3179dd
Added files for build system integration.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13024
diff
changeset
|
1086 Q_OBJECT |
8a688c3179dd
Added files for build system integration.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13024
diff
changeset
|
1087 public: |
8a688c3179dd
Added files for build system integration.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13024
diff
changeset
|
1088 Test() {} |
8a688c3179dd
Added files for build system integration.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13024
diff
changeset
|
1089 ~Test() {} |
8a688c3179dd
Added files for build system integration.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13024
diff
changeset
|
1090 public slots: |
8a688c3179dd
Added files for build system integration.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13024
diff
changeset
|
1091 void receive() {} |
8a688c3179dd
Added files for build system integration.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13024
diff
changeset
|
1092 signals: |
8a688c3179dd
Added files for build system integration.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13024
diff
changeset
|
1093 void send(); |
8a688c3179dd
Added files for build system integration.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13024
diff
changeset
|
1094 }; |
8a688c3179dd
Added files for build system integration.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13024
diff
changeset
|
1095 EOF |
8a688c3179dd
Added files for build system integration.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13024
diff
changeset
|
1096 |
8a688c3179dd
Added files for build system integration.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13024
diff
changeset
|
1097 cat > bnv_qt_main.$ac_ext << EOF |
8a688c3179dd
Added files for build system integration.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13024
diff
changeset
|
1098 #include "bnv_qt_test.h" |
8a688c3179dd
Added files for build system integration.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13024
diff
changeset
|
1099 #include <qapplication.h> |
8a688c3179dd
Added files for build system integration.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13024
diff
changeset
|
1100 int main( int argc, char **argv ) |
8a688c3179dd
Added files for build system integration.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13024
diff
changeset
|
1101 { |
8a688c3179dd
Added files for build system integration.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13024
diff
changeset
|
1102 QApplication app( argc, argv ); |
8a688c3179dd
Added files for build system integration.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13024
diff
changeset
|
1103 Test t; |
8a688c3179dd
Added files for build system integration.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13024
diff
changeset
|
1104 QObject::connect( &t, SIGNAL(send()), &t, SLOT(receive()) ); |
8a688c3179dd
Added files for build system integration.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13024
diff
changeset
|
1105 } |
8a688c3179dd
Added files for build system integration.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13024
diff
changeset
|
1106 EOF |
8a688c3179dd
Added files for build system integration.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13024
diff
changeset
|
1107 |
8a688c3179dd
Added files for build system integration.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13024
diff
changeset
|
1108 bnv_cv_qt_test_result="failure" |
8a688c3179dd
Added files for build system integration.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13024
diff
changeset
|
1109 bnv_try_1="$QT_MOC bnv_qt_test.h -o moc_bnv_qt_test.$ac_ext >/dev/null 2>/dev/null" |
8a688c3179dd
Added files for build system integration.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13024
diff
changeset
|
1110 AC_TRY_EVAL(bnv_try_1) |
8a688c3179dd
Added files for build system integration.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13024
diff
changeset
|
1111 if test x"$ac_status" != x0; then |
8a688c3179dd
Added files for build system integration.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13024
diff
changeset
|
1112 echo "$bnv_err_1" >&AC_FD_CC |
8a688c3179dd
Added files for build system integration.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13024
diff
changeset
|
1113 echo "configure: could not run $QT_MOC on:" >&AC_FD_CC |
8a688c3179dd
Added files for build system integration.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13024
diff
changeset
|
1114 cat bnv_qt_test.h >&AC_FD_CC |
8a688c3179dd
Added files for build system integration.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13024
diff
changeset
|
1115 else |
8a688c3179dd
Added files for build system integration.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13024
diff
changeset
|
1116 bnv_try_2="$CXX $QT_CXXFLAGS -c $CXXFLAGS -o moc_bnv_qt_test.o moc_bnv_qt_test.$ac_ext >/dev/null 2>/dev/null" |
8a688c3179dd
Added files for build system integration.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13024
diff
changeset
|
1117 AC_TRY_EVAL(bnv_try_2) |
8a688c3179dd
Added files for build system integration.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13024
diff
changeset
|
1118 if test x"$ac_status" != x0; then |
8a688c3179dd
Added files for build system integration.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13024
diff
changeset
|
1119 echo "$bnv_err_2" >&AC_FD_CC |
8a688c3179dd
Added files for build system integration.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13024
diff
changeset
|
1120 echo "configure: could not compile:" >&AC_FD_CC |
8a688c3179dd
Added files for build system integration.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13024
diff
changeset
|
1121 cat moc_bnv_qt_test.$ac_ext >&AC_FD_CC |
8a688c3179dd
Added files for build system integration.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13024
diff
changeset
|
1122 else |
8a688c3179dd
Added files for build system integration.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13024
diff
changeset
|
1123 bnv_try_3="$CXX $QT_CXXFLAGS -c $CXXFLAGS -o bnv_qt_main.o bnv_qt_main.$ac_ext >/dev/null 2>/dev/null" |
8a688c3179dd
Added files for build system integration.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13024
diff
changeset
|
1124 AC_TRY_EVAL(bnv_try_3) |
8a688c3179dd
Added files for build system integration.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13024
diff
changeset
|
1125 if test x"$ac_status" != x0; then |
8a688c3179dd
Added files for build system integration.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13024
diff
changeset
|
1126 echo "$bnv_err_3" >&AC_FD_CC |
8a688c3179dd
Added files for build system integration.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13024
diff
changeset
|
1127 echo "configure: could not compile:" >&AC_FD_CC |
8a688c3179dd
Added files for build system integration.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13024
diff
changeset
|
1128 cat bnv_qt_main.$ac_ext >&AC_FD_CC |
8a688c3179dd
Added files for build system integration.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13024
diff
changeset
|
1129 else |
8a688c3179dd
Added files for build system integration.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13024
diff
changeset
|
1130 bnv_try_4="$CXX $QT_LIBS $LIBS -o bnv_qt_main bnv_qt_main.o moc_bnv_qt_test.o >/dev/null 2>/dev/null" |
8a688c3179dd
Added files for build system integration.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13024
diff
changeset
|
1131 AC_TRY_EVAL(bnv_try_4) |
8a688c3179dd
Added files for build system integration.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13024
diff
changeset
|
1132 if test x"$ac_status" != x0; then |
8a688c3179dd
Added files for build system integration.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13024
diff
changeset
|
1133 echo "$bnv_err_4" >&AC_FD_CC |
8a688c3179dd
Added files for build system integration.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13024
diff
changeset
|
1134 else |
8a688c3179dd
Added files for build system integration.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13024
diff
changeset
|
1135 bnv_cv_qt_test_result="success" |
8a688c3179dd
Added files for build system integration.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13024
diff
changeset
|
1136 fi |
8a688c3179dd
Added files for build system integration.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13024
diff
changeset
|
1137 fi |
8a688c3179dd
Added files for build system integration.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13024
diff
changeset
|
1138 fi |
8a688c3179dd
Added files for build system integration.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13024
diff
changeset
|
1139 fi |
8a688c3179dd
Added files for build system integration.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13024
diff
changeset
|
1140 ])dnl AC_CACHE_VAL bnv_cv_qt_test_result |
8a688c3179dd
Added files for build system integration.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13024
diff
changeset
|
1141 AC_MSG_RESULT([$bnv_cv_qt_test_result]); |
8a688c3179dd
Added files for build system integration.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13024
diff
changeset
|
1142 if test x"$bnv_cv_qt_test_result" = "xfailure"; then |
8a688c3179dd
Added files for build system integration.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13024
diff
changeset
|
1143 AC_MSG_ERROR([Failed to find matching components of a complete |
8a688c3179dd
Added files for build system integration.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13024
diff
changeset
|
1144 Qt installation. Try using more options, |
8a688c3179dd
Added files for build system integration.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13024
diff
changeset
|
1145 see ./configure --help.]) |
8a688c3179dd
Added files for build system integration.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13024
diff
changeset
|
1146 fi |
8a688c3179dd
Added files for build system integration.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13024
diff
changeset
|
1147 |
8a688c3179dd
Added files for build system integration.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13024
diff
changeset
|
1148 rm -f bnv_qt_test.h moc_bnv_qt_test.$ac_ext moc_bnv_qt_test.o \ |
8a688c3179dd
Added files for build system integration.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13024
diff
changeset
|
1149 bnv_qt_main.$ac_ext bnv_qt_main.o bnv_qt_main |
8a688c3179dd
Added files for build system integration.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13024
diff
changeset
|
1150 fi |
8a688c3179dd
Added files for build system integration.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13024
diff
changeset
|
1151 ]) |
8a688c3179dd
Added files for build system integration.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13024
diff
changeset
|
1152 |
8a688c3179dd
Added files for build system integration.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13024
diff
changeset
|
1153 dnl Internal subroutine of BNV_HAVE_QT |
8a688c3179dd
Added files for build system integration.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13024
diff
changeset
|
1154 dnl Set bnv_qt_dir bnv_qt_include_dir bnv_qt_bin_dir bnv_qt_lib_dir bnv_qt_lib |
8a688c3179dd
Added files for build system integration.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13024
diff
changeset
|
1155 AC_DEFUN([BNV_PATH_QT_DIRECT], |
8a688c3179dd
Added files for build system integration.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13024
diff
changeset
|
1156 [ |
8a688c3179dd
Added files for build system integration.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13024
diff
changeset
|
1157 ## Binary utilities ## |
8a688c3179dd
Added files for build system integration.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13024
diff
changeset
|
1158 if test x"$with_Qt_bin_dir" != x; then |
8a688c3179dd
Added files for build system integration.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13024
diff
changeset
|
1159 bnv_qt_bin_dir=$with_Qt_bin_dir |
8a688c3179dd
Added files for build system integration.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13024
diff
changeset
|
1160 fi |
8a688c3179dd
Added files for build system integration.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13024
diff
changeset
|
1161 ## Look for header files ## |
8a688c3179dd
Added files for build system integration.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13024
diff
changeset
|
1162 if test x"$with_Qt_include_dir" != x; then |
8a688c3179dd
Added files for build system integration.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13024
diff
changeset
|
1163 bnv_qt_include_dir="$with_Qt_include_dir" |
8a688c3179dd
Added files for build system integration.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13024
diff
changeset
|
1164 else |
8a688c3179dd
Added files for build system integration.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13024
diff
changeset
|
1165 # The following header file is expected to define QT_VERSION. |
8a688c3179dd
Added files for build system integration.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13024
diff
changeset
|
1166 qt_direct_test_header=qglobal.h |
8a688c3179dd
Added files for build system integration.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13024
diff
changeset
|
1167 # Look for the header file in a standard set of common directories. |
8a688c3179dd
Added files for build system integration.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13024
diff
changeset
|
1168 bnv_include_path_list=" |
8a688c3179dd
Added files for build system integration.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13024
diff
changeset
|
1169 /usr/include |
8a688c3179dd
Added files for build system integration.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13024
diff
changeset
|
1170 `ls -dr ${QTDIR}/include 2>/dev/null` |
8a688c3179dd
Added files for build system integration.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13024
diff
changeset
|
1171 `ls -dr /usr/include/qt* 2>/dev/null` |
8a688c3179dd
Added files for build system integration.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13024
diff
changeset
|
1172 `ls -dr /usr/lib/qt*/include 2>/dev/null` |
8a688c3179dd
Added files for build system integration.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13024
diff
changeset
|
1173 `ls -dr /usr/local/qt*/include 2>/dev/null` |
8a688c3179dd
Added files for build system integration.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13024
diff
changeset
|
1174 `ls -dr /opt/qt*/include 2>/dev/null` |
8a688c3179dd
Added files for build system integration.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13024
diff
changeset
|
1175 `ls -dr /Developer/qt*/include 2>/dev/null` |
8a688c3179dd
Added files for build system integration.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13024
diff
changeset
|
1176 " |
8a688c3179dd
Added files for build system integration.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13024
diff
changeset
|
1177 for bnv_dir in $bnv_include_path_list; do |
8a688c3179dd
Added files for build system integration.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13024
diff
changeset
|
1178 if test -r "$bnv_dir/$qt_direct_test_header"; then |
8a688c3179dd
Added files for build system integration.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13024
diff
changeset
|
1179 bnv_dirs="$bnv_dirs $bnv_dir" |
8a688c3179dd
Added files for build system integration.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13024
diff
changeset
|
1180 fi |
8a688c3179dd
Added files for build system integration.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13024
diff
changeset
|
1181 done |
8a688c3179dd
Added files for build system integration.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13024
diff
changeset
|
1182 # Now look for the newest in this list |
8a688c3179dd
Added files for build system integration.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13024
diff
changeset
|
1183 bnv_prev_ver=0 |
8a688c3179dd
Added files for build system integration.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13024
diff
changeset
|
1184 for bnv_dir in $bnv_dirs; do |
8a688c3179dd
Added files for build system integration.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13024
diff
changeset
|
1185 bnv_this_ver=`egrep -w '#define QT_VERSION' $bnv_dir/$qt_direct_test_header | sed s/'#define QT_VERSION'//` |
8a688c3179dd
Added files for build system integration.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13024
diff
changeset
|
1186 if expr $bnv_this_ver '>' $bnv_prev_ver > /dev/null; then |
8a688c3179dd
Added files for build system integration.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13024
diff
changeset
|
1187 bnv_qt_include_dir=$bnv_dir |
8a688c3179dd
Added files for build system integration.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13024
diff
changeset
|
1188 bnv_prev_ver=$bnv_this_ver |
8a688c3179dd
Added files for build system integration.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13024
diff
changeset
|
1189 fi |
8a688c3179dd
Added files for build system integration.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13024
diff
changeset
|
1190 done |
8a688c3179dd
Added files for build system integration.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13024
diff
changeset
|
1191 fi dnl Found header files. |
8a688c3179dd
Added files for build system integration.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13024
diff
changeset
|
1192 |
8a688c3179dd
Added files for build system integration.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13024
diff
changeset
|
1193 # Are these headers located in a traditional Trolltech installation? |
8a688c3179dd
Added files for build system integration.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13024
diff
changeset
|
1194 # That would be $bnv_qt_include_dir stripped from its last element: |
8a688c3179dd
Added files for build system integration.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13024
diff
changeset
|
1195 bnv_possible_qt_dir=`dirname $bnv_qt_include_dir` |
8a688c3179dd
Added files for build system integration.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13024
diff
changeset
|
1196 if (test -x $bnv_possible_qt_dir/bin/moc) && |
8a688c3179dd
Added files for build system integration.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13024
diff
changeset
|
1197 ((ls $bnv_possible_qt_dir/lib/libqt* > /dev/null 2>/dev/null) || |
8a688c3179dd
Added files for build system integration.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13024
diff
changeset
|
1198 (ls $bnv_possible_qt_dir/lib64/libqt* > /dev/null 2>/dev/null)); then |
8a688c3179dd
Added files for build system integration.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13024
diff
changeset
|
1199 # Then the rest is a piece of cake |
8a688c3179dd
Added files for build system integration.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13024
diff
changeset
|
1200 bnv_qt_dir=$bnv_possible_qt_dir |
8a688c3179dd
Added files for build system integration.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13024
diff
changeset
|
1201 bnv_qt_bin_dir="$bnv_qt_dir/bin" |
8a688c3179dd
Added files for build system integration.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13024
diff
changeset
|
1202 if test x"$with_Qt_lib_dir" != x; then |
8a688c3179dd
Added files for build system integration.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13024
diff
changeset
|
1203 bnv_qt_lib_dir="$with_Qt_lib_dir" |
8a688c3179dd
Added files for build system integration.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13024
diff
changeset
|
1204 else |
8a688c3179dd
Added files for build system integration.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13024
diff
changeset
|
1205 if (test -d $bnv_qt_dir/lib64); then |
8a688c3179dd
Added files for build system integration.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13024
diff
changeset
|
1206 bnv_qt_lib_dir="$bnv_qt_dir/lib64" |
8a688c3179dd
Added files for build system integration.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13024
diff
changeset
|
1207 else |
8a688c3179dd
Added files for build system integration.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13024
diff
changeset
|
1208 bnv_qt_lib_dir="$bnv_qt_dir/lib" |
8a688c3179dd
Added files for build system integration.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13024
diff
changeset
|
1209 fi |
8a688c3179dd
Added files for build system integration.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13024
diff
changeset
|
1210 fi |
8a688c3179dd
Added files for build system integration.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13024
diff
changeset
|
1211 # Only look for lib if the user did not supply it already |
8a688c3179dd
Added files for build system integration.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13024
diff
changeset
|
1212 if test x"$bnv_qt_lib" = xNO; then |
8a688c3179dd
Added files for build system integration.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13024
diff
changeset
|
1213 bnv_qt_lib="`ls $bnv_qt_lib_dir/libqt* | sed -n 1p | |
8a688c3179dd
Added files for build system integration.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13024
diff
changeset
|
1214 sed s@$bnv_qt_lib_dir/lib@@ | [sed s@[.].*@@]`" |
8a688c3179dd
Added files for build system integration.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13024
diff
changeset
|
1215 fi |
8a688c3179dd
Added files for build system integration.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13024
diff
changeset
|
1216 bnv_qt_LIBS="-L$bnv_qt_lib_dir -l$bnv_qt_lib $X_PRE_LIBS $X_LIBS -lX11 -lXext -lXmu -lXt -lXi $X_EXTRA_LIBS" |
8a688c3179dd
Added files for build system integration.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13024
diff
changeset
|
1217 else |
8a688c3179dd
Added files for build system integration.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13024
diff
changeset
|
1218 # There is no valid definition for $QTDIR as Trolltech likes to see it |
8a688c3179dd
Added files for build system integration.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13024
diff
changeset
|
1219 bnv_qt_dir= |
8a688c3179dd
Added files for build system integration.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13024
diff
changeset
|
1220 ## Look for Qt library ## |
8a688c3179dd
Added files for build system integration.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13024
diff
changeset
|
1221 if test x"$with_Qt_lib_dir" != x; then |
8a688c3179dd
Added files for build system integration.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13024
diff
changeset
|
1222 bnv_qt_lib_dir="$with_Qt_lib_dir" |
8a688c3179dd
Added files for build system integration.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13024
diff
changeset
|
1223 # Only look for lib if the user did not supply it already |
8a688c3179dd
Added files for build system integration.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13024
diff
changeset
|
1224 if test x"$bnv_qt_lib" = xNO; then |
8a688c3179dd
Added files for build system integration.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13024
diff
changeset
|
1225 bnv_qt_lib="`ls $bnv_qt_lib_dir/libqt* | sed -n 1p | |
8a688c3179dd
Added files for build system integration.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13024
diff
changeset
|
1226 sed s@$bnv_qt_lib_dir/lib@@ | [sed s@[.].*@@]`" |
8a688c3179dd
Added files for build system integration.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13024
diff
changeset
|
1227 fi |
8a688c3179dd
Added files for build system integration.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13024
diff
changeset
|
1228 bnv_qt_LIBS="-L$bnv_qt_lib_dir -l$bnv_qt_lib $X_PRE_LIBS $X_LIBS -lX11 -lXext -lXmu -lXt -lXi $X_EXTRA_LIBS" |
8a688c3179dd
Added files for build system integration.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13024
diff
changeset
|
1229 else |
8a688c3179dd
Added files for build system integration.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13024
diff
changeset
|
1230 # Normally, when there is no traditional Trolltech installation, |
8a688c3179dd
Added files for build system integration.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13024
diff
changeset
|
1231 # the library is installed in a place where the linker finds it |
8a688c3179dd
Added files for build system integration.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13024
diff
changeset
|
1232 # automatically. |
8a688c3179dd
Added files for build system integration.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13024
diff
changeset
|
1233 # If the user did not define the library name, try with qt |
8a688c3179dd
Added files for build system integration.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13024
diff
changeset
|
1234 if test x"$bnv_qt_lib" = xNO; then |
8a688c3179dd
Added files for build system integration.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13024
diff
changeset
|
1235 bnv_qt_lib=qt |
8a688c3179dd
Added files for build system integration.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13024
diff
changeset
|
1236 fi |
8a688c3179dd
Added files for build system integration.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13024
diff
changeset
|
1237 qt_direct_test_header=qapplication.h |
8a688c3179dd
Added files for build system integration.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13024
diff
changeset
|
1238 qt_direct_test_main=" |
8a688c3179dd
Added files for build system integration.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13024
diff
changeset
|
1239 int argc; |
8a688c3179dd
Added files for build system integration.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13024
diff
changeset
|
1240 char ** argv; |
8a688c3179dd
Added files for build system integration.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13024
diff
changeset
|
1241 QApplication app(argc,argv); |
8a688c3179dd
Added files for build system integration.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13024
diff
changeset
|
1242 " |
8a688c3179dd
Added files for build system integration.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13024
diff
changeset
|
1243 # See if we find the library without any special options. |
8a688c3179dd
Added files for build system integration.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13024
diff
changeset
|
1244 # Don't add top $LIBS permanently yet |
8a688c3179dd
Added files for build system integration.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13024
diff
changeset
|
1245 bnv_save_LIBS="$LIBS" |
8a688c3179dd
Added files for build system integration.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13024
diff
changeset
|
1246 LIBS="-l$bnv_qt_lib $X_PRE_LIBS $X_LIBS -lX11 -lXext -lXmu -lXt -lXi $X_EXTRA_LIBS" |
8a688c3179dd
Added files for build system integration.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13024
diff
changeset
|
1247 bnv_qt_LIBS="$LIBS" |
8a688c3179dd
Added files for build system integration.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13024
diff
changeset
|
1248 bnv_save_CXXFLAGS="$CXXFLAGS" |
8a688c3179dd
Added files for build system integration.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13024
diff
changeset
|
1249 CXXFLAGS="-I$bnv_qt_include_dir" |
8a688c3179dd
Added files for build system integration.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13024
diff
changeset
|
1250 AC_TRY_LINK([#include <$qt_direct_test_header>], |
8a688c3179dd
Added files for build system integration.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13024
diff
changeset
|
1251 $qt_direct_test_main, |
8a688c3179dd
Added files for build system integration.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13024
diff
changeset
|
1252 [ |
8a688c3179dd
Added files for build system integration.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13024
diff
changeset
|
1253 # Success. |
8a688c3179dd
Added files for build system integration.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13024
diff
changeset
|
1254 # We can link with no special library directory. |
8a688c3179dd
Added files for build system integration.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13024
diff
changeset
|
1255 bnv_qt_lib_dir= |
8a688c3179dd
Added files for build system integration.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13024
diff
changeset
|
1256 ], [ |
8a688c3179dd
Added files for build system integration.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13024
diff
changeset
|
1257 # That did not work. Try the multi-threaded version |
8a688c3179dd
Added files for build system integration.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13024
diff
changeset
|
1258 echo "Non-critical error, please neglect the above." >&AC_FD_CC |
8a688c3179dd
Added files for build system integration.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13024
diff
changeset
|
1259 bnv_qt_lib=qt-mt |
8a688c3179dd
Added files for build system integration.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13024
diff
changeset
|
1260 LIBS="-l$bnv_qt_lib $X_PRE_LIBS $X_LIBS -lX11 -lXext -lXmu -lXt -lXi $X_EXTRA_LIBS" |
8a688c3179dd
Added files for build system integration.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13024
diff
changeset
|
1261 AC_TRY_LINK([#include <$qt_direct_test_header>], |
8a688c3179dd
Added files for build system integration.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13024
diff
changeset
|
1262 $qt_direct_test_main, |
8a688c3179dd
Added files for build system integration.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13024
diff
changeset
|
1263 [ |
8a688c3179dd
Added files for build system integration.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13024
diff
changeset
|
1264 # Success. |
8a688c3179dd
Added files for build system integration.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13024
diff
changeset
|
1265 # We can link with no special library directory. |
8a688c3179dd
Added files for build system integration.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13024
diff
changeset
|
1266 bnv_qt_lib_dir= |
8a688c3179dd
Added files for build system integration.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13024
diff
changeset
|
1267 ], [ |
8a688c3179dd
Added files for build system integration.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13024
diff
changeset
|
1268 # That did not work. Try the OpenGL version |
8a688c3179dd
Added files for build system integration.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13024
diff
changeset
|
1269 echo "Non-critical error, please neglect the above." >&AC_FD_CC |
8a688c3179dd
Added files for build system integration.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13024
diff
changeset
|
1270 bnv_qt_lib=qt-gl |
8a688c3179dd
Added files for build system integration.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13024
diff
changeset
|
1271 LIBS="-l$bnv_qt_lib $X_PRE_LIBS $X_LIBS -lX11 -lXext -lXmu -lXt -lXi $X_EXTRA_LIBS" |
8a688c3179dd
Added files for build system integration.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13024
diff
changeset
|
1272 AC_TRY_LINK([#include <$qt_direct_test_header>], |
8a688c3179dd
Added files for build system integration.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13024
diff
changeset
|
1273 $qt_direct_test_main, |
8a688c3179dd
Added files for build system integration.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13024
diff
changeset
|
1274 [ |
8a688c3179dd
Added files for build system integration.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13024
diff
changeset
|
1275 # Success. |
8a688c3179dd
Added files for build system integration.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13024
diff
changeset
|
1276 # We can link with no special library directory. |
8a688c3179dd
Added files for build system integration.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13024
diff
changeset
|
1277 bnv_qt_lib_dir= |
8a688c3179dd
Added files for build system integration.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13024
diff
changeset
|
1278 ], [ |
8a688c3179dd
Added files for build system integration.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13024
diff
changeset
|
1279 # That did not work. Maybe a library version I don't know about? |
8a688c3179dd
Added files for build system integration.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13024
diff
changeset
|
1280 echo "Non-critical error, please neglect the above." >&AC_FD_CC |
8a688c3179dd
Added files for build system integration.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13024
diff
changeset
|
1281 # Look for some Qt lib in a standard set of common directories. |
8a688c3179dd
Added files for build system integration.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13024
diff
changeset
|
1282 bnv_dir_list=" |
8a688c3179dd
Added files for build system integration.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13024
diff
changeset
|
1283 `echo $bnv_qt_includes | sed ss/includess` |
8a688c3179dd
Added files for build system integration.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13024
diff
changeset
|
1284 /lib |
8a688c3179dd
Added files for build system integration.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13024
diff
changeset
|
1285 /usr/lib64 |
8a688c3179dd
Added files for build system integration.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13024
diff
changeset
|
1286 /usr/lib |
8a688c3179dd
Added files for build system integration.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13024
diff
changeset
|
1287 /usr/local/lib64 |
8a688c3179dd
Added files for build system integration.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13024
diff
changeset
|
1288 /usr/local/lib |
8a688c3179dd
Added files for build system integration.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13024
diff
changeset
|
1289 /opt/lib64 |
8a688c3179dd
Added files for build system integration.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13024
diff
changeset
|
1290 /opt/lib |
8a688c3179dd
Added files for build system integration.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13024
diff
changeset
|
1291 `ls -dr /usr/lib64/qt* 2>/dev/null` |
8a688c3179dd
Added files for build system integration.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13024
diff
changeset
|
1292 `ls -dr /usr/lib64/qt*/lib64 2>/dev/null` |
8a688c3179dd
Added files for build system integration.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13024
diff
changeset
|
1293 `ls -dr /usr/lib/qt* 2>/dev/null` |
8a688c3179dd
Added files for build system integration.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13024
diff
changeset
|
1294 `ls -dr /usr/local/qt* 2>/dev/null` |
8a688c3179dd
Added files for build system integration.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13024
diff
changeset
|
1295 `ls -dr /opt/qt* 2>/dev/null` |
8a688c3179dd
Added files for build system integration.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13024
diff
changeset
|
1296 " |
8a688c3179dd
Added files for build system integration.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13024
diff
changeset
|
1297 for bnv_dir in $bnv_dir_list; do |
8a688c3179dd
Added files for build system integration.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13024
diff
changeset
|
1298 if ls $bnv_dir/libqt* >/dev/null 2>/dev/null; then |
8a688c3179dd
Added files for build system integration.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13024
diff
changeset
|
1299 # Gamble that it's the first one... |
8a688c3179dd
Added files for build system integration.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13024
diff
changeset
|
1300 bnv_qt_lib="`ls $bnv_dir/libqt* | sed -n 1p | |
8a688c3179dd
Added files for build system integration.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13024
diff
changeset
|
1301 sed s@$bnv_dir/lib@@ | sed s/[[.]].*//`" |
8a688c3179dd
Added files for build system integration.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13024
diff
changeset
|
1302 bnv_qt_lib_dir="$bnv_dir" |
8a688c3179dd
Added files for build system integration.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13024
diff
changeset
|
1303 break |
8a688c3179dd
Added files for build system integration.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13024
diff
changeset
|
1304 fi |
8a688c3179dd
Added files for build system integration.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13024
diff
changeset
|
1305 done |
8a688c3179dd
Added files for build system integration.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13024
diff
changeset
|
1306 # Try with that one |
8a688c3179dd
Added files for build system integration.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13024
diff
changeset
|
1307 LIBS="-l$bnv_qt_lib $X_PRE_LIBS $X_LIBS -lX11 -lXext -lXmu -lXt -lXi $X_EXTRA_LIBS" |
8a688c3179dd
Added files for build system integration.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13024
diff
changeset
|
1308 AC_TRY_LINK([#include <$qt_direct_test_header>], |
8a688c3179dd
Added files for build system integration.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13024
diff
changeset
|
1309 $qt_direct_test_main, |
8a688c3179dd
Added files for build system integration.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13024
diff
changeset
|
1310 [ |
8a688c3179dd
Added files for build system integration.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13024
diff
changeset
|
1311 # Success. |
8a688c3179dd
Added files for build system integration.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13024
diff
changeset
|
1312 # We can link with no special library directory. |
8a688c3179dd
Added files for build system integration.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13024
diff
changeset
|
1313 bnv_qt_lib_dir= |
8a688c3179dd
Added files for build system integration.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13024
diff
changeset
|
1314 ], [ |
8a688c3179dd
Added files for build system integration.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13024
diff
changeset
|
1315 # Leave bnv_qt_lib_dir defined |
8a688c3179dd
Added files for build system integration.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13024
diff
changeset
|
1316 ]) |
8a688c3179dd
Added files for build system integration.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13024
diff
changeset
|
1317 ]) |
8a688c3179dd
Added files for build system integration.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13024
diff
changeset
|
1318 ]) |
8a688c3179dd
Added files for build system integration.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13024
diff
changeset
|
1319 ]) |
8a688c3179dd
Added files for build system integration.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13024
diff
changeset
|
1320 if test x"$bnv_qt_lib_dir" != x; then |
8a688c3179dd
Added files for build system integration.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13024
diff
changeset
|
1321 bnv_qt_LIBS="-L$bnv_qt_lib_dir $LIBS" |
8a688c3179dd
Added files for build system integration.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13024
diff
changeset
|
1322 else |
8a688c3179dd
Added files for build system integration.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13024
diff
changeset
|
1323 bnv_qt_LIBS="$LIBS" |
8a688c3179dd
Added files for build system integration.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13024
diff
changeset
|
1324 fi |
8a688c3179dd
Added files for build system integration.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13024
diff
changeset
|
1325 LIBS="$bnv_save_LIBS" |
8a688c3179dd
Added files for build system integration.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13024
diff
changeset
|
1326 CXXFLAGS="$bnv_save_CXXFLAGS" |
8a688c3179dd
Added files for build system integration.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13024
diff
changeset
|
1327 fi dnl $with_Qt_lib_dir was not given |
8a688c3179dd
Added files for build system integration.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13024
diff
changeset
|
1328 fi dnl Done setting up for non-traditional Trolltech installation |
8a688c3179dd
Added files for build system integration.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13024
diff
changeset
|
1329 ]) |
8a688c3179dd
Added files for build system integration.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13024
diff
changeset
|
1330 |
15063
36cbcc37fdb8
Refactor configure.ac to make it more understandable.
Rik <rik@octave.org>
parents:
15059
diff
changeset
|
1331 ### Check for FFTW library. Default to Fortran FFTPACK if it is not available. |
5203 | 1332 |
15063
36cbcc37fdb8
Refactor configure.ac to make it more understandable.
Rik <rik@octave.org>
parents:
15059
diff
changeset
|
1333 ## Check for FFTW header and library. |
9523
0ce82753dd72
more configure changes for libraries
John W. Eaton <jwe@octave.org>
parents:
9519
diff
changeset
|
1334 OCTAVE_CHECK_LIBRARY(fftw3, FFTW3, |
0ce82753dd72
more configure changes for libraries
John W. Eaton <jwe@octave.org>
parents:
9519
diff
changeset
|
1335 [FFTW3 library not found. The slower FFTPACK library will be used instead.], |
0ce82753dd72
more configure changes for libraries
John W. Eaton <jwe@octave.org>
parents:
9519
diff
changeset
|
1336 [fftw3.h], [fftw_plan_dft_1d]) |
3827 | 1337 |
9523
0ce82753dd72
more configure changes for libraries
John W. Eaton <jwe@octave.org>
parents:
9519
diff
changeset
|
1338 OCTAVE_CHECK_LIBRARY(fftw3f, FFTW3F, |
0ce82753dd72
more configure changes for libraries
John W. Eaton <jwe@octave.org>
parents:
9519
diff
changeset
|
1339 [FFTW3F library not found. The slower FFTPACK library will be used instead.], |
0ce82753dd72
more configure changes for libraries
John W. Eaton <jwe@octave.org>
parents:
9519
diff
changeset
|
1340 [fftw3.h], [fftwf_plan_dft_1d]) |
3827 | 1341 |
9794
0d4613a736e9
convert build system to use automake and libtool
John W. Eaton <jwe@octave.org>
parents:
9787
diff
changeset
|
1342 AM_CONDITIONAL([AMCOND_HAVE_FFTW], |
0d4613a736e9
convert build system to use automake and libtool
John W. Eaton <jwe@octave.org>
parents:
9787
diff
changeset
|
1343 [test -n "$FFTW3_LIBS" && test -n "$FFTW3F_LIBS"]) |
3827 | 1344 |
15063
36cbcc37fdb8
Refactor configure.ac to make it more understandable.
Rik <rik@octave.org>
parents:
15059
diff
changeset
|
1345 ## Subdirectory of libcruft to build if FFTW is not found: |
36cbcc37fdb8
Refactor configure.ac to make it more understandable.
Rik <rik@octave.org>
parents:
15059
diff
changeset
|
1346 FFT_DIR="fftpack" |
36cbcc37fdb8
Refactor configure.ac to make it more understandable.
Rik <rik@octave.org>
parents:
15059
diff
changeset
|
1347 AC_SUBST(FFT_DIR) |
36cbcc37fdb8
Refactor configure.ac to make it more understandable.
Rik <rik@octave.org>
parents:
15059
diff
changeset
|
1348 |
36cbcc37fdb8
Refactor configure.ac to make it more understandable.
Rik <rik@octave.org>
parents:
15059
diff
changeset
|
1349 ### Check for GLPK library and header. |
5235 | 1350 |
9540
79b5fe2d5646
use Z_LIBS in checks for curl and glpk libraries
John W. Eaton <jwe@octave.org>
parents:
9538
diff
changeset
|
1351 save_CPPFLAGS="$CPPFLAGS" |
79b5fe2d5646
use Z_LIBS in checks for curl and glpk libraries
John W. Eaton <jwe@octave.org>
parents:
9538
diff
changeset
|
1352 CPPFLAGS="$Z_CPPFLAGS $CPPFLAGS" |
79b5fe2d5646
use Z_LIBS in checks for curl and glpk libraries
John W. Eaton <jwe@octave.org>
parents:
9538
diff
changeset
|
1353 save_LIBS="$LIBS" |
79b5fe2d5646
use Z_LIBS in checks for curl and glpk libraries
John W. Eaton <jwe@octave.org>
parents:
9538
diff
changeset
|
1354 LIBS="$Z_LDFLAGS $Z_LIBS $LIBS" |
9523
0ce82753dd72
more configure changes for libraries
John W. Eaton <jwe@octave.org>
parents:
9519
diff
changeset
|
1355 OCTAVE_CHECK_LIBRARY(glpk, GLPK, |
0ce82753dd72
more configure changes for libraries
John W. Eaton <jwe@octave.org>
parents:
9519
diff
changeset
|
1356 [GLPK library not found. The glpk function for solving linear programs will be disabled.], |
0ce82753dd72
more configure changes for libraries
John W. Eaton <jwe@octave.org>
parents:
9519
diff
changeset
|
1357 [glpk/glpk.h glpk.h], [_glp_lpx_simplex]) |
9540
79b5fe2d5646
use Z_LIBS in checks for curl and glpk libraries
John W. Eaton <jwe@octave.org>
parents:
9538
diff
changeset
|
1358 LIBS="$save_LIBS" |
79b5fe2d5646
use Z_LIBS in checks for curl and glpk libraries
John W. Eaton <jwe@octave.org>
parents:
9538
diff
changeset
|
1359 CPPFLAGS="$save_CPPFLAGS" |
5235 | 1360 |
15063
36cbcc37fdb8
Refactor configure.ac to make it more understandable.
Rik <rik@octave.org>
parents:
15059
diff
changeset
|
1361 ### Checks for cURL header and library. |
6043 | 1362 |
9540
79b5fe2d5646
use Z_LIBS in checks for curl and glpk libraries
John W. Eaton <jwe@octave.org>
parents:
9538
diff
changeset
|
1363 save_CPPFLAGS="$CPPFLAGS" |
79b5fe2d5646
use Z_LIBS in checks for curl and glpk libraries
John W. Eaton <jwe@octave.org>
parents:
9538
diff
changeset
|
1364 CPPFLAGS="$Z_CPPFLAGS $CPPFLAGS" |
79b5fe2d5646
use Z_LIBS in checks for curl and glpk libraries
John W. Eaton <jwe@octave.org>
parents:
9538
diff
changeset
|
1365 save_LIBS="$LIBS" |
79b5fe2d5646
use Z_LIBS in checks for curl and glpk libraries
John W. Eaton <jwe@octave.org>
parents:
9538
diff
changeset
|
1366 LIBS="$Z_LDFLAGS $Z_LIBS $LIBS" |
9519
ee99f9f37505
improve configure checks for qhull and curl libs
John W. Eaton <jwe@octave.org>
parents:
9515
diff
changeset
|
1367 OCTAVE_CHECK_LIBRARY(curl, cURL, |
9880 | 1368 [cURL library not found. The ftp objects, urlread and urlwrite functions will be disabled.], |
9519
ee99f9f37505
improve configure checks for qhull and curl libs
John W. Eaton <jwe@octave.org>
parents:
9515
diff
changeset
|
1369 [curl/curl.h], [curl_easy_escape]) |
9540
79b5fe2d5646
use Z_LIBS in checks for curl and glpk libraries
John W. Eaton <jwe@octave.org>
parents:
9538
diff
changeset
|
1370 LIBS="$save_LIBS" |
79b5fe2d5646
use Z_LIBS in checks for curl and glpk libraries
John W. Eaton <jwe@octave.org>
parents:
9538
diff
changeset
|
1371 CPPFLAGS="$save_CPPFLAGS" |
6133 | 1372 |
15063
36cbcc37fdb8
Refactor configure.ac to make it more understandable.
Rik <rik@octave.org>
parents:
15059
diff
changeset
|
1373 ### Check for either of Graphics/ImageMagick++ libraries |
9575
55ecaefb7d0f
Use pkg-config to configure GraphicsMagick++.
David Grundberg <individ@acc.umu.se>
parents:
9573
diff
changeset
|
1374 |
11216
5036b0ff9597
configure.ac: Properly m4 quote AS_HELP_STRING.
Rik <octave@nomad.inbox5.com>
parents:
11214
diff
changeset
|
1375 AC_ARG_WITH([magick], |
5036b0ff9597
configure.ac: Properly m4 quote AS_HELP_STRING.
Rik <octave@nomad.inbox5.com>
parents:
11214
diff
changeset
|
1376 [AS_HELP_STRING([--with-magick=LIB], |
11041 | 1377 [select library to use for image I/O (options: GraphicsMagick(default) or ImageMagick)])], [ |
1378 magick="$withval"], [ | |
1379 magick="GraphicsMagick"]) | |
11040
9ac165a67747
Modified configure.ac to allow specification of ImageMagick or GraphicsMagick. GraphicsMagick is still the default option.
John Swensen <jpswensen@gmail.com>
parents:
10986
diff
changeset
|
1380 |
9ac165a67747
Modified configure.ac to allow specification of ImageMagick or GraphicsMagick. GraphicsMagick is still the default option.
John Swensen <jpswensen@gmail.com>
parents:
10986
diff
changeset
|
1381 warn_magick="$magick++ library not found. The imread function for reading image files will not be fully functional." |
9575
55ecaefb7d0f
Use pkg-config to configure GraphicsMagick++.
David Grundberg <individ@acc.umu.se>
parents:
9573
diff
changeset
|
1382 |
55ecaefb7d0f
Use pkg-config to configure GraphicsMagick++.
David Grundberg <individ@acc.umu.se>
parents:
9573
diff
changeset
|
1383 MAGICK_CPPFLAGS= |
55ecaefb7d0f
Use pkg-config to configure GraphicsMagick++.
David Grundberg <individ@acc.umu.se>
parents:
9573
diff
changeset
|
1384 MAGICK_LDFLAGS= |
55ecaefb7d0f
Use pkg-config to configure GraphicsMagick++.
David Grundberg <individ@acc.umu.se>
parents:
9573
diff
changeset
|
1385 MAGICK_LIBS= |
55ecaefb7d0f
Use pkg-config to configure GraphicsMagick++.
David Grundberg <individ@acc.umu.se>
parents:
9573
diff
changeset
|
1386 |
11040
9ac165a67747
Modified configure.ac to allow specification of ImageMagick or GraphicsMagick. GraphicsMagick is still the default option.
John Swensen <jpswensen@gmail.com>
parents:
10986
diff
changeset
|
1387 PKG_CHECK_EXISTS([$magick++], [ |
11041 | 1388 ## Make sure we only get -I, -L and -l flags. Some Graphics/ImageMagick++ |
9575
55ecaefb7d0f
Use pkg-config to configure GraphicsMagick++.
David Grundberg <individ@acc.umu.se>
parents:
9573
diff
changeset
|
1389 ## packages adds extra flags that are useful when building |
11041 | 1390 ## Graphics/ImageMagick++ extentions. These extra flags break the |
1391 ## Octave build. | |
11040
9ac165a67747
Modified configure.ac to allow specification of ImageMagick or GraphicsMagick. GraphicsMagick is still the default option.
John Swensen <jpswensen@gmail.com>
parents:
10986
diff
changeset
|
1392 MAGICK_LDFLAGS=`$PKG_CONFIG --libs-only-L $magick++` |
9ac165a67747
Modified configure.ac to allow specification of ImageMagick or GraphicsMagick. GraphicsMagick is still the default option.
John Swensen <jpswensen@gmail.com>
parents:
10986
diff
changeset
|
1393 MAGICK_LIBS=`$PKG_CONFIG --libs-only-l $magick++` |
9ac165a67747
Modified configure.ac to allow specification of ImageMagick or GraphicsMagick. GraphicsMagick is still the default option.
John Swensen <jpswensen@gmail.com>
parents:
10986
diff
changeset
|
1394 MAGICK_CPPFLAGS=`$PKG_CONFIG --cflags-only-I $magick++` |
9575
55ecaefb7d0f
Use pkg-config to configure GraphicsMagick++.
David Grundberg <individ@acc.umu.se>
parents:
9573
diff
changeset
|
1395 |
11040
9ac165a67747
Modified configure.ac to allow specification of ImageMagick or GraphicsMagick. GraphicsMagick is still the default option.
John Swensen <jpswensen@gmail.com>
parents:
10986
diff
changeset
|
1396 warn_magick="$magick++ library fails tests. The imread function for reading image files will not be fully functional." |
7926
d74f996e005d
__magick_read__.cc: configuration and style fixes
John W. Eaton <jwe@octave.org>
parents:
7921
diff
changeset
|
1397 |
9575
55ecaefb7d0f
Use pkg-config to configure GraphicsMagick++.
David Grundberg <individ@acc.umu.se>
parents:
9573
diff
changeset
|
1398 save_CPPFLAGS="$CPPFLAGS" |
55ecaefb7d0f
Use pkg-config to configure GraphicsMagick++.
David Grundberg <individ@acc.umu.se>
parents:
9573
diff
changeset
|
1399 save_LIBS="$LIBS" |
9583
8dc1531e2149
correctly save and restore LIBS and CPPFLAGS when checking for GraphicsMagick++
John W. Eaton <jwe@octave.org>
parents:
9575
diff
changeset
|
1400 CPPFLAGS="$MAGICK_CPPFLAGS $CPPFLAGS" |
8dc1531e2149
correctly save and restore LIBS and CPPFLAGS when checking for GraphicsMagick++
John W. Eaton <jwe@octave.org>
parents:
9575
diff
changeset
|
1401 LIBS="$MAGICK_LDFLAGS $MAGICK_LIBS $LIBS" |
9575
55ecaefb7d0f
Use pkg-config to configure GraphicsMagick++.
David Grundberg <individ@acc.umu.se>
parents:
9573
diff
changeset
|
1402 AC_LANG_PUSH(C++) |
55ecaefb7d0f
Use pkg-config to configure GraphicsMagick++.
David Grundberg <individ@acc.umu.se>
parents:
9573
diff
changeset
|
1403 AC_CHECK_HEADER([Magick++.h], [ |
55ecaefb7d0f
Use pkg-config to configure GraphicsMagick++.
David Grundberg <individ@acc.umu.se>
parents:
9573
diff
changeset
|
1404 AC_MSG_CHECKING([for Magick::ColorRGB in Magick++.h]) |
15054
a6d4965ef04b
configure.ac: replace deprecated AC_TRY_LINK macro
Carnë Draug <carandraug+dev@gmail.com>
parents:
15012
diff
changeset
|
1405 AC_PREPROC_IFELSE( |
a6d4965ef04b
configure.ac: replace deprecated AC_TRY_LINK macro
Carnë Draug <carandraug+dev@gmail.com>
parents:
15012
diff
changeset
|
1406 [AC_LANG_SOURCE( |
a6d4965ef04b
configure.ac: replace deprecated AC_TRY_LINK macro
Carnë Draug <carandraug+dev@gmail.com>
parents:
15012
diff
changeset
|
1407 [[#include <Magick++.h>]], |
a6d4965ef04b
configure.ac: replace deprecated AC_TRY_LINK macro
Carnë Draug <carandraug+dev@gmail.com>
parents:
15012
diff
changeset
|
1408 [[Magick::ColorRGB c;]]) |
a6d4965ef04b
configure.ac: replace deprecated AC_TRY_LINK macro
Carnë Draug <carandraug+dev@gmail.com>
parents:
15012
diff
changeset
|
1409 ], [ |
a6d4965ef04b
configure.ac: replace deprecated AC_TRY_LINK macro
Carnë Draug <carandraug+dev@gmail.com>
parents:
15012
diff
changeset
|
1410 AC_MSG_RESULT(yes) |
a6d4965ef04b
configure.ac: replace deprecated AC_TRY_LINK macro
Carnë Draug <carandraug+dev@gmail.com>
parents:
15012
diff
changeset
|
1411 warn_magick= |
a6d4965ef04b
configure.ac: replace deprecated AC_TRY_LINK macro
Carnë Draug <carandraug+dev@gmail.com>
parents:
15012
diff
changeset
|
1412 ], [ |
a6d4965ef04b
configure.ac: replace deprecated AC_TRY_LINK macro
Carnë Draug <carandraug+dev@gmail.com>
parents:
15012
diff
changeset
|
1413 AC_MSG_RESULT(no) |
a6d4965ef04b
configure.ac: replace deprecated AC_TRY_LINK macro
Carnë Draug <carandraug+dev@gmail.com>
parents:
15012
diff
changeset
|
1414 ] |
a6d4965ef04b
configure.ac: replace deprecated AC_TRY_LINK macro
Carnë Draug <carandraug+dev@gmail.com>
parents:
15012
diff
changeset
|
1415 ) |
9575
55ecaefb7d0f
Use pkg-config to configure GraphicsMagick++.
David Grundberg <individ@acc.umu.se>
parents:
9573
diff
changeset
|
1416 ]) |
55ecaefb7d0f
Use pkg-config to configure GraphicsMagick++.
David Grundberg <individ@acc.umu.se>
parents:
9573
diff
changeset
|
1417 AC_LANG_POP(C++) |
55ecaefb7d0f
Use pkg-config to configure GraphicsMagick++.
David Grundberg <individ@acc.umu.se>
parents:
9573
diff
changeset
|
1418 CPPFLAGS="$save_CPPFLAGS" |
55ecaefb7d0f
Use pkg-config to configure GraphicsMagick++.
David Grundberg <individ@acc.umu.se>
parents:
9573
diff
changeset
|
1419 LIBS="$save_LIBS" |
55ecaefb7d0f
Use pkg-config to configure GraphicsMagick++.
David Grundberg <individ@acc.umu.se>
parents:
9573
diff
changeset
|
1420 ]) |
55ecaefb7d0f
Use pkg-config to configure GraphicsMagick++.
David Grundberg <individ@acc.umu.se>
parents:
9573
diff
changeset
|
1421 |
55ecaefb7d0f
Use pkg-config to configure GraphicsMagick++.
David Grundberg <individ@acc.umu.se>
parents:
9573
diff
changeset
|
1422 if test -z "$warn_magick"; then |
15063
36cbcc37fdb8
Refactor configure.ac to make it more understandable.
Rik <rik@octave.org>
parents:
15059
diff
changeset
|
1423 AC_DEFINE(HAVE_MAGICK, 1, [Define to 1 if Graphics/ImageMagick++ is available.]) |
7937
6661387827d6
Allow build without GraphicsMagick installed
David Bateman <dbateman@free.fr>
parents:
7934
diff
changeset
|
1424 else |
9575
55ecaefb7d0f
Use pkg-config to configure GraphicsMagick++.
David Grundberg <individ@acc.umu.se>
parents:
9573
diff
changeset
|
1425 MAGICK_CPPFLAGS= |
55ecaefb7d0f
Use pkg-config to configure GraphicsMagick++.
David Grundberg <individ@acc.umu.se>
parents:
9573
diff
changeset
|
1426 MAGICK_LDFLAGS= |
55ecaefb7d0f
Use pkg-config to configure GraphicsMagick++.
David Grundberg <individ@acc.umu.se>
parents:
9573
diff
changeset
|
1427 MAGICK_LIBS= |
7926
d74f996e005d
__magick_read__.cc: configuration and style fixes
John W. Eaton <jwe@octave.org>
parents:
7921
diff
changeset
|
1428 fi |
9575
55ecaefb7d0f
Use pkg-config to configure GraphicsMagick++.
David Grundberg <individ@acc.umu.se>
parents:
9573
diff
changeset
|
1429 AC_SUBST(MAGICK_CPPFLAGS) |
55ecaefb7d0f
Use pkg-config to configure GraphicsMagick++.
David Grundberg <individ@acc.umu.se>
parents:
9573
diff
changeset
|
1430 AC_SUBST(MAGICK_LDFLAGS) |
55ecaefb7d0f
Use pkg-config to configure GraphicsMagick++.
David Grundberg <individ@acc.umu.se>
parents:
9573
diff
changeset
|
1431 AC_SUBST(MAGICK_LIBS) |
6043 | 1432 |
15063
36cbcc37fdb8
Refactor configure.ac to make it more understandable.
Rik <rik@octave.org>
parents:
15059
diff
changeset
|
1433 ### Check for X11 libraries |
36cbcc37fdb8
Refactor configure.ac to make it more understandable.
Rik <rik@octave.org>
parents:
15059
diff
changeset
|
1434 |
36cbcc37fdb8
Refactor configure.ac to make it more understandable.
Rik <rik@octave.org>
parents:
15059
diff
changeset
|
1435 AC_PATH_X |
36cbcc37fdb8
Refactor configure.ac to make it more understandable.
Rik <rik@octave.org>
parents:
15059
diff
changeset
|
1436 if test "$have_x" = "yes"; then |
36cbcc37fdb8
Refactor configure.ac to make it more understandable.
Rik <rik@octave.org>
parents:
15059
diff
changeset
|
1437 AC_DEFINE(HAVE_X_WINDOWS, 1, [Define to 1 if you have X11.]) |
36cbcc37fdb8
Refactor configure.ac to make it more understandable.
Rik <rik@octave.org>
parents:
15059
diff
changeset
|
1438 |
36cbcc37fdb8
Refactor configure.ac to make it more understandable.
Rik <rik@octave.org>
parents:
15059
diff
changeset
|
1439 if test "$x_includes" != "NONE"; then |
36cbcc37fdb8
Refactor configure.ac to make it more understandable.
Rik <rik@octave.org>
parents:
15059
diff
changeset
|
1440 X11_INCFLAGS="$x_includes" |
36cbcc37fdb8
Refactor configure.ac to make it more understandable.
Rik <rik@octave.org>
parents:
15059
diff
changeset
|
1441 fi |
36cbcc37fdb8
Refactor configure.ac to make it more understandable.
Rik <rik@octave.org>
parents:
15059
diff
changeset
|
1442 AC_SUBST(X11_INCFLAGS) |
7834
caab78e7e377
added checks for fltk & freetype in configure script
Shai Ayal <shaiay@sourceforge.net>
parents:
7825
diff
changeset
|
1443 |
15063
36cbcc37fdb8
Refactor configure.ac to make it more understandable.
Rik <rik@octave.org>
parents:
15059
diff
changeset
|
1444 if test -z $x_libraries; then |
36cbcc37fdb8
Refactor configure.ac to make it more understandable.
Rik <rik@octave.org>
parents:
15059
diff
changeset
|
1445 AC_CHECK_LIB(X11, XrmInitialize, [X11_LIBS=-lX11], [X11_LIBS=]) |
36cbcc37fdb8
Refactor configure.ac to make it more understandable.
Rik <rik@octave.org>
parents:
15059
diff
changeset
|
1446 elif test $x_libraries != "NONE"; then |
36cbcc37fdb8
Refactor configure.ac to make it more understandable.
Rik <rik@octave.org>
parents:
15059
diff
changeset
|
1447 AC_CHECK_LIB(X11, XrmInitialize, |
36cbcc37fdb8
Refactor configure.ac to make it more understandable.
Rik <rik@octave.org>
parents:
15059
diff
changeset
|
1448 [X11_LIBS="-L$x_libraries -lX11"], [X11_LIBS=], "-L$x_libraries") |
36cbcc37fdb8
Refactor configure.ac to make it more understandable.
Rik <rik@octave.org>
parents:
15059
diff
changeset
|
1449 fi |
36cbcc37fdb8
Refactor configure.ac to make it more understandable.
Rik <rik@octave.org>
parents:
15059
diff
changeset
|
1450 AC_SUBST(X11_LIBS) |
36cbcc37fdb8
Refactor configure.ac to make it more understandable.
Rik <rik@octave.org>
parents:
15059
diff
changeset
|
1451 fi |
36cbcc37fdb8
Refactor configure.ac to make it more understandable.
Rik <rik@octave.org>
parents:
15059
diff
changeset
|
1452 |
36cbcc37fdb8
Refactor configure.ac to make it more understandable.
Rik <rik@octave.org>
parents:
15059
diff
changeset
|
1453 ### Check for the Carbon framework on MacOSX systems |
36cbcc37fdb8
Refactor configure.ac to make it more understandable.
Rik <rik@octave.org>
parents:
15059
diff
changeset
|
1454 OCTAVE_HAVE_FRAMEWORK(Carbon, [#include <Carbon/Carbon.h>], [CGMainDisplayID ()], |
36cbcc37fdb8
Refactor configure.ac to make it more understandable.
Rik <rik@octave.org>
parents:
15059
diff
changeset
|
1455 [have_framework_carbon="yes"], [have_framework_carbon="no"]) |
36cbcc37fdb8
Refactor configure.ac to make it more understandable.
Rik <rik@octave.org>
parents:
15059
diff
changeset
|
1456 if test $have_framework_carbon = "yes"; then |
36cbcc37fdb8
Refactor configure.ac to make it more understandable.
Rik <rik@octave.org>
parents:
15059
diff
changeset
|
1457 AC_DEFINE(HAVE_FRAMEWORK_CARBON, 1, [Define to 1 if framework CARBON is available.]) |
36cbcc37fdb8
Refactor configure.ac to make it more understandable.
Rik <rik@octave.org>
parents:
15059
diff
changeset
|
1458 CARBON_LIBS="-Wl,-framework -Wl,Carbon" |
36cbcc37fdb8
Refactor configure.ac to make it more understandable.
Rik <rik@octave.org>
parents:
15059
diff
changeset
|
1459 AC_MSG_NOTICE([adding -Wl,-framework -Wl,Carbon to CARBON_LIBS]) |
36cbcc37fdb8
Refactor configure.ac to make it more understandable.
Rik <rik@octave.org>
parents:
15059
diff
changeset
|
1460 AC_SUBST(CARBON_LIBS) |
36cbcc37fdb8
Refactor configure.ac to make it more understandable.
Rik <rik@octave.org>
parents:
15059
diff
changeset
|
1461 fi |
36cbcc37fdb8
Refactor configure.ac to make it more understandable.
Rik <rik@octave.org>
parents:
15059
diff
changeset
|
1462 |
36cbcc37fdb8
Refactor configure.ac to make it more understandable.
Rik <rik@octave.org>
parents:
15059
diff
changeset
|
1463 ### Check for list of libraries needed for native graphics renderer. |
7834
caab78e7e377
added checks for fltk & freetype in configure script
Shai Ayal <shaiay@sourceforge.net>
parents:
7825
diff
changeset
|
1464 |
7944
c2449e91f50a
configure.in: fix FTGL test to handle either FTGL/ftgl.h or ftgl.h
John W. Eaton <jwe@octave.org>
parents:
7937
diff
changeset
|
1465 warn_freetype="" |
14605
28e53daab1f8
Cleanup on autoconf warnings
Jordi Gutiérrez Hermoso <jordigh@octave.org>
parents:
14579
diff
changeset
|
1466 native_graphics=true |
7863
2a62d45fa21d
added check for FTGL library
Shai Ayal <shaiay@users.sourceforge.net>
parents:
7834
diff
changeset
|
1467 |
11208
a44ba1cdfbb5
handle --without-opengl configure option
John W. Eaton <jwe@octave.org>
parents:
11119
diff
changeset
|
1468 check_opengl=false |
a44ba1cdfbb5
handle --without-opengl configure option
John W. Eaton <jwe@octave.org>
parents:
11119
diff
changeset
|
1469 AC_ARG_WITH([opengl], |
11214
7f19b2b6e093
Remove redundant warning when 'without-opengl' option used.
Rik <octave@nomad.inbox5.com>
parents:
11209
diff
changeset
|
1470 [AS_HELP_STRING([--without-opengl], [don't use OpenGL libraries, disable native graphics])], |
11208
a44ba1cdfbb5
handle --without-opengl configure option
John W. Eaton <jwe@octave.org>
parents:
11119
diff
changeset
|
1471 [if test "x$withval" = xno; then |
a44ba1cdfbb5
handle --without-opengl configure option
John W. Eaton <jwe@octave.org>
parents:
11119
diff
changeset
|
1472 warn_opengl="--without-opengl specified. Native graphics will be disabled." |
14605
28e53daab1f8
Cleanup on autoconf warnings
Jordi Gutiérrez Hermoso <jordigh@octave.org>
parents:
14579
diff
changeset
|
1473 OCTAVE_CONFIGURE_WARNING([warn_opengl]) |
28e53daab1f8
Cleanup on autoconf warnings
Jordi Gutiérrez Hermoso <jordigh@octave.org>
parents:
14579
diff
changeset
|
1474 native_graphics=false |
11208
a44ba1cdfbb5
handle --without-opengl configure option
John W. Eaton <jwe@octave.org>
parents:
11119
diff
changeset
|
1475 else |
a44ba1cdfbb5
handle --without-opengl configure option
John W. Eaton <jwe@octave.org>
parents:
11119
diff
changeset
|
1476 check_opengl=true |
a44ba1cdfbb5
handle --without-opengl configure option
John W. Eaton <jwe@octave.org>
parents:
11119
diff
changeset
|
1477 fi], |
a44ba1cdfbb5
handle --without-opengl configure option
John W. Eaton <jwe@octave.org>
parents:
11119
diff
changeset
|
1478 [check_opengl=true]) |
a44ba1cdfbb5
handle --without-opengl configure option
John W. Eaton <jwe@octave.org>
parents:
11119
diff
changeset
|
1479 |
15063
36cbcc37fdb8
Refactor configure.ac to make it more understandable.
Rik <rik@octave.org>
parents:
15059
diff
changeset
|
1480 ## Check for OpenGL library |
11208
a44ba1cdfbb5
handle --without-opengl configure option
John W. Eaton <jwe@octave.org>
parents:
11119
diff
changeset
|
1481 if $check_opengl; then |
a44ba1cdfbb5
handle --without-opengl configure option
John W. Eaton <jwe@octave.org>
parents:
11119
diff
changeset
|
1482 OCTAVE_OPENGL |
a44ba1cdfbb5
handle --without-opengl configure option
John W. Eaton <jwe@octave.org>
parents:
11119
diff
changeset
|
1483 fi |
a44ba1cdfbb5
handle --without-opengl configure option
John W. Eaton <jwe@octave.org>
parents:
11119
diff
changeset
|
1484 |
10571
2ceb8e013597
add configure test for glu
Shai Ayal <shaiay@users.sourceforge.net>
parents:
10471
diff
changeset
|
1485 GRAPHICS_LIBS= |
2ceb8e013597
add configure test for glu
Shai Ayal <shaiay@users.sourceforge.net>
parents:
10471
diff
changeset
|
1486 GRAPHICS_CFLAGS= |
2ceb8e013597
add configure test for glu
Shai Ayal <shaiay@users.sourceforge.net>
parents:
10471
diff
changeset
|
1487 |
11214
7f19b2b6e093
Remove redundant warning when 'without-opengl' option used.
Rik <octave@nomad.inbox5.com>
parents:
11209
diff
changeset
|
1488 if test -z "$OPENGL_LIBS"; then |
7f19b2b6e093
Remove redundant warning when 'without-opengl' option used.
Rik <octave@nomad.inbox5.com>
parents:
11209
diff
changeset
|
1489 if $check_opengl; then |
15063
36cbcc37fdb8
Refactor configure.ac to make it more understandable.
Rik <rik@octave.org>
parents:
15059
diff
changeset
|
1490 warn_fltk_opengl="OpenGL libs (GL and GLU) not found. Native graphics will be disabled." |
14605
28e53daab1f8
Cleanup on autoconf warnings
Jordi Gutiérrez Hermoso <jordigh@octave.org>
parents:
14579
diff
changeset
|
1491 OCTAVE_CONFIGURE_WARNING([warn_fltk_opengl]) |
28e53daab1f8
Cleanup on autoconf warnings
Jordi Gutiérrez Hermoso <jordigh@octave.org>
parents:
14579
diff
changeset
|
1492 native_graphics=false |
11214
7f19b2b6e093
Remove redundant warning when 'without-opengl' option used.
Rik <octave@nomad.inbox5.com>
parents:
11209
diff
changeset
|
1493 fi |
7f19b2b6e093
Remove redundant warning when 'without-opengl' option used.
Rik <octave@nomad.inbox5.com>
parents:
11209
diff
changeset
|
1494 fi |
7f19b2b6e093
Remove redundant warning when 'without-opengl' option used.
Rik <octave@nomad.inbox5.com>
parents:
11209
diff
changeset
|
1495 |
7944
c2449e91f50a
configure.in: fix FTGL test to handle either FTGL/ftgl.h or ftgl.h
John W. Eaton <jwe@octave.org>
parents:
7937
diff
changeset
|
1496 if test -n "$OPENGL_LIBS"; then |
15063
36cbcc37fdb8
Refactor configure.ac to make it more understandable.
Rik <rik@octave.org>
parents:
15059
diff
changeset
|
1497 AC_DEFINE(HAVE_OPENGL, 1, [Define to 1 if OpenGL is available.]) |
7863
2a62d45fa21d
added check for FTGL library
Shai Ayal <shaiay@users.sourceforge.net>
parents:
7834
diff
changeset
|
1498 |
15063
36cbcc37fdb8
Refactor configure.ac to make it more understandable.
Rik <rik@octave.org>
parents:
15059
diff
changeset
|
1499 ## Check for FreeType 2 library |
9845
722bd8f6a750
configure.ac: fix freetype check
John W. Eaton <jwe@octave.org>
parents:
9817
diff
changeset
|
1500 |
15063
36cbcc37fdb8
Refactor configure.ac to make it more understandable.
Rik <rik@octave.org>
parents:
15059
diff
changeset
|
1501 AC_CHECK_FT2([9.0.3], [AC_DEFINE(HAVE_FREETYPE, 1, [Define to 1 if you have FreeType library.]) |
9845
722bd8f6a750
configure.ac: fix freetype check
John W. Eaton <jwe@octave.org>
parents:
9817
diff
changeset
|
1502 XTRA_CXXFLAGS="$XTRA_CXXFLAGS $FT2_CFLAGS"], |
10858
bf000a56a985
configure.ac: Change warning messages about freetype and fontconfig
Rik <octave@nomad.inbox5.com>
parents:
10845
diff
changeset
|
1503 [warn_freetype="FreeType library not found. Native graphics will be disabled."]) |
7834
caab78e7e377
added checks for fltk & freetype in configure script
Shai Ayal <shaiay@sourceforge.net>
parents:
7825
diff
changeset
|
1504 |
14605
28e53daab1f8
Cleanup on autoconf warnings
Jordi Gutiérrez Hermoso <jordigh@octave.org>
parents:
14579
diff
changeset
|
1505 if test -n "$warn_freetype"; then |
28e53daab1f8
Cleanup on autoconf warnings
Jordi Gutiérrez Hermoso <jordigh@octave.org>
parents:
14579
diff
changeset
|
1506 OCTAVE_CONFIGURE_WARNING([warn_freetype]) |
28e53daab1f8
Cleanup on autoconf warnings
Jordi Gutiérrez Hermoso <jordigh@octave.org>
parents:
14579
diff
changeset
|
1507 native_graphics=false |
28e53daab1f8
Cleanup on autoconf warnings
Jordi Gutiérrez Hermoso <jordigh@octave.org>
parents:
14579
diff
changeset
|
1508 fi |
28e53daab1f8
Cleanup on autoconf warnings
Jordi Gutiérrez Hermoso <jordigh@octave.org>
parents:
14579
diff
changeset
|
1509 |
15063
36cbcc37fdb8
Refactor configure.ac to make it more understandable.
Rik <rik@octave.org>
parents:
15059
diff
changeset
|
1510 ## Check for fontconfig library |
9403
4af6e29449c1
[mq]: graphics_text_engine
Michael Goffioul <michael.goffioul@gmail.com>
parents:
9259
diff
changeset
|
1511 |
10571
2ceb8e013597
add configure test for glu
Shai Ayal <shaiay@users.sourceforge.net>
parents:
10471
diff
changeset
|
1512 warn_fontconfig="" |
2ceb8e013597
add configure test for glu
Shai Ayal <shaiay@users.sourceforge.net>
parents:
10471
diff
changeset
|
1513 if test -z "$warn_freetype"; then |
2ceb8e013597
add configure test for glu
Shai Ayal <shaiay@users.sourceforge.net>
parents:
10471
diff
changeset
|
1514 PKG_CHECK_MODULES(FONTCONFIG, [fontconfig], [ |
2ceb8e013597
add configure test for glu
Shai Ayal <shaiay@users.sourceforge.net>
parents:
10471
diff
changeset
|
1515 have_fontconfig=yes |
2ceb8e013597
add configure test for glu
Shai Ayal <shaiay@users.sourceforge.net>
parents:
10471
diff
changeset
|
1516 OPENGL_LIBS="$FONTCONFIG_LIBS $OPENGL_LIBS" |
2ceb8e013597
add configure test for glu
Shai Ayal <shaiay@users.sourceforge.net>
parents:
10471
diff
changeset
|
1517 XTRA_CXXFLAGS="$XTRA_CXXFLAGS $FONTCONFIG_CFLAGS" |
15063
36cbcc37fdb8
Refactor configure.ac to make it more understandable.
Rik <rik@octave.org>
parents:
15059
diff
changeset
|
1518 AC_DEFINE(HAVE_FONTCONFIG, 1, [Define to 1 if fontconfig is present.])], [ |
10571
2ceb8e013597
add configure test for glu
Shai Ayal <shaiay@users.sourceforge.net>
parents:
10471
diff
changeset
|
1519 have_fontconfig=no |
10858
bf000a56a985
configure.ac: Change warning messages about freetype and fontconfig
Rik <octave@nomad.inbox5.com>
parents:
10845
diff
changeset
|
1520 warn_fontconfig="Fontconfig library not found. Native graphics will be disabled."]) |
10571
2ceb8e013597
add configure test for glu
Shai Ayal <shaiay@users.sourceforge.net>
parents:
10471
diff
changeset
|
1521 fi |
9403
4af6e29449c1
[mq]: graphics_text_engine
Michael Goffioul <michael.goffioul@gmail.com>
parents:
9259
diff
changeset
|
1522 |
14605
28e53daab1f8
Cleanup on autoconf warnings
Jordi Gutiérrez Hermoso <jordigh@octave.org>
parents:
14579
diff
changeset
|
1523 if test -n "$warn_fontconfig"; then |
28e53daab1f8
Cleanup on autoconf warnings
Jordi Gutiérrez Hermoso <jordigh@octave.org>
parents:
14579
diff
changeset
|
1524 OCTAVE_CONFIGURE_WARNING([warn_fontconfig]) |
28e53daab1f8
Cleanup on autoconf warnings
Jordi Gutiérrez Hermoso <jordigh@octave.org>
parents:
14579
diff
changeset
|
1525 native_graphics=false |
28e53daab1f8
Cleanup on autoconf warnings
Jordi Gutiérrez Hermoso <jordigh@octave.org>
parents:
14579
diff
changeset
|
1526 fi |
28e53daab1f8
Cleanup on autoconf warnings
Jordi Gutiérrez Hermoso <jordigh@octave.org>
parents:
14579
diff
changeset
|
1527 |
15063
36cbcc37fdb8
Refactor configure.ac to make it more understandable.
Rik <rik@octave.org>
parents:
15059
diff
changeset
|
1528 ## Check for FLTK (www.fltk.org) library |
11041 | 1529 |
1530 AC_ARG_WITH([fltk-prefix], [ | |
1531 AS_HELP_STRING([--with-fltk-prefix=PFX], | |
1532 [Prefix where FLTK is installed (optional)])], [ | |
1533 fltk_prefix="$withval"], [ | |
1534 fltk_prefix=""]) | |
1535 | |
1536 AC_ARG_WITH([fltk-exec-prefix], [ | |
1537 AS_HELP_STRING([--with-fltk-exec-prefix=PFX], | |
1538 [Exec prefix where FLTK is installed (optional)])], [ | |
1539 fltk_exec_prefix="$withval"], [ | |
1540 fltk_exec_prefix=""]) | |
7834
caab78e7e377
added checks for fltk & freetype in configure script
Shai Ayal <shaiay@sourceforge.net>
parents:
7825
diff
changeset
|
1541 |
10571
2ceb8e013597
add configure test for glu
Shai Ayal <shaiay@users.sourceforge.net>
parents:
10471
diff
changeset
|
1542 if test -n "$fltk_exec_prefix"; then |
2ceb8e013597
add configure test for glu
Shai Ayal <shaiay@users.sourceforge.net>
parents:
10471
diff
changeset
|
1543 fltk_args="$fltk_args --exec-prefix=$fltk_exec_prefix" |
2ceb8e013597
add configure test for glu
Shai Ayal <shaiay@users.sourceforge.net>
parents:
10471
diff
changeset
|
1544 if test "x${FLTK_CONFIG+set}" != xset ; then |
2ceb8e013597
add configure test for glu
Shai Ayal <shaiay@users.sourceforge.net>
parents:
10471
diff
changeset
|
1545 FLTK_CONFIG="$fltk_exec_prefix/bin/fltk-config" |
2ceb8e013597
add configure test for glu
Shai Ayal <shaiay@users.sourceforge.net>
parents:
10471
diff
changeset
|
1546 fi |
7834
caab78e7e377
added checks for fltk & freetype in configure script
Shai Ayal <shaiay@sourceforge.net>
parents:
7825
diff
changeset
|
1547 fi |
caab78e7e377
added checks for fltk & freetype in configure script
Shai Ayal <shaiay@sourceforge.net>
parents:
7825
diff
changeset
|
1548 |
10571
2ceb8e013597
add configure test for glu
Shai Ayal <shaiay@users.sourceforge.net>
parents:
10471
diff
changeset
|
1549 if test -n "$fltk_prefix"; then |
2ceb8e013597
add configure test for glu
Shai Ayal <shaiay@users.sourceforge.net>
parents:
10471
diff
changeset
|
1550 fltk_args="$fltk_args --prefix=$fltk_prefix" |
2ceb8e013597
add configure test for glu
Shai Ayal <shaiay@users.sourceforge.net>
parents:
10471
diff
changeset
|
1551 if test x${FLTK_CONFIG+set} != xset ; then |
2ceb8e013597
add configure test for glu
Shai Ayal <shaiay@users.sourceforge.net>
parents:
10471
diff
changeset
|
1552 FLTK_CONFIG="$fltk_prefix/bin/fltk-config" |
2ceb8e013597
add configure test for glu
Shai Ayal <shaiay@users.sourceforge.net>
parents:
10471
diff
changeset
|
1553 fi |
7834
caab78e7e377
added checks for fltk & freetype in configure script
Shai Ayal <shaiay@sourceforge.net>
parents:
7825
diff
changeset
|
1554 fi |
10571
2ceb8e013597
add configure test for glu
Shai Ayal <shaiay@users.sourceforge.net>
parents:
10471
diff
changeset
|
1555 |
11041 | 1556 AC_PATH_PROG([FLTK_CONFIG], [fltk-config], [no]) |
10571
2ceb8e013597
add configure test for glu
Shai Ayal <shaiay@users.sourceforge.net>
parents:
10471
diff
changeset
|
1557 |
2ceb8e013597
add configure test for glu
Shai Ayal <shaiay@users.sourceforge.net>
parents:
10471
diff
changeset
|
1558 warn_fltk_config="" |
2ceb8e013597
add configure test for glu
Shai Ayal <shaiay@users.sourceforge.net>
parents:
10471
diff
changeset
|
1559 warn_fltk_opengl="" |
2ceb8e013597
add configure test for glu
Shai Ayal <shaiay@users.sourceforge.net>
parents:
10471
diff
changeset
|
1560 |
2ceb8e013597
add configure test for glu
Shai Ayal <shaiay@users.sourceforge.net>
parents:
10471
diff
changeset
|
1561 if test "$FLTK_CONFIG" = "no" ; then |
2ceb8e013597
add configure test for glu
Shai Ayal <shaiay@users.sourceforge.net>
parents:
10471
diff
changeset
|
1562 warn_fltk_config="FLTK config script not found. Native graphics will be disabled." |
14605
28e53daab1f8
Cleanup on autoconf warnings
Jordi Gutiérrez Hermoso <jordigh@octave.org>
parents:
14579
diff
changeset
|
1563 OCTAVE_CONFIGURE_WARNING([warn_fltk_config]) |
28e53daab1f8
Cleanup on autoconf warnings
Jordi Gutiérrez Hermoso <jordigh@octave.org>
parents:
14579
diff
changeset
|
1564 native_graphics=false |
10571
2ceb8e013597
add configure test for glu
Shai Ayal <shaiay@users.sourceforge.net>
parents:
10471
diff
changeset
|
1565 else |
2ceb8e013597
add configure test for glu
Shai Ayal <shaiay@users.sourceforge.net>
parents:
10471
diff
changeset
|
1566 FLTK_CFLAGS="`$FLTK_CONFIG $fltkconf_args --use-gl --cflags`" |
2ceb8e013597
add configure test for glu
Shai Ayal <shaiay@users.sourceforge.net>
parents:
10471
diff
changeset
|
1567 FLTK_LDFLAGS="`$FLTK_CONFIG $fltkconf_args --use-gl --ldflags`" |
7834
caab78e7e377
added checks for fltk & freetype in configure script
Shai Ayal <shaiay@sourceforge.net>
parents:
7825
diff
changeset
|
1568 |
10571
2ceb8e013597
add configure test for glu
Shai Ayal <shaiay@users.sourceforge.net>
parents:
10471
diff
changeset
|
1569 case "$canonical_host_type" in |
2ceb8e013597
add configure test for glu
Shai Ayal <shaiay@users.sourceforge.net>
parents:
10471
diff
changeset
|
1570 *-*-mingw*) |
2ceb8e013597
add configure test for glu
Shai Ayal <shaiay@users.sourceforge.net>
parents:
10471
diff
changeset
|
1571 FLTK_LDFLAGS="`echo $FLTK_LDFLAGS | sed -e 's/-mwindows//g'`" |
2ceb8e013597
add configure test for glu
Shai Ayal <shaiay@users.sourceforge.net>
parents:
10471
diff
changeset
|
1572 ;; |
2ceb8e013597
add configure test for glu
Shai Ayal <shaiay@users.sourceforge.net>
parents:
10471
diff
changeset
|
1573 esac |
7834
caab78e7e377
added checks for fltk & freetype in configure script
Shai Ayal <shaiay@sourceforge.net>
parents:
7825
diff
changeset
|
1574 |
10571
2ceb8e013597
add configure test for glu
Shai Ayal <shaiay@users.sourceforge.net>
parents:
10471
diff
changeset
|
1575 AC_MSG_CHECKING([for OpenGL support in FLTK]) |
12450
47612d3e7077
use AC_COMPILE_IFELSE to check for OpenGL support in FLTK
Benjamin Lindner <lindnerb@users.sourceforge.net>
parents:
12336
diff
changeset
|
1576 save_CFLAGS="$CFLAGS" |
47612d3e7077
use AC_COMPILE_IFELSE to check for OpenGL support in FLTK
Benjamin Lindner <lindnerb@users.sourceforge.net>
parents:
12336
diff
changeset
|
1577 CFLAGS="$CFLAGS $FLTK_CFLAGS" |
47612d3e7077
use AC_COMPILE_IFELSE to check for OpenGL support in FLTK
Benjamin Lindner <lindnerb@users.sourceforge.net>
parents:
12336
diff
changeset
|
1578 AC_COMPILE_IFELSE( |
12743
5d8f2a091b23
maint: avoid warnings from autoconf
John W. Eaton <jwe@octave.org>
parents:
12742
diff
changeset
|
1579 [AC_LANG_PROGRAM([[#include <FL/gl.h>]], [[int nothing = 0;]])], |
12450
47612d3e7077
use AC_COMPILE_IFELSE to check for OpenGL support in FLTK
Benjamin Lindner <lindnerb@users.sourceforge.net>
parents:
12336
diff
changeset
|
1580 [ |
47612d3e7077
use AC_COMPILE_IFELSE to check for OpenGL support in FLTK
Benjamin Lindner <lindnerb@users.sourceforge.net>
parents:
12336
diff
changeset
|
1581 AC_MSG_RESULT([no]) |
47612d3e7077
use AC_COMPILE_IFELSE to check for OpenGL support in FLTK
Benjamin Lindner <lindnerb@users.sourceforge.net>
parents:
12336
diff
changeset
|
1582 warn_fltk_opengl="FLTK does not have OpenGL support. Native graphics will be disabled." |
47612d3e7077
use AC_COMPILE_IFELSE to check for OpenGL support in FLTK
Benjamin Lindner <lindnerb@users.sourceforge.net>
parents:
12336
diff
changeset
|
1583 ],[ |
15063
36cbcc37fdb8
Refactor configure.ac to make it more understandable.
Rik <rik@octave.org>
parents:
15059
diff
changeset
|
1584 AC_DEFINE(HAVE_FLTK, 1, [Define to 1 if FLTK is available.]) |
12450
47612d3e7077
use AC_COMPILE_IFELSE to check for OpenGL support in FLTK
Benjamin Lindner <lindnerb@users.sourceforge.net>
parents:
12336
diff
changeset
|
1585 AC_MSG_RESULT([yes]) |
47612d3e7077
use AC_COMPILE_IFELSE to check for OpenGL support in FLTK
Benjamin Lindner <lindnerb@users.sourceforge.net>
parents:
12336
diff
changeset
|
1586 ]) |
47612d3e7077
use AC_COMPILE_IFELSE to check for OpenGL support in FLTK
Benjamin Lindner <lindnerb@users.sourceforge.net>
parents:
12336
diff
changeset
|
1587 |
10571
2ceb8e013597
add configure test for glu
Shai Ayal <shaiay@users.sourceforge.net>
parents:
10471
diff
changeset
|
1588 if test -z "$warn_fltk_opengl"; then |
2ceb8e013597
add configure test for glu
Shai Ayal <shaiay@users.sourceforge.net>
parents:
10471
diff
changeset
|
1589 GRAPHICS_CFLAGS="$FLTK_CFLAGS" |
2ceb8e013597
add configure test for glu
Shai Ayal <shaiay@users.sourceforge.net>
parents:
10471
diff
changeset
|
1590 GRAPHICS_LIBS="$FLTK_LDFLAGS" |
14605
28e53daab1f8
Cleanup on autoconf warnings
Jordi Gutiérrez Hermoso <jordigh@octave.org>
parents:
14579
diff
changeset
|
1591 else |
28e53daab1f8
Cleanup on autoconf warnings
Jordi Gutiérrez Hermoso <jordigh@octave.org>
parents:
14579
diff
changeset
|
1592 OCTAVE_CONFIGURE_WARNING([warn_fltk_opengl]) |
28e53daab1f8
Cleanup on autoconf warnings
Jordi Gutiérrez Hermoso <jordigh@octave.org>
parents:
14579
diff
changeset
|
1593 native_graphics=false |
10571
2ceb8e013597
add configure test for glu
Shai Ayal <shaiay@users.sourceforge.net>
parents:
10471
diff
changeset
|
1594 fi |
12450
47612d3e7077
use AC_COMPILE_IFELSE to check for OpenGL support in FLTK
Benjamin Lindner <lindnerb@users.sourceforge.net>
parents:
12336
diff
changeset
|
1595 CFLAGS="$save_CFLAGS" |
10571
2ceb8e013597
add configure test for glu
Shai Ayal <shaiay@users.sourceforge.net>
parents:
10471
diff
changeset
|
1596 fi |
7834
caab78e7e377
added checks for fltk & freetype in configure script
Shai Ayal <shaiay@sourceforge.net>
parents:
7825
diff
changeset
|
1597 fi |
caab78e7e377
added checks for fltk & freetype in configure script
Shai Ayal <shaiay@sourceforge.net>
parents:
7825
diff
changeset
|
1598 |
caab78e7e377
added checks for fltk & freetype in configure script
Shai Ayal <shaiay@sourceforge.net>
parents:
7825
diff
changeset
|
1599 AC_SUBST(GRAPHICS_CFLAGS) |
caab78e7e377
added checks for fltk & freetype in configure script
Shai Ayal <shaiay@sourceforge.net>
parents:
7825
diff
changeset
|
1600 AC_SUBST(GRAPHICS_LIBS) |
caab78e7e377
added checks for fltk & freetype in configure script
Shai Ayal <shaiay@sourceforge.net>
parents:
7825
diff
changeset
|
1601 |
15063
36cbcc37fdb8
Refactor configure.ac to make it more understandable.
Rik <rik@octave.org>
parents:
15059
diff
changeset
|
1602 ### Start determination of shared vs. static libraries |
3827 | 1603 |
3130 | 1604 OCTAVE_PROG_AR |
3012 | 1605 |
9801
13868ea67c71
configure.ac: fail if LT_INIT is not defined
John W. Eaton <jwe@octave.org>
parents:
9799
diff
changeset
|
1606 ifdef([LT_INIT], [], [ |
13868ea67c71
configure.ac: fail if LT_INIT is not defined
John W. Eaton <jwe@octave.org>
parents:
9799
diff
changeset
|
1607 errprint([error: you must have libtool 2.2.2 or a more recent version |
13868ea67c71
configure.ac: fail if LT_INIT is not defined
John W. Eaton <jwe@octave.org>
parents:
9799
diff
changeset
|
1608 ]) |
13868ea67c71
configure.ac: fail if LT_INIT is not defined
John W. Eaton <jwe@octave.org>
parents:
9799
diff
changeset
|
1609 m4exit([1])]) |
13868ea67c71
configure.ac: fail if LT_INIT is not defined
John W. Eaton <jwe@octave.org>
parents:
9799
diff
changeset
|
1610 |
9794
0d4613a736e9
convert build system to use automake and libtool
John W. Eaton <jwe@octave.org>
parents:
9787
diff
changeset
|
1611 LT_PREREQ([2.2.2]) |
0d4613a736e9
convert build system to use automake and libtool
John W. Eaton <jwe@octave.org>
parents:
9787
diff
changeset
|
1612 LT_INIT([disable-static dlopen win32-dll]) |
0d4613a736e9
convert build system to use automake and libtool
John W. Eaton <jwe@octave.org>
parents:
9787
diff
changeset
|
1613 |
0d4613a736e9
convert build system to use automake and libtool
John W. Eaton <jwe@octave.org>
parents:
9787
diff
changeset
|
1614 if test x$enable_shared = xyes; then |
0d4613a736e9
convert build system to use automake and libtool
John W. Eaton <jwe@octave.org>
parents:
9787
diff
changeset
|
1615 SHARED_LIBS=true |
0d4613a736e9
convert build system to use automake and libtool
John W. Eaton <jwe@octave.org>
parents:
9787
diff
changeset
|
1616 else |
0d4613a736e9
convert build system to use automake and libtool
John W. Eaton <jwe@octave.org>
parents:
9787
diff
changeset
|
1617 SHARED_LIBS=false |
0d4613a736e9
convert build system to use automake and libtool
John W. Eaton <jwe@octave.org>
parents:
9787
diff
changeset
|
1618 fi |
0d4613a736e9
convert build system to use automake and libtool
John W. Eaton <jwe@octave.org>
parents:
9787
diff
changeset
|
1619 |
0d4613a736e9
convert build system to use automake and libtool
John W. Eaton <jwe@octave.org>
parents:
9787
diff
changeset
|
1620 if test x$enable_static = xyes; then |
0d4613a736e9
convert build system to use automake and libtool
John W. Eaton <jwe@octave.org>
parents:
9787
diff
changeset
|
1621 STATIC_LIBS=true |
0d4613a736e9
convert build system to use automake and libtool
John W. Eaton <jwe@octave.org>
parents:
9787
diff
changeset
|
1622 else |
0d4613a736e9
convert build system to use automake and libtool
John W. Eaton <jwe@octave.org>
parents:
9787
diff
changeset
|
1623 STATIC_LIBS=false |
0d4613a736e9
convert build system to use automake and libtool
John W. Eaton <jwe@octave.org>
parents:
9787
diff
changeset
|
1624 fi |
3012 | 1625 |
6137 | 1626 XTRA_CRUFT_SH_LDFLAGS= |
10123
8590f3c51868
Fix a few MSVC-related problems and partially re-enable MSVC compilation.
Michael Goffioul <michael.goffioul@gmail.com>
parents:
10092
diff
changeset
|
1627 if test "$have_msvc" = "yes"; then |
8590f3c51868
Fix a few MSVC-related problems and partially re-enable MSVC compilation.
Michael Goffioul <michael.goffioul@gmail.com>
parents:
10092
diff
changeset
|
1628 FLIBS="$FLIBS -lkernel32" |
8590f3c51868
Fix a few MSVC-related problems and partially re-enable MSVC compilation.
Michael Goffioul <michael.goffioul@gmail.com>
parents:
10092
diff
changeset
|
1629 XTRA_CRUFT_SH_LDFLAGS="-Wl,-def:cruft.def" |
8590f3c51868
Fix a few MSVC-related problems and partially re-enable MSVC compilation.
Michael Goffioul <michael.goffioul@gmail.com>
parents:
10092
diff
changeset
|
1630 fi |
6137 | 1631 AC_SUBST(XTRA_CRUFT_SH_LDFLAGS) |
6102 | 1632 |
15063
36cbcc37fdb8
Refactor configure.ac to make it more understandable.
Rik <rik@octave.org>
parents:
15059
diff
changeset
|
1633 ### Check for BLAS and LAPACK libraries: |
10721
4906ccf5d95e
use F77_INTEGER8_FLAG in BLAS checking as well as ALL_FFLAGS in mkoctfile
Jaroslav Hajek <highegg@gmail.com>
parents:
10622
diff
changeset
|
1634 |
4906ccf5d95e
use F77_INTEGER8_FLAG in BLAS checking as well as ALL_FFLAGS in mkoctfile
Jaroslav Hajek <highegg@gmail.com>
parents:
10622
diff
changeset
|
1635 ## Need to adjust FFLAGS to include correct integer size. |
4906ccf5d95e
use F77_INTEGER8_FLAG in BLAS checking as well as ALL_FFLAGS in mkoctfile
Jaroslav Hajek <highegg@gmail.com>
parents:
10622
diff
changeset
|
1636 save_FFLAGS="$FFLAGS" |
4906ccf5d95e
use F77_INTEGER8_FLAG in BLAS checking as well as ALL_FFLAGS in mkoctfile
Jaroslav Hajek <highegg@gmail.com>
parents:
10622
diff
changeset
|
1637 FFLAGS="$FFLAGS $F77_INTEGER_8_FLAG" |
4906ccf5d95e
use F77_INTEGER8_FLAG in BLAS checking as well as ALL_FFLAGS in mkoctfile
Jaroslav Hajek <highegg@gmail.com>
parents:
10622
diff
changeset
|
1638 |
10951 | 1639 AX_BLAS_WITH_F77_FUNC([:], [:]) |
1640 AX_LAPACK([:], [:]) | |
9794
0d4613a736e9
convert build system to use automake and libtool
John W. Eaton <jwe@octave.org>
parents:
9787
diff
changeset
|
1641 |
10721
4906ccf5d95e
use F77_INTEGER8_FLAG in BLAS checking as well as ALL_FFLAGS in mkoctfile
Jaroslav Hajek <highegg@gmail.com>
parents:
10622
diff
changeset
|
1642 ## Restore FFLAGS. |
4906ccf5d95e
use F77_INTEGER8_FLAG in BLAS checking as well as ALL_FFLAGS in mkoctfile
Jaroslav Hajek <highegg@gmail.com>
parents:
10622
diff
changeset
|
1643 FFLAGS="$save_FFLAGS" |
4906ccf5d95e
use F77_INTEGER8_FLAG in BLAS checking as well as ALL_FFLAGS in mkoctfile
Jaroslav Hajek <highegg@gmail.com>
parents:
10622
diff
changeset
|
1644 |
12538
6a225fb7d361
Test fortran with -ff2c and with a wrapper for Apple blas/lapack, when needed.
Jarno Rajahalme <jarno.rajahalme@nsn.com>
parents:
12464
diff
changeset
|
1645 ## Try again with -ff2c in FFLAGS |
6a225fb7d361
Test fortran with -ff2c and with a wrapper for Apple blas/lapack, when needed.
Jarno Rajahalme <jarno.rajahalme@nsn.com>
parents:
12464
diff
changeset
|
1646 if test "x$ax_blas_f77_func_ok" = "xno"; then |
6a225fb7d361
Test fortran with -ff2c and with a wrapper for Apple blas/lapack, when needed.
Jarno Rajahalme <jarno.rajahalme@nsn.com>
parents:
12464
diff
changeset
|
1647 save_FFLAGS="$FFLAGS" |
6a225fb7d361
Test fortran with -ff2c and with a wrapper for Apple blas/lapack, when needed.
Jarno Rajahalme <jarno.rajahalme@nsn.com>
parents:
12464
diff
changeset
|
1648 FFLAGS="-ff2c $FFLAGS $F77_INTEGER_8_FLAG" |
6a225fb7d361
Test fortran with -ff2c and with a wrapper for Apple blas/lapack, when needed.
Jarno Rajahalme <jarno.rajahalme@nsn.com>
parents:
12464
diff
changeset
|
1649 |
6a225fb7d361
Test fortran with -ff2c and with a wrapper for Apple blas/lapack, when needed.
Jarno Rajahalme <jarno.rajahalme@nsn.com>
parents:
12464
diff
changeset
|
1650 AX_BLAS_WITH_F77_FUNC([:], [:]) |
6a225fb7d361
Test fortran with -ff2c and with a wrapper for Apple blas/lapack, when needed.
Jarno Rajahalme <jarno.rajahalme@nsn.com>
parents:
12464
diff
changeset
|
1651 AX_LAPACK([:], [:]) |
6a225fb7d361
Test fortran with -ff2c and with a wrapper for Apple blas/lapack, when needed.
Jarno Rajahalme <jarno.rajahalme@nsn.com>
parents:
12464
diff
changeset
|
1652 |
6a225fb7d361
Test fortran with -ff2c and with a wrapper for Apple blas/lapack, when needed.
Jarno Rajahalme <jarno.rajahalme@nsn.com>
parents:
12464
diff
changeset
|
1653 ## Restore FFLAGS, with -ff2c if that was helpful |
6a225fb7d361
Test fortran with -ff2c and with a wrapper for Apple blas/lapack, when needed.
Jarno Rajahalme <jarno.rajahalme@nsn.com>
parents:
12464
diff
changeset
|
1654 |
6a225fb7d361
Test fortran with -ff2c and with a wrapper for Apple blas/lapack, when needed.
Jarno Rajahalme <jarno.rajahalme@nsn.com>
parents:
12464
diff
changeset
|
1655 if test "x$ax_blas_f77_func_ok" = "xno"; then |
6a225fb7d361
Test fortran with -ff2c and with a wrapper for Apple blas/lapack, when needed.
Jarno Rajahalme <jarno.rajahalme@nsn.com>
parents:
12464
diff
changeset
|
1656 FFLAGS="$save_FFLAGS" |
6a225fb7d361
Test fortran with -ff2c and with a wrapper for Apple blas/lapack, when needed.
Jarno Rajahalme <jarno.rajahalme@nsn.com>
parents:
12464
diff
changeset
|
1657 else |
6a225fb7d361
Test fortran with -ff2c and with a wrapper for Apple blas/lapack, when needed.
Jarno Rajahalme <jarno.rajahalme@nsn.com>
parents:
12464
diff
changeset
|
1658 FFLAGS="-ff2c $save_FFLAGS" |
6a225fb7d361
Test fortran with -ff2c and with a wrapper for Apple blas/lapack, when needed.
Jarno Rajahalme <jarno.rajahalme@nsn.com>
parents:
12464
diff
changeset
|
1659 fi |
6a225fb7d361
Test fortran with -ff2c and with a wrapper for Apple blas/lapack, when needed.
Jarno Rajahalme <jarno.rajahalme@nsn.com>
parents:
12464
diff
changeset
|
1660 fi |
6a225fb7d361
Test fortran with -ff2c and with a wrapper for Apple blas/lapack, when needed.
Jarno Rajahalme <jarno.rajahalme@nsn.com>
parents:
12464
diff
changeset
|
1661 |
6a225fb7d361
Test fortran with -ff2c and with a wrapper for Apple blas/lapack, when needed.
Jarno Rajahalme <jarno.rajahalme@nsn.com>
parents:
12464
diff
changeset
|
1662 ## On OSX, try again with a wrapper library (without -ff2c!) |
6a225fb7d361
Test fortran with -ff2c and with a wrapper for Apple blas/lapack, when needed.
Jarno Rajahalme <jarno.rajahalme@nsn.com>
parents:
12464
diff
changeset
|
1663 if test "x$ax_blas_f77_func_ok" = "xno"; then |
6a225fb7d361
Test fortran with -ff2c and with a wrapper for Apple blas/lapack, when needed.
Jarno Rajahalme <jarno.rajahalme@nsn.com>
parents:
12464
diff
changeset
|
1664 case "$canonical_host_type" in |
6a225fb7d361
Test fortran with -ff2c and with a wrapper for Apple blas/lapack, when needed.
Jarno Rajahalme <jarno.rajahalme@nsn.com>
parents:
12464
diff
changeset
|
1665 *-*-darwin*) |
6a225fb7d361
Test fortran with -ff2c and with a wrapper for Apple blas/lapack, when needed.
Jarno Rajahalme <jarno.rajahalme@nsn.com>
parents:
12464
diff
changeset
|
1666 ## test if wrapper functions help |
6a225fb7d361
Test fortran with -ff2c and with a wrapper for Apple blas/lapack, when needed.
Jarno Rajahalme <jarno.rajahalme@nsn.com>
parents:
12464
diff
changeset
|
1667 octave_blaswrap_save_CFLAGS="$CFLAGS" |
6a225fb7d361
Test fortran with -ff2c and with a wrapper for Apple blas/lapack, when needed.
Jarno Rajahalme <jarno.rajahalme@nsn.com>
parents:
12464
diff
changeset
|
1668 CFLAGS="$CFLAGS -DUSE_BLASWRAP" |
6a225fb7d361
Test fortran with -ff2c and with a wrapper for Apple blas/lapack, when needed.
Jarno Rajahalme <jarno.rajahalme@nsn.com>
parents:
12464
diff
changeset
|
1669 AC_LANG_PUSH(C) |
12743
5d8f2a091b23
maint: avoid warnings from autoconf
John W. Eaton <jwe@octave.org>
parents:
12742
diff
changeset
|
1670 AC_COMPILE_IFELSE([AC_LANG_SOURCE([ |
5d8f2a091b23
maint: avoid warnings from autoconf
John W. Eaton <jwe@octave.org>
parents:
12742
diff
changeset
|
1671 #include "libcruft/misc/blaswrap.c" |
5d8f2a091b23
maint: avoid warnings from autoconf
John W. Eaton <jwe@octave.org>
parents:
12742
diff
changeset
|
1672 ])], |
12538
6a225fb7d361
Test fortran with -ff2c and with a wrapper for Apple blas/lapack, when needed.
Jarno Rajahalme <jarno.rajahalme@nsn.com>
parents:
12464
diff
changeset
|
1673 [mv conftest.$ac_objext blaswrap.$ac_objext |
6a225fb7d361
Test fortran with -ff2c and with a wrapper for Apple blas/lapack, when needed.
Jarno Rajahalme <jarno.rajahalme@nsn.com>
parents:
12464
diff
changeset
|
1674 octave_blaswrap_save_BLAS_LIBS="$BLAS_LIBS" |
6a225fb7d361
Test fortran with -ff2c and with a wrapper for Apple blas/lapack, when needed.
Jarno Rajahalme <jarno.rajahalme@nsn.com>
parents:
12464
diff
changeset
|
1675 BLAS_LIBS="blaswrap.$ac_objext -framework vecLib" |
6a225fb7d361
Test fortran with -ff2c and with a wrapper for Apple blas/lapack, when needed.
Jarno Rajahalme <jarno.rajahalme@nsn.com>
parents:
12464
diff
changeset
|
1676 |
6a225fb7d361
Test fortran with -ff2c and with a wrapper for Apple blas/lapack, when needed.
Jarno Rajahalme <jarno.rajahalme@nsn.com>
parents:
12464
diff
changeset
|
1677 save_FFLAGS="$FFLAGS" |
6a225fb7d361
Test fortran with -ff2c and with a wrapper for Apple blas/lapack, when needed.
Jarno Rajahalme <jarno.rajahalme@nsn.com>
parents:
12464
diff
changeset
|
1678 FFLAGS="$FFLAGS $F77_INTEGER_8_FLAG" |
6a225fb7d361
Test fortran with -ff2c and with a wrapper for Apple blas/lapack, when needed.
Jarno Rajahalme <jarno.rajahalme@nsn.com>
parents:
12464
diff
changeset
|
1679 |
6a225fb7d361
Test fortran with -ff2c and with a wrapper for Apple blas/lapack, when needed.
Jarno Rajahalme <jarno.rajahalme@nsn.com>
parents:
12464
diff
changeset
|
1680 AX_BLAS_WITH_F77_FUNC([:], [:]) |
6a225fb7d361
Test fortran with -ff2c and with a wrapper for Apple blas/lapack, when needed.
Jarno Rajahalme <jarno.rajahalme@nsn.com>
parents:
12464
diff
changeset
|
1681 AX_LAPACK([:], [:]) |
6a225fb7d361
Test fortran with -ff2c and with a wrapper for Apple blas/lapack, when needed.
Jarno Rajahalme <jarno.rajahalme@nsn.com>
parents:
12464
diff
changeset
|
1682 |
6a225fb7d361
Test fortran with -ff2c and with a wrapper for Apple blas/lapack, when needed.
Jarno Rajahalme <jarno.rajahalme@nsn.com>
parents:
12464
diff
changeset
|
1683 ## Restore FFLAGS. |
6a225fb7d361
Test fortran with -ff2c and with a wrapper for Apple blas/lapack, when needed.
Jarno Rajahalme <jarno.rajahalme@nsn.com>
parents:
12464
diff
changeset
|
1684 FFLAGS="$save_FFLAGS" |
6a225fb7d361
Test fortran with -ff2c and with a wrapper for Apple blas/lapack, when needed.
Jarno Rajahalme <jarno.rajahalme@nsn.com>
parents:
12464
diff
changeset
|
1685 |
6a225fb7d361
Test fortran with -ff2c and with a wrapper for Apple blas/lapack, when needed.
Jarno Rajahalme <jarno.rajahalme@nsn.com>
parents:
12464
diff
changeset
|
1686 ## remove temp file |
6a225fb7d361
Test fortran with -ff2c and with a wrapper for Apple blas/lapack, when needed.
Jarno Rajahalme <jarno.rajahalme@nsn.com>
parents:
12464
diff
changeset
|
1687 rm -f blaswrap.$ac_objext], |
6a225fb7d361
Test fortran with -ff2c and with a wrapper for Apple blas/lapack, when needed.
Jarno Rajahalme <jarno.rajahalme@nsn.com>
parents:
12464
diff
changeset
|
1688 [AC_MSG_FAILURE([cannot compile libcruft/misc/blaswrap.c])]) |
6a225fb7d361
Test fortran with -ff2c and with a wrapper for Apple blas/lapack, when needed.
Jarno Rajahalme <jarno.rajahalme@nsn.com>
parents:
12464
diff
changeset
|
1689 AC_LANG_POP(C) |
6a225fb7d361
Test fortran with -ff2c and with a wrapper for Apple blas/lapack, when needed.
Jarno Rajahalme <jarno.rajahalme@nsn.com>
parents:
12464
diff
changeset
|
1690 CFLAGS="$octave_blaswrap_save_CFLAGS" |
6a225fb7d361
Test fortran with -ff2c and with a wrapper for Apple blas/lapack, when needed.
Jarno Rajahalme <jarno.rajahalme@nsn.com>
parents:
12464
diff
changeset
|
1691 |
6a225fb7d361
Test fortran with -ff2c and with a wrapper for Apple blas/lapack, when needed.
Jarno Rajahalme <jarno.rajahalme@nsn.com>
parents:
12464
diff
changeset
|
1692 if test "x$ax_blas_f77_func_ok" = "xno"; then |
6a225fb7d361
Test fortran with -ff2c and with a wrapper for Apple blas/lapack, when needed.
Jarno Rajahalme <jarno.rajahalme@nsn.com>
parents:
12464
diff
changeset
|
1693 BLAS_LIBS="$octave_blaswrap_save_BLAS_LIBS" |
6a225fb7d361
Test fortran with -ff2c and with a wrapper for Apple blas/lapack, when needed.
Jarno Rajahalme <jarno.rajahalme@nsn.com>
parents:
12464
diff
changeset
|
1694 else |
6a225fb7d361
Test fortran with -ff2c and with a wrapper for Apple blas/lapack, when needed.
Jarno Rajahalme <jarno.rajahalme@nsn.com>
parents:
12464
diff
changeset
|
1695 ## wrapper in libcruft, remove from BLAS_LIBS |
6a225fb7d361
Test fortran with -ff2c and with a wrapper for Apple blas/lapack, when needed.
Jarno Rajahalme <jarno.rajahalme@nsn.com>
parents:
12464
diff
changeset
|
1696 BLAS_LIBS="`echo $BLAS_LIBS | sed -e 's/blaswrap.[[^ ]]* //g'`" |
15063
36cbcc37fdb8
Refactor configure.ac to make it more understandable.
Rik <rik@octave.org>
parents:
15059
diff
changeset
|
1697 AC_DEFINE(USE_BLASWRAP, 1, [Define to 1 if BLAS functions need to be wrapped (potentially needed for 64-bit OSX only).]) |
12538
6a225fb7d361
Test fortran with -ff2c and with a wrapper for Apple blas/lapack, when needed.
Jarno Rajahalme <jarno.rajahalme@nsn.com>
parents:
12464
diff
changeset
|
1698 fi |
6a225fb7d361
Test fortran with -ff2c and with a wrapper for Apple blas/lapack, when needed.
Jarno Rajahalme <jarno.rajahalme@nsn.com>
parents:
12464
diff
changeset
|
1699 ;; |
6a225fb7d361
Test fortran with -ff2c and with a wrapper for Apple blas/lapack, when needed.
Jarno Rajahalme <jarno.rajahalme@nsn.com>
parents:
12464
diff
changeset
|
1700 esac |
6a225fb7d361
Test fortran with -ff2c and with a wrapper for Apple blas/lapack, when needed.
Jarno Rajahalme <jarno.rajahalme@nsn.com>
parents:
12464
diff
changeset
|
1701 fi |
6a225fb7d361
Test fortran with -ff2c and with a wrapper for Apple blas/lapack, when needed.
Jarno Rajahalme <jarno.rajahalme@nsn.com>
parents:
12464
diff
changeset
|
1702 |
10951 | 1703 if test "x$ax_blas_f77_func_ok" = "xno"; then |
1704 if $USE_64_BIT_IDX_T && test "$ax_blas_integer_size_ok" = "no" ; then | |
10721
4906ccf5d95e
use F77_INTEGER8_FLAG in BLAS checking as well as ALL_FFLAGS in mkoctfile
Jaroslav Hajek <highegg@gmail.com>
parents:
10622
diff
changeset
|
1705 ## Attempt to be more informative. |
15063
36cbcc37fdb8
Refactor configure.ac to make it more understandable.
Rik <rik@octave.org>
parents:
15059
diff
changeset
|
1706 AC_MSG_ERROR([BLAS doesn't seem to support 64-bit integers. This is incompatible with --enable-64.]) |
10721
4906ccf5d95e
use F77_INTEGER8_FLAG in BLAS checking as well as ALL_FFLAGS in mkoctfile
Jaroslav Hajek <highegg@gmail.com>
parents:
10622
diff
changeset
|
1707 else |
4906ccf5d95e
use F77_INTEGER8_FLAG in BLAS checking as well as ALL_FFLAGS in mkoctfile
Jaroslav Hajek <highegg@gmail.com>
parents:
10622
diff
changeset
|
1708 AC_MSG_ERROR([A BLAS library was detected but found incompatible with your Fortran 77 compiler settings.]) |
4906ccf5d95e
use F77_INTEGER8_FLAG in BLAS checking as well as ALL_FFLAGS in mkoctfile
Jaroslav Hajek <highegg@gmail.com>
parents:
10622
diff
changeset
|
1709 fi |
4906ccf5d95e
use F77_INTEGER8_FLAG in BLAS checking as well as ALL_FFLAGS in mkoctfile
Jaroslav Hajek <highegg@gmail.com>
parents:
10622
diff
changeset
|
1710 fi |
4906ccf5d95e
use F77_INTEGER8_FLAG in BLAS checking as well as ALL_FFLAGS in mkoctfile
Jaroslav Hajek <highegg@gmail.com>
parents:
10622
diff
changeset
|
1711 |
10951 | 1712 if test x$ax_blas_ok = xno || test x$ax_lapack_ok = xno; then |
15063
36cbcc37fdb8
Refactor configure.ac to make it more understandable.
Rik <rik@octave.org>
parents:
15059
diff
changeset
|
1713 AC_MSG_ERROR([BLAS and LAPACK libraries are required]) |
9799
cfd0aa788ae1
remove reference blas and lapack sources
John W. Eaton <jwe@octave.org>
parents:
9794
diff
changeset
|
1714 fi |
3690 | 1715 |
10721
4906ccf5d95e
use F77_INTEGER8_FLAG in BLAS checking as well as ALL_FFLAGS in mkoctfile
Jaroslav Hajek <highegg@gmail.com>
parents:
10622
diff
changeset
|
1716 ### Check for the qrupdate library |
15063
36cbcc37fdb8
Refactor configure.ac to make it more understandable.
Rik <rik@octave.org>
parents:
15059
diff
changeset
|
1717 |
10721
4906ccf5d95e
use F77_INTEGER8_FLAG in BLAS checking as well as ALL_FFLAGS in mkoctfile
Jaroslav Hajek <highegg@gmail.com>
parents:
10622
diff
changeset
|
1718 ## No need to adjust FFLAGS because only link is attempted. |
4906ccf5d95e
use F77_INTEGER8_FLAG in BLAS checking as well as ALL_FFLAGS in mkoctfile
Jaroslav Hajek <highegg@gmail.com>
parents:
10622
diff
changeset
|
1719 ## Must supply proper LIBS, however. |
9570
1ab56c73ec7c
use OCTAVE_CHECK_LIBRARY to check for qrupdate library
John W. Eaton <jwe@octave.org>
parents:
9568
diff
changeset
|
1720 save_LIBS="$LIBS" |
9794
0d4613a736e9
convert build system to use automake and libtool
John W. Eaton <jwe@octave.org>
parents:
9787
diff
changeset
|
1721 LIBS="$LAPACK_LIBS $BLAS_LIBS $FLIBS $LIBS" |
9570
1ab56c73ec7c
use OCTAVE_CHECK_LIBRARY to check for qrupdate library
John W. Eaton <jwe@octave.org>
parents:
9568
diff
changeset
|
1722 OCTAVE_CHECK_LIBRARY(qrupdate, qrupdate, |
9571
263a8ed419b0
configure.in: style fixes for messages
John W. Eaton <jwe@octave.org>
parents:
9570
diff
changeset
|
1723 [qrupdate not found. The QR & Cholesky updating functions will be slow.], |
9570
1ab56c73ec7c
use OCTAVE_CHECK_LIBRARY to check for qrupdate library
John W. Eaton <jwe@octave.org>
parents:
9568
diff
changeset
|
1724 [], |
9707
6f5c4c82c5fc
avoid ugly F77 names in configure
Jaroslav Hajek <highegg@gmail.com>
parents:
9648
diff
changeset
|
1725 [sqr1up], |
6f5c4c82c5fc
avoid ugly F77 names in configure
Jaroslav Hajek <highegg@gmail.com>
parents:
9648
diff
changeset
|
1726 [Fortran 77], [don't use qrupdate, disable QR & Cholesky updating functions]) |
9708 | 1727 |
1728 if test "$octave_qrupdate_ok" = yes; then | |
1729 LIBS="$LIBS $QRUPDATE_LIBS" | |
1730 AC_LANG_PUSH([Fortran 77]) | |
1731 AC_MSG_CHECKING([for slup1up in $QRUPDATE_LIBS]) | |
1732 octave_qrupdate_luu=no | |
1733 AC_LINK_IFELSE([AC_LANG_CALL([], [slup1up])], | |
1734 [octave_qrupdate_luu=yes]) | |
10003
2ea3110e15ed
Use M4 quoting for arguments to autoconf macros containing variables
Rik <rdrider0-list@yahoo.com>
parents:
9989
diff
changeset
|
1735 AC_MSG_RESULT([$octave_qrupdate_luu]) |
9708 | 1736 if test "$octave_qrupdate_luu" = yes; then |
15063
36cbcc37fdb8
Refactor configure.ac to make it more understandable.
Rik <rik@octave.org>
parents:
15059
diff
changeset
|
1737 AC_DEFINE(HAVE_QRUPDATE_LUU, 1, [Define to 1 if qrupdate supports LU updates.]) |
9708 | 1738 fi |
1739 AC_LANG_POP([Fortran 77]) | |
1740 fi | |
9570
1ab56c73ec7c
use OCTAVE_CHECK_LIBRARY to check for qrupdate library
John W. Eaton <jwe@octave.org>
parents:
9568
diff
changeset
|
1741 LIBS="$save_LIBS" |
8547
d66c9b6e506a
imported patch qrupdate.diff
Jaroslav Hajek <highegg@gmail.com>
parents:
8417
diff
changeset
|
1742 |
15063
36cbcc37fdb8
Refactor configure.ac to make it more understandable.
Rik <rik@octave.org>
parents:
15059
diff
changeset
|
1743 ### Check for AMD library |
7619 | 1744 |
9523
0ce82753dd72
more configure changes for libraries
John W. Eaton <jwe@octave.org>
parents:
9519
diff
changeset
|
1745 OCTAVE_CHECK_LIBRARY(amd, AMD, |
9571
263a8ed419b0
configure.in: style fixes for messages
John W. Eaton <jwe@octave.org>
parents:
9570
diff
changeset
|
1746 [AMD library not found. This will result in some lack of functionality for sparse matrices.], |
9523
0ce82753dd72
more configure changes for libraries
John W. Eaton <jwe@octave.org>
parents:
9519
diff
changeset
|
1747 [suitesparse/amd.h ufsparse/amd.h amd/amd.h amd.h], |
0ce82753dd72
more configure changes for libraries
John W. Eaton <jwe@octave.org>
parents:
9519
diff
changeset
|
1748 [amd_postorder], |
10003
2ea3110e15ed
Use M4 quoting for arguments to autoconf macros containing variables
Rik <rdrider0-list@yahoo.com>
parents:
9989
diff
changeset
|
1749 [], [don't use AMD library, disable some sparse matrix functionality]) |
5451 | 1750 |
15063
36cbcc37fdb8
Refactor configure.ac to make it more understandable.
Rik <rik@octave.org>
parents:
15059
diff
changeset
|
1751 ### Check for CAMD library |
9523
0ce82753dd72
more configure changes for libraries
John W. Eaton <jwe@octave.org>
parents:
9519
diff
changeset
|
1752 |
0ce82753dd72
more configure changes for libraries
John W. Eaton <jwe@octave.org>
parents:
9519
diff
changeset
|
1753 OCTAVE_CHECK_LIBRARY(camd, CAMD, |
9571
263a8ed419b0
configure.in: style fixes for messages
John W. Eaton <jwe@octave.org>
parents:
9570
diff
changeset
|
1754 [CAMD library not found. This will result in some lack of functionality for sparse matrices.], |
9523
0ce82753dd72
more configure changes for libraries
John W. Eaton <jwe@octave.org>
parents:
9519
diff
changeset
|
1755 [suitesparse/camd.h ufsparse/camd.h amd/camd.h camd.h], |
0ce82753dd72
more configure changes for libraries
John W. Eaton <jwe@octave.org>
parents:
9519
diff
changeset
|
1756 [camd_postorder], |
10003
2ea3110e15ed
Use M4 quoting for arguments to autoconf macros containing variables
Rik <rdrider0-list@yahoo.com>
parents:
9989
diff
changeset
|
1757 [], [don't use CAMD library, disable some sparse matrix functionality]) |
9523
0ce82753dd72
more configure changes for libraries
John W. Eaton <jwe@octave.org>
parents:
9519
diff
changeset
|
1758 |
15063
36cbcc37fdb8
Refactor configure.ac to make it more understandable.
Rik <rik@octave.org>
parents:
15059
diff
changeset
|
1759 ### Check for COLAMD library |
9523
0ce82753dd72
more configure changes for libraries
John W. Eaton <jwe@octave.org>
parents:
9519
diff
changeset
|
1760 |
0ce82753dd72
more configure changes for libraries
John W. Eaton <jwe@octave.org>
parents:
9519
diff
changeset
|
1761 OCTAVE_CHECK_LIBRARY(colamd, COLAMD, |
9571
263a8ed419b0
configure.in: style fixes for messages
John W. Eaton <jwe@octave.org>
parents:
9570
diff
changeset
|
1762 [COLAMD library not found. This will result in some lack of functionality for sparse matrices.], |
9523
0ce82753dd72
more configure changes for libraries
John W. Eaton <jwe@octave.org>
parents:
9519
diff
changeset
|
1763 [suitesparse/colamd.h ufsparse/colamd.h amd/colamd.h colamd.h], |
0ce82753dd72
more configure changes for libraries
John W. Eaton <jwe@octave.org>
parents:
9519
diff
changeset
|
1764 [colamd], |
10003
2ea3110e15ed
Use M4 quoting for arguments to autoconf macros containing variables
Rik <rdrider0-list@yahoo.com>
parents:
9989
diff
changeset
|
1765 [], [don't use COLAMD library, disable some sparse matrix functionality]) |
9523
0ce82753dd72
more configure changes for libraries
John W. Eaton <jwe@octave.org>
parents:
9519
diff
changeset
|
1766 |
15063
36cbcc37fdb8
Refactor configure.ac to make it more understandable.
Rik <rik@octave.org>
parents:
15059
diff
changeset
|
1767 ### Check for CCOLAMD library |
9523
0ce82753dd72
more configure changes for libraries
John W. Eaton <jwe@octave.org>
parents:
9519
diff
changeset
|
1768 |
0ce82753dd72
more configure changes for libraries
John W. Eaton <jwe@octave.org>
parents:
9519
diff
changeset
|
1769 OCTAVE_CHECK_LIBRARY(ccolamd, CCOLAMD, |
9571
263a8ed419b0
configure.in: style fixes for messages
John W. Eaton <jwe@octave.org>
parents:
9570
diff
changeset
|
1770 [CCOLAMD library not found. This will result in some lack of functionality for sparse matrices.], |
9523
0ce82753dd72
more configure changes for libraries
John W. Eaton <jwe@octave.org>
parents:
9519
diff
changeset
|
1771 [suitesparse/ccolamd.h ufsparse/ccolamd.h amd/ccolamd.h ccolamd.h], |
0ce82753dd72
more configure changes for libraries
John W. Eaton <jwe@octave.org>
parents:
9519
diff
changeset
|
1772 [ccolamd], |
10003
2ea3110e15ed
Use M4 quoting for arguments to autoconf macros containing variables
Rik <rdrider0-list@yahoo.com>
parents:
9989
diff
changeset
|
1773 [], [don't use CCOLAMD library, disable some sparse matrix functionality]) |
9523
0ce82753dd72
more configure changes for libraries
John W. Eaton <jwe@octave.org>
parents:
9519
diff
changeset
|
1774 |
15063
36cbcc37fdb8
Refactor configure.ac to make it more understandable.
Rik <rik@octave.org>
parents:
15059
diff
changeset
|
1775 ### Check for CHOLMOD library. If your cholmod library requires cblas, |
36cbcc37fdb8
Refactor configure.ac to make it more understandable.
Rik <rik@octave.org>
parents:
15059
diff
changeset
|
1776 ### then you will need to configure with --with-cholmod="-lcholmod -lcblas". |
9523
0ce82753dd72
more configure changes for libraries
John W. Eaton <jwe@octave.org>
parents:
9519
diff
changeset
|
1777 |
0ce82753dd72
more configure changes for libraries
John W. Eaton <jwe@octave.org>
parents:
9519
diff
changeset
|
1778 save_LIBS="$LIBS" |
10332
5f6298220ced
configure.ac: include colamd and amd libs in LIBS when checking for cholmod library
John W. Eaton <jwe@octave.org>
parents:
10331
diff
changeset
|
1779 LIBS="$COLAMD_LDFLAGS $COLAMD_LIBS $AMD_LDFLAGS $AMD_LIBS $LAPACK_LIBS $BLAS_LIBS $FLIBS $LIBS" |
9523
0ce82753dd72
more configure changes for libraries
John W. Eaton <jwe@octave.org>
parents:
9519
diff
changeset
|
1780 OCTAVE_CHECK_LIBRARY(cholmod, CHOLMOD, |
9571
263a8ed419b0
configure.in: style fixes for messages
John W. Eaton <jwe@octave.org>
parents:
9570
diff
changeset
|
1781 [CHOLMOD library not found. This will result in some lack of functionality for sparse matrices.], |
9523
0ce82753dd72
more configure changes for libraries
John W. Eaton <jwe@octave.org>
parents:
9519
diff
changeset
|
1782 [suitesparse/cholmod.h ufsparse/cholmod.h cholmod/cholmod.h cholmod.h], |
0ce82753dd72
more configure changes for libraries
John W. Eaton <jwe@octave.org>
parents:
9519
diff
changeset
|
1783 [cholmod_start], |
10003
2ea3110e15ed
Use M4 quoting for arguments to autoconf macros containing variables
Rik <rdrider0-list@yahoo.com>
parents:
9989
diff
changeset
|
1784 [], [don't use CHOLMOD library, disable some sparse matrix functionality]) |
9523
0ce82753dd72
more configure changes for libraries
John W. Eaton <jwe@octave.org>
parents:
9519
diff
changeset
|
1785 LIBS="$save_LIBS" |
0ce82753dd72
more configure changes for libraries
John W. Eaton <jwe@octave.org>
parents:
9519
diff
changeset
|
1786 |
15063
36cbcc37fdb8
Refactor configure.ac to make it more understandable.
Rik <rik@octave.org>
parents:
15059
diff
changeset
|
1787 ### Check for CXSparse library |
9523
0ce82753dd72
more configure changes for libraries
John W. Eaton <jwe@octave.org>
parents:
9519
diff
changeset
|
1788 |
0ce82753dd72
more configure changes for libraries
John W. Eaton <jwe@octave.org>
parents:
9519
diff
changeset
|
1789 OCTAVE_CHECK_LIBRARY(cxsparse, CXSparse, |
9571
263a8ed419b0
configure.in: style fixes for messages
John W. Eaton <jwe@octave.org>
parents:
9570
diff
changeset
|
1790 [CXSparse library not found. This will result in some lack of functionality for sparse matrices.], |
9523
0ce82753dd72
more configure changes for libraries
John W. Eaton <jwe@octave.org>
parents:
9519
diff
changeset
|
1791 [suitesparse/cs.h ufsparse/cs.h amd/cs.h cs.h], |
0ce82753dd72
more configure changes for libraries
John W. Eaton <jwe@octave.org>
parents:
9519
diff
changeset
|
1792 [cs_di_sqr], |
10003
2ea3110e15ed
Use M4 quoting for arguments to autoconf macros containing variables
Rik <rdrider0-list@yahoo.com>
parents:
9989
diff
changeset
|
1793 [C++], [don't use CXSparse library, disable some sparse matrix functionality]) |
6024 | 1794 |
15063
36cbcc37fdb8
Refactor configure.ac to make it more understandable.
Rik <rik@octave.org>
parents:
15059
diff
changeset
|
1795 ### Check for UMFPACK library. |
5226 | 1796 |
9572
ab8a163f2052
use OCTAVE_CHECK_LIB to check for UMFPACK
John W. Eaton <jwe@octave.org>
parents:
9571
diff
changeset
|
1797 save_LIBS="$LIBS" |
9787
cc5bb7b5679f
use AMD_CPPFLAGS when checking for UMFPACK
David Grundberg <davidg@cs.umu.se>
parents:
9763
diff
changeset
|
1798 save_CPPFLAGS="$CPPFLAGS" |
9572
ab8a163f2052
use OCTAVE_CHECK_LIB to check for UMFPACK
John W. Eaton <jwe@octave.org>
parents:
9571
diff
changeset
|
1799 LIBS="$AMD_LDFLAGS $AMD_LIBS $BLAS_LIBS $FLIBS $LIBS" |
9787
cc5bb7b5679f
use AMD_CPPFLAGS when checking for UMFPACK
David Grundberg <davidg@cs.umu.se>
parents:
9763
diff
changeset
|
1800 CPPFLAGS="$AMD_CPPFLAGS $CPPFLAGS" |
9572
ab8a163f2052
use OCTAVE_CHECK_LIB to check for UMFPACK
John W. Eaton <jwe@octave.org>
parents:
9571
diff
changeset
|
1801 OCTAVE_CHECK_LIBRARY(umfpack, UMFPACK, |
ab8a163f2052
use OCTAVE_CHECK_LIB to check for UMFPACK
John W. Eaton <jwe@octave.org>
parents:
9571
diff
changeset
|
1802 [UMFPACK not found. This will result in some lack of functionality for sparse matrices.], |
ab8a163f2052
use OCTAVE_CHECK_LIB to check for UMFPACK
John W. Eaton <jwe@octave.org>
parents:
9571
diff
changeset
|
1803 [suitesparse/umfpack.h ufsparse/umfpack.h umfpack/umfpack.h umfpack.h], |
ab8a163f2052
use OCTAVE_CHECK_LIB to check for UMFPACK
John W. Eaton <jwe@octave.org>
parents:
9571
diff
changeset
|
1804 [umfpack_zi_get_determinant], |
10003
2ea3110e15ed
Use M4 quoting for arguments to autoconf macros containing variables
Rik <rdrider0-list@yahoo.com>
parents:
9989
diff
changeset
|
1805 [], [don't use UMFPACK, disable some sparse matrix functionality]) |
9787
cc5bb7b5679f
use AMD_CPPFLAGS when checking for UMFPACK
David Grundberg <davidg@cs.umu.se>
parents:
9763
diff
changeset
|
1806 CPPFLAGS="$save_CPPFLAGS" |
9572
ab8a163f2052
use OCTAVE_CHECK_LIB to check for UMFPACK
John W. Eaton <jwe@octave.org>
parents:
9571
diff
changeset
|
1807 LIBS="$save_LIBS" |
5512 | 1808 |
9572
ab8a163f2052
use OCTAVE_CHECK_LIB to check for UMFPACK
John W. Eaton <jwe@octave.org>
parents:
9571
diff
changeset
|
1809 if test -z "$UMFPACK_LIBS"; then |
ab8a163f2052
use OCTAVE_CHECK_LIB to check for UMFPACK
John W. Eaton <jwe@octave.org>
parents:
9571
diff
changeset
|
1810 ## Invalidate the cache and try again with -lcblas. |
ab8a163f2052
use OCTAVE_CHECK_LIB to check for UMFPACK
John W. Eaton <jwe@octave.org>
parents:
9571
diff
changeset
|
1811 $as_unset ac_cv_lib_umfpack_umfpack_zi_get_determinant |
ab8a163f2052
use OCTAVE_CHECK_LIB to check for UMFPACK
John W. Eaton <jwe@octave.org>
parents:
9571
diff
changeset
|
1812 save_LIBS="$LIBS" |
ab8a163f2052
use OCTAVE_CHECK_LIB to check for UMFPACK
John W. Eaton <jwe@octave.org>
parents:
9571
diff
changeset
|
1813 LIBS="-lcblas $AMD_LDFLAGS $AMD_LIBS $BLAS_LIBS $FLIBS $LIBS" |
ab8a163f2052
use OCTAVE_CHECK_LIB to check for UMFPACK
John W. Eaton <jwe@octave.org>
parents:
9571
diff
changeset
|
1814 OCTAVE_CHECK_LIBRARY(umfpack, UMFPACK, |
ab8a163f2052
use OCTAVE_CHECK_LIB to check for UMFPACK
John W. Eaton <jwe@octave.org>
parents:
9571
diff
changeset
|
1815 [UMFPACK not found. This will result in some lack of functionality for sparse matrices.], |
ab8a163f2052
use OCTAVE_CHECK_LIB to check for UMFPACK
John W. Eaton <jwe@octave.org>
parents:
9571
diff
changeset
|
1816 [suitesparse/umfpack.h ufsparse/umfpack.h umfpack/umfpack.h umfpack.h], |
ab8a163f2052
use OCTAVE_CHECK_LIB to check for UMFPACK
John W. Eaton <jwe@octave.org>
parents:
9571
diff
changeset
|
1817 [umfpack_zi_get_determinant], |
10003
2ea3110e15ed
Use M4 quoting for arguments to autoconf macros containing variables
Rik <rdrider0-list@yahoo.com>
parents:
9989
diff
changeset
|
1818 [], [don't use UMFPACK, disable some sparse matrix functionality]) |
9572
ab8a163f2052
use OCTAVE_CHECK_LIB to check for UMFPACK
John W. Eaton <jwe@octave.org>
parents:
9571
diff
changeset
|
1819 if test -n "$UMFPACK_LIBS"; then |
ab8a163f2052
use OCTAVE_CHECK_LIB to check for UMFPACK
John W. Eaton <jwe@octave.org>
parents:
9571
diff
changeset
|
1820 UMFPACK_LIBS="$UMFPACK_LIBS -lcblas" |
ab8a163f2052
use OCTAVE_CHECK_LIB to check for UMFPACK
John W. Eaton <jwe@octave.org>
parents:
9571
diff
changeset
|
1821 fi |
ab8a163f2052
use OCTAVE_CHECK_LIB to check for UMFPACK
John W. Eaton <jwe@octave.org>
parents:
9571
diff
changeset
|
1822 LIBS="$save_LIBS" |
6133 | 1823 fi |
5513 | 1824 |
9572
ab8a163f2052
use OCTAVE_CHECK_LIB to check for UMFPACK
John W. Eaton <jwe@octave.org>
parents:
9571
diff
changeset
|
1825 if test -n "$UMFPACK_LIBS"; then |
ab8a163f2052
use OCTAVE_CHECK_LIB to check for UMFPACK
John W. Eaton <jwe@octave.org>
parents:
9571
diff
changeset
|
1826 save_LIBS="$LIBS"; |
ab8a163f2052
use OCTAVE_CHECK_LIB to check for UMFPACK
John W. Eaton <jwe@octave.org>
parents:
9571
diff
changeset
|
1827 LIBS="$UMFPACK_LIBS $AMD_LIBS $BLAS_LIBS $FLIBS $LIBS" |
ab8a163f2052
use OCTAVE_CHECK_LIB to check for UMFPACK
John W. Eaton <jwe@octave.org>
parents:
9571
diff
changeset
|
1828 OCTAVE_UMFPACK_SEPERATE_SPLIT |
ab8a163f2052
use OCTAVE_CHECK_LIB to check for UMFPACK
John W. Eaton <jwe@octave.org>
parents:
9571
diff
changeset
|
1829 LIBS="$save_LIBS" |
ab8a163f2052
use OCTAVE_CHECK_LIB to check for UMFPACK
John W. Eaton <jwe@octave.org>
parents:
9571
diff
changeset
|
1830 fi |
5226 | 1831 |
15063
36cbcc37fdb8
Refactor configure.ac to make it more understandable.
Rik <rik@octave.org>
parents:
15059
diff
changeset
|
1832 ### Check for ARPACK library. |
36cbcc37fdb8
Refactor configure.ac to make it more understandable.
Rik <rik@octave.org>
parents:
15059
diff
changeset
|
1833 |
14144
834df9f10963
remove ARPACK files from sources and restore configure checks for external ARPACK library
John W. Eaton <jwe@octave.org>
parents:
14138
diff
changeset
|
1834 save_LIBS="$LIBS" |
834df9f10963
remove ARPACK files from sources and restore configure checks for external ARPACK library
John W. Eaton <jwe@octave.org>
parents:
14138
diff
changeset
|
1835 LIBS="$LAPACK_LIBS $BLAS_LIBS $FLIBS $LIBS" |
834df9f10963
remove ARPACK files from sources and restore configure checks for external ARPACK library
John W. Eaton <jwe@octave.org>
parents:
14138
diff
changeset
|
1836 OCTAVE_CHECK_LIBRARY(arpack, ARPACK, |
834df9f10963
remove ARPACK files from sources and restore configure checks for external ARPACK library
John W. Eaton <jwe@octave.org>
parents:
14138
diff
changeset
|
1837 [ARPACK not found. The eigs function will be disabled.], |
834df9f10963
remove ARPACK files from sources and restore configure checks for external ARPACK library
John W. Eaton <jwe@octave.org>
parents:
14138
diff
changeset
|
1838 [], |
834df9f10963
remove ARPACK files from sources and restore configure checks for external ARPACK library
John W. Eaton <jwe@octave.org>
parents:
14138
diff
changeset
|
1839 [dseupd], |
834df9f10963
remove ARPACK files from sources and restore configure checks for external ARPACK library
John W. Eaton <jwe@octave.org>
parents:
14138
diff
changeset
|
1840 [Fortran 77], [don't use the ARPACK library, disable eigs function], |
834df9f10963
remove ARPACK files from sources and restore configure checks for external ARPACK library
John W. Eaton <jwe@octave.org>
parents:
14138
diff
changeset
|
1841 [warn_arpack= |
834df9f10963
remove ARPACK files from sources and restore configure checks for external ARPACK library
John W. Eaton <jwe@octave.org>
parents:
14138
diff
changeset
|
1842 OCTAVE_CHECK_ARPACK_OK([ |
15063
36cbcc37fdb8
Refactor configure.ac to make it more understandable.
Rik <rik@octave.org>
parents:
15059
diff
changeset
|
1843 AC_DEFINE(HAVE_ARPACK, 1, [Define to 1 if ARPACK is available.])], [ |
36cbcc37fdb8
Refactor configure.ac to make it more understandable.
Rik <rik@octave.org>
parents:
15059
diff
changeset
|
1844 warn_arpack="ARPACK library found, but does not seem to work properly -- disabling eigs function"])]) |
14144
834df9f10963
remove ARPACK files from sources and restore configure checks for external ARPACK library
John W. Eaton <jwe@octave.org>
parents:
14138
diff
changeset
|
1845 LIBS="$save_LIBS" |
834df9f10963
remove ARPACK files from sources and restore configure checks for external ARPACK library
John W. Eaton <jwe@octave.org>
parents:
14138
diff
changeset
|
1846 |
15063
36cbcc37fdb8
Refactor configure.ac to make it more understandable.
Rik <rik@octave.org>
parents:
15059
diff
changeset
|
1847 ### Check for readline library. |
36cbcc37fdb8
Refactor configure.ac to make it more understandable.
Rik <rik@octave.org>
parents:
15059
diff
changeset
|
1848 |
36cbcc37fdb8
Refactor configure.ac to make it more understandable.
Rik <rik@octave.org>
parents:
15059
diff
changeset
|
1849 OCTAVE_ENABLE_READLINE |
36cbcc37fdb8
Refactor configure.ac to make it more understandable.
Rik <rik@octave.org>
parents:
15059
diff
changeset
|
1850 |
4128 | 1851 ### Enable dynamic linking. --enable-shared implies this, so |
1852 ### --enable-dl is only need if you are only building static libraries | |
1853 ### and want to try dynamic linking too (works on some systems, for | |
1854 ### example, OS X and Windows). | |
1855 | |
11216
5036b0ff9597
configure.ac: Properly m4 quote AS_HELP_STRING.
Rik <octave@nomad.inbox5.com>
parents:
11214
diff
changeset
|
1856 AC_ARG_ENABLE([dl], |
5036b0ff9597
configure.ac: Properly m4 quote AS_HELP_STRING.
Rik <octave@nomad.inbox5.com>
parents:
11214
diff
changeset
|
1857 [AS_HELP_STRING([--enable-dl], |
13010
edc5ec6e949b
maint: allow --enable-static --disable-dl to work again
John W. Eaton <jwe@octave.org>
parents:
12772
diff
changeset
|
1858 [allow loading of dynamically linked modules (not all systems)])], [ |
9794
0d4613a736e9
convert build system to use automake and libtool
John W. Eaton <jwe@octave.org>
parents:
9787
diff
changeset
|
1859 case "${enableval}" in |
0d4613a736e9
convert build system to use automake and libtool
John W. Eaton <jwe@octave.org>
parents:
9787
diff
changeset
|
1860 yes) ENABLE_DYNAMIC_LINKING=true ;; |
0d4613a736e9
convert build system to use automake and libtool
John W. Eaton <jwe@octave.org>
parents:
9787
diff
changeset
|
1861 no) ENABLE_DYNAMIC_LINKING=false ;; |
0d4613a736e9
convert build system to use automake and libtool
John W. Eaton <jwe@octave.org>
parents:
9787
diff
changeset
|
1862 *) AC_MSG_ERROR([bad value ${enableval} for --enable-dl]) ;; |
0d4613a736e9
convert build system to use automake and libtool
John W. Eaton <jwe@octave.org>
parents:
9787
diff
changeset
|
1863 esac], [ENABLE_DYNAMIC_LINKING=true]) |
4128 | 1864 |
3034 | 1865 if $STATIC_LIBS || $SHARED_LIBS; then |
1866 true | |
1867 else | |
1868 AC_MSG_ERROR([You can't disable building static AND shared libraries!]) | |
1869 fi | |
1870 | |
2813 | 1871 CPICFLAG=-fPIC |
1872 CXXPICFLAG=-fPIC | |
1873 FPICFLAG=-fPIC | |
1874 SHLEXT=so | |
4190 | 1875 SHLLIB='$(SHLEXT)' |
4102 | 1876 SHLBIN= |
4138 | 1877 SHLEXT_VER='$(SHLEXT).$(version)' |
1878 SHLLIB_VER='$(SHLLIB).$(version)' | |
1879 SHLBIN_VER='$(SHLBIN).$(version)' | |
4126 | 1880 SHLLINKEXT= |
6051 | 1881 LIBPRE=lib |
9186
49a0c58a7dcf
Added SHLPRE for SHLEXT instead of SHLLIBPRE
marco_atzeri@yahoo.it
parents:
9178
diff
changeset
|
1882 SHLPRE=lib |
9189
8a348e4be8bb
repair damage done when applying changeset 49a0c58a7dcf
John W. Eaton <jwe@octave.org>
parents:
9187
diff
changeset
|
1883 SHLLIBPRE=lib |
8618
f8b3ece45bda
use separate prefix for shllib and shlbin files
John W. Eaton <jwe@octave.org>
parents:
8607
diff
changeset
|
1884 SHLBINPRE=lib |
4323 | 1885 SH_LD='$(CXX)' |
2813 | 1886 SH_LDFLAGS=-shared |
4759 | 1887 DL_LD='$(SH_LD)' |
1888 DL_LDFLAGS='$(SH_LDFLAGS)' | |
1889 MKOCTFILE_DL_LDFLAGS='$(DL_LDFLAGS)' | |
3036 | 1890 SONAME_FLAGS= |
4199 | 1891 NO_OCT_FILE_STRIP=false |
4323 | 1892 TEMPLATE_AR='$(AR)' |
3775 | 1893 TEMPLATE_ARFLAGS="$ARFLAGS" |
6137 | 1894 CRUFT_DLL_DEFS= |
1895 OCTAVE_DLL_DEFS= | |
1896 OCTINTERP_DLL_DEFS= | |
7825
13871b7de124
Import sources for OpenGL-based renderer.
Michael Goffioul <michael.goffioul@gmail.com>
parents:
7789
diff
changeset
|
1897 OCTGRAPHICS_DLL_DEFS= |
4104 | 1898 library_path_var=LD_LIBRARY_PATH |
9613
16907d1153d1
attempt to fix LD_PRELOAD for Cygwin
John W. Eaton <jwe@octave.org>
parents:
9610
diff
changeset
|
1899 ldpreloadsep=" " |
10986
20bb05b9fb3f
makefile rules for compiled auxiliary programs
John W. Eaton <jwe@octave.org>
parents:
10951
diff
changeset
|
1900 BUILD_COMPILED_AUX_PROGRAMS=false |
2813 | 1901 case "$canonical_host_type" in |
6668 | 1902 *-*-386bsd* | *-*-netbsd*) |
2813 | 1903 SH_LD=ld |
1904 SH_LDFLAGS=-Bshareable | |
1905 ;; | |
6668 | 1906 *-*-openbsd*) |
1907 SH_LDFLAGS='-shared -fPIC' | |
1908 ;; | |
4323 | 1909 *-*-freebsd*) |
5508 | 1910 SH_LDFLAGS="-shared -Wl,-x" |
4323 | 1911 ;; |
3127 | 1912 alpha*-dec-osf*) |
2813 | 1913 CPICFLAG= |
1914 CXXPICFLAG= | |
1915 FPICFLAG= | |
4283 | 1916 SH_LDFLAGS="-shared -Wl,-expect_unresolved -Wl,'*'" |
2813 | 1917 ;; |
3956 | 1918 *-*-darwin*) |
10004
e517da95bf98
Eliminate TOPDIR variable in favor of built-in automake variables
Rik <rdrider0-list@yahoo.com>
parents:
10003
diff
changeset
|
1919 DL_LDFLAGS='-bundle -bundle_loader $(top_builddir)/src/octave $(LDFLAGS)' |
6682 | 1920 MKOCTFILE_DL_LDFLAGS='-bundle -bundle_loader $$BINDIR/octave-$$OCTAVE_VERSION$$EXEEXT' |
4759 | 1921 SH_LDFLAGS='-dynamiclib -single_module $(LDFLAGS)' |
7266 | 1922 case "$canonical_host_type" in |
1923 powerpc-*) | |
1924 CXXPICFLAG= | |
1925 CPICFLAG= | |
1926 FPICFLAG= | |
1927 ;; | |
1928 esac | |
4759 | 1929 SHLEXT=dylib |
1930 SHLLIB='$(SHLEXT)' | |
1931 SHLEXT_VER='$(version).$(SHLEXT)' | |
1932 SHLLIB_VER='$(version).$(SHLLIB)' | |
4199 | 1933 NO_OCT_FILE_STRIP=true |
4786 | 1934 SONAME_FLAGS='-install_name $(octlibdir)/$@' |
12451 | 1935 library_path_var=DYLD_LIBRARY_PATH |
3956 | 1936 ;; |
8675
43c6012bd4c2
configure.in: separate cases for cygwin and mingw
Benjamin Lindner <lindnerben@gmx.net>
parents:
8659
diff
changeset
|
1937 *-*-cygwin*) |
9054
0735e427c6c0
configure fixes for cygwin
Marco Atzeri <marco_atzeri@yahoo.it>
parents:
9049
diff
changeset
|
1938 CPICFLAG= |
0735e427c6c0
configure fixes for cygwin
Marco Atzeri <marco_atzeri@yahoo.it>
parents:
9049
diff
changeset
|
1939 CXXPICFLAG= |
0735e427c6c0
configure fixes for cygwin
Marco Atzeri <marco_atzeri@yahoo.it>
parents:
9049
diff
changeset
|
1940 FPICFLAG= |
0735e427c6c0
configure fixes for cygwin
Marco Atzeri <marco_atzeri@yahoo.it>
parents:
9049
diff
changeset
|
1941 LIBPRE=lib |
9186
49a0c58a7dcf
Added SHLPRE for SHLEXT instead of SHLLIBPRE
marco_atzeri@yahoo.it
parents:
9178
diff
changeset
|
1942 SHLPRE=cyg |
9241
60bbc66bb0e2
Correct my previous mistake for cygwin SHLBIN and SHLBINPRE
Marco Atzeri <marco_atzeri@yahoo.it>
parents:
9231
diff
changeset
|
1943 SHLBINPRE=cyg |
8644
fac8c78b4fb9
configure.in: fix shared library definitions for Cygwin and MinGW
Marco Atzeri <marco_atzeri@yahoo.it>
parents:
8641
diff
changeset
|
1944 SHLEXT=dll |
fac8c78b4fb9
configure.in: fix shared library definitions for Cygwin and MinGW
Marco Atzeri <marco_atzeri@yahoo.it>
parents:
8641
diff
changeset
|
1945 SHLLIB=dll.a |
9241
60bbc66bb0e2
Correct my previous mistake for cygwin SHLBIN and SHLBINPRE
Marco Atzeri <marco_atzeri@yahoo.it>
parents:
9231
diff
changeset
|
1946 SHLBIN=dll |
5451 | 1947 DL_LDFLAGS="-shared -Wl,--export-all-symbols -Wl,--enable-auto-import -Wl,--enable-runtime-pseudo-reloc" |
5414 | 1948 SH_LDFLAGS="-shared -Wl,--export-all-symbols -Wl,--enable-auto-import -Wl,--enable-auto-image-base" |
9241
60bbc66bb0e2
Correct my previous mistake for cygwin SHLBIN and SHLBINPRE
Marco Atzeri <marco_atzeri@yahoo.it>
parents:
9231
diff
changeset
|
1949 SONAME_FLAGS='-Wl,--out-implib=$(patsubst $(SHLPRE)%,$(LIBPRE)%,$@).a' |
9613
16907d1153d1
attempt to fix LD_PRELOAD for Cygwin
John W. Eaton <jwe@octave.org>
parents:
9610
diff
changeset
|
1950 ldpreloadsep=":" |
4102 | 1951 ;; |
8675
43c6012bd4c2
configure.in: separate cases for cygwin and mingw
Benjamin Lindner <lindnerben@gmx.net>
parents:
8659
diff
changeset
|
1952 *-*-mingw*) |
10986
20bb05b9fb3f
makefile rules for compiled auxiliary programs
John W. Eaton <jwe@octave.org>
parents:
10951
diff
changeset
|
1953 BUILD_COMPILED_AUX_PROGRAMS=true |
10123
8590f3c51868
Fix a few MSVC-related problems and partially re-enable MSVC compilation.
Michael Goffioul <michael.goffioul@gmail.com>
parents:
10092
diff
changeset
|
1954 if test "$have_msvc" = "yes"; then |
8590f3c51868
Fix a few MSVC-related problems and partially re-enable MSVC compilation.
Michael Goffioul <michael.goffioul@gmail.com>
parents:
10092
diff
changeset
|
1955 DL_LDFLAGS="-shared" |
8590f3c51868
Fix a few MSVC-related problems and partially re-enable MSVC compilation.
Michael Goffioul <michael.goffioul@gmail.com>
parents:
10092
diff
changeset
|
1956 CPICFLAG= |
8590f3c51868
Fix a few MSVC-related problems and partially re-enable MSVC compilation.
Michael Goffioul <michael.goffioul@gmail.com>
parents:
10092
diff
changeset
|
1957 CXXPICFLAG= |
8590f3c51868
Fix a few MSVC-related problems and partially re-enable MSVC compilation.
Michael Goffioul <michael.goffioul@gmail.com>
parents:
10092
diff
changeset
|
1958 FPICFLAG= |
8590f3c51868
Fix a few MSVC-related problems and partially re-enable MSVC compilation.
Michael Goffioul <michael.goffioul@gmail.com>
parents:
10092
diff
changeset
|
1959 SHLEXT=dll |
8590f3c51868
Fix a few MSVC-related problems and partially re-enable MSVC compilation.
Michael Goffioul <michael.goffioul@gmail.com>
parents:
10092
diff
changeset
|
1960 SHLLIB=lib |
8590f3c51868
Fix a few MSVC-related problems and partially re-enable MSVC compilation.
Michael Goffioul <michael.goffioul@gmail.com>
parents:
10092
diff
changeset
|
1961 SHLBIN=dll |
8590f3c51868
Fix a few MSVC-related problems and partially re-enable MSVC compilation.
Michael Goffioul <michael.goffioul@gmail.com>
parents:
10092
diff
changeset
|
1962 LIBPRE= |
8590f3c51868
Fix a few MSVC-related problems and partially re-enable MSVC compilation.
Michael Goffioul <michael.goffioul@gmail.com>
parents:
10092
diff
changeset
|
1963 SHLPRE= |
8590f3c51868
Fix a few MSVC-related problems and partially re-enable MSVC compilation.
Michael Goffioul <michael.goffioul@gmail.com>
parents:
10092
diff
changeset
|
1964 SHLLIBPRE= |
8590f3c51868
Fix a few MSVC-related problems and partially re-enable MSVC compilation.
Michael Goffioul <michael.goffioul@gmail.com>
parents:
10092
diff
changeset
|
1965 SHLBINPRE= |
8590f3c51868
Fix a few MSVC-related problems and partially re-enable MSVC compilation.
Michael Goffioul <michael.goffioul@gmail.com>
parents:
10092
diff
changeset
|
1966 SH_LDFLAGS="-shared" |
8590f3c51868
Fix a few MSVC-related problems and partially re-enable MSVC compilation.
Michael Goffioul <michael.goffioul@gmail.com>
parents:
10092
diff
changeset
|
1967 if test -n "`echo $CFLAGS | grep -e '-g'`" -o -n "`echo $CXXFLAGS | grep -e '-g'`"; then |
8590f3c51868
Fix a few MSVC-related problems and partially re-enable MSVC compilation.
Michael Goffioul <michael.goffioul@gmail.com>
parents:
10092
diff
changeset
|
1968 DL_LDFLAGS="$DL_LDFLAGS -g" |
8590f3c51868
Fix a few MSVC-related problems and partially re-enable MSVC compilation.
Michael Goffioul <michael.goffioul@gmail.com>
parents:
10092
diff
changeset
|
1969 SH_LDFLAGS="$SH_LDFLAGS -g" |
8590f3c51868
Fix a few MSVC-related problems and partially re-enable MSVC compilation.
Michael Goffioul <michael.goffioul@gmail.com>
parents:
10092
diff
changeset
|
1970 fi |
8590f3c51868
Fix a few MSVC-related problems and partially re-enable MSVC compilation.
Michael Goffioul <michael.goffioul@gmail.com>
parents:
10092
diff
changeset
|
1971 NO_OCT_FILE_STRIP=true |
8590f3c51868
Fix a few MSVC-related problems and partially re-enable MSVC compilation.
Michael Goffioul <michael.goffioul@gmail.com>
parents:
10092
diff
changeset
|
1972 library_path_var=PATH |
8590f3c51868
Fix a few MSVC-related problems and partially re-enable MSVC compilation.
Michael Goffioul <michael.goffioul@gmail.com>
parents:
10092
diff
changeset
|
1973 NO_OCT_FILE_STRIP=true |
8590f3c51868
Fix a few MSVC-related problems and partially re-enable MSVC compilation.
Michael Goffioul <michael.goffioul@gmail.com>
parents:
10092
diff
changeset
|
1974 ## Extra compilation flags. |
8590f3c51868
Fix a few MSVC-related problems and partially re-enable MSVC compilation.
Michael Goffioul <michael.goffioul@gmail.com>
parents:
10092
diff
changeset
|
1975 CRUFT_DLL_DEFS="-DCRUFT_DLL" |
8590f3c51868
Fix a few MSVC-related problems and partially re-enable MSVC compilation.
Michael Goffioul <michael.goffioul@gmail.com>
parents:
10092
diff
changeset
|
1976 OCTAVE_DLL_DEFS="-DOCTAVE_DLL" |
8590f3c51868
Fix a few MSVC-related problems and partially re-enable MSVC compilation.
Michael Goffioul <michael.goffioul@gmail.com>
parents:
10092
diff
changeset
|
1977 OCTINTERP_DLL_DEFS="-DOCTINTERP_DLL" |
8590f3c51868
Fix a few MSVC-related problems and partially re-enable MSVC compilation.
Michael Goffioul <michael.goffioul@gmail.com>
parents:
10092
diff
changeset
|
1978 OCTGRAPHICS_DLL_DEFS="-DOCTGRAPHICS_DLL" |
8590f3c51868
Fix a few MSVC-related problems and partially re-enable MSVC compilation.
Michael Goffioul <michael.goffioul@gmail.com>
parents:
10092
diff
changeset
|
1979 else |
8590f3c51868
Fix a few MSVC-related problems and partially re-enable MSVC compilation.
Michael Goffioul <michael.goffioul@gmail.com>
parents:
10092
diff
changeset
|
1980 CPICFLAG= |
8590f3c51868
Fix a few MSVC-related problems and partially re-enable MSVC compilation.
Michael Goffioul <michael.goffioul@gmail.com>
parents:
10092
diff
changeset
|
1981 CXXPICFLAG= |
8590f3c51868
Fix a few MSVC-related problems and partially re-enable MSVC compilation.
Michael Goffioul <michael.goffioul@gmail.com>
parents:
10092
diff
changeset
|
1982 FPICFLAG= |
8590f3c51868
Fix a few MSVC-related problems and partially re-enable MSVC compilation.
Michael Goffioul <michael.goffioul@gmail.com>
parents:
10092
diff
changeset
|
1983 SHLEXT=dll |
8590f3c51868
Fix a few MSVC-related problems and partially re-enable MSVC compilation.
Michael Goffioul <michael.goffioul@gmail.com>
parents:
10092
diff
changeset
|
1984 SHLLIB=dll.a |
8590f3c51868
Fix a few MSVC-related problems and partially re-enable MSVC compilation.
Michael Goffioul <michael.goffioul@gmail.com>
parents:
10092
diff
changeset
|
1985 SHLBIN=dll |
8590f3c51868
Fix a few MSVC-related problems and partially re-enable MSVC compilation.
Michael Goffioul <michael.goffioul@gmail.com>
parents:
10092
diff
changeset
|
1986 DL_LDFLAGS="-shared -Wl,--export-all-symbols -Wl,--enable-auto-import -Wl,--enable-runtime-pseudo-reloc" |
8590f3c51868
Fix a few MSVC-related problems and partially re-enable MSVC compilation.
Michael Goffioul <michael.goffioul@gmail.com>
parents:
10092
diff
changeset
|
1987 SH_LDFLAGS="-shared -Wl,--export-all-symbols -Wl,--enable-auto-import -Wl,--enable-auto-image-base" |
8590f3c51868
Fix a few MSVC-related problems and partially re-enable MSVC compilation.
Michael Goffioul <michael.goffioul@gmail.com>
parents:
10092
diff
changeset
|
1988 SONAME_FLAGS='-Wl,--out-implib=$@.a' |
8590f3c51868
Fix a few MSVC-related problems and partially re-enable MSVC compilation.
Michael Goffioul <michael.goffioul@gmail.com>
parents:
10092
diff
changeset
|
1989 library_path_var=PATH |
8590f3c51868
Fix a few MSVC-related problems and partially re-enable MSVC compilation.
Michael Goffioul <michael.goffioul@gmail.com>
parents:
10092
diff
changeset
|
1990 fi |
8675
43c6012bd4c2
configure.in: separate cases for cygwin and mingw
Benjamin Lindner <lindnerben@gmx.net>
parents:
8659
diff
changeset
|
1991 ;; |
8618
f8b3ece45bda
use separate prefix for shllib and shlbin files
John W. Eaton <jwe@octave.org>
parents:
8607
diff
changeset
|
1992 |
6089 | 1993 *-*-msdosmsvc) |
10986
20bb05b9fb3f
makefile rules for compiled auxiliary programs
John W. Eaton <jwe@octave.org>
parents:
10951
diff
changeset
|
1994 BUILD_COMPILED_AUX_PROGRAMS=true |
6794 | 1995 DL_LDFLAGS="-shared" |
6051 | 1996 CPICFLAG= |
1997 CXXPICFLAG= | |
1998 FPICFLAG= | |
1999 SHLEXT=dll | |
2000 SHLLIB=lib | |
2001 SHLBIN=dll | |
2002 LIBPRE= | |
9186
49a0c58a7dcf
Added SHLPRE for SHLEXT instead of SHLLIBPRE
marco_atzeri@yahoo.it
parents:
9178
diff
changeset
|
2003 SHLPRE= |
9189
8a348e4be8bb
repair damage done when applying changeset 49a0c58a7dcf
John W. Eaton <jwe@octave.org>
parents:
9187
diff
changeset
|
2004 SHLLIBPRE= |
8618
f8b3ece45bda
use separate prefix for shllib and shlbin files
John W. Eaton <jwe@octave.org>
parents:
8607
diff
changeset
|
2005 SHLBINPRE= |
6794 | 2006 SH_LDFLAGS="-shared" |
10123
8590f3c51868
Fix a few MSVC-related problems and partially re-enable MSVC compilation.
Michael Goffioul <michael.goffioul@gmail.com>
parents:
10092
diff
changeset
|
2007 if test -n "`echo $CFLAGS | grep -e '-g'`" -o -n "`echo $CXXFLAGS | grep -e '-g'`"; then |
6794 | 2008 DL_LDFLAGS="$DL_LDFLAGS -g" |
2009 SH_LDFLAGS="$SH_LDFLAGS -g" | |
2010 fi | |
6255 | 2011 NO_OCT_FILE_STRIP=true |
6100 | 2012 library_path_var=PATH |
6718 | 2013 NO_OCT_FILE_STRIP=true |
6087 | 2014 ## Extra compilation flags. |
6137 | 2015 CRUFT_DLL_DEFS="-DCRUFT_DLL" |
2016 OCTAVE_DLL_DEFS="-DOCTAVE_DLL" | |
2017 OCTINTERP_DLL_DEFS="-DOCTINTERP_DLL" | |
7825
13871b7de124
Import sources for OpenGL-based renderer.
Michael Goffioul <michael.goffioul@gmail.com>
parents:
7789
diff
changeset
|
2018 OCTGRAPHICS_DLL_DEFS="-DOCTGRAPHICS_DLL" |
6051 | 2019 ;; |
3740 | 2020 *-*-linux* | *-*-gnu*) |
4906 | 2021 MKOCTFILE_DL_LDFLAGS="-shared -Wl,-Bsymbolic" |
4283 | 2022 SONAME_FLAGS='-Wl,-soname -Wl,$@' |
2813 | 2023 ;; |
3887 | 2024 i[[3456]]86-*-sco3.2v5*) |
4283 | 2025 SONAME_FLAGS='-Wl,-h -Wl,$@' |
3160 | 2026 SH_LDFLAGS=-G |
2027 ;; | |
2813 | 2028 rs6000-ibm-aix* | powerpc-ibm-aix*) |
2029 CPICFLAG= | |
2030 CXXPICFLAG= | |
2031 FPICFLAG= | |
9172
cd68431b395a
configure.in: shared library fixes for AIX and HPUX
Peter O'Gorman <pogma@thewrittenword.com>
parents:
9171
diff
changeset
|
2032 library_path_var=LIBPATH |
2813 | 2033 ;; |
2034 hppa*-hp-hpux*) | |
3887 | 2035 if test "$ac_cv_f77_compiler_gnu" = yes; then |
2813 | 2036 FPICFLAG=-fPIC |
2037 else | |
2038 FPICFLAG=+Z | |
2039 fi | |
2040 SHLEXT=sl | |
2041 SH_LDFLAGS="-shared -fPIC" | |
9172
cd68431b395a
configure.in: shared library fixes for AIX and HPUX
Peter O'Gorman <pogma@thewrittenword.com>
parents:
9171
diff
changeset
|
2042 library_path_var=SHLIB_PATH |
cd68431b395a
configure.in: shared library fixes for AIX and HPUX
Peter O'Gorman <pogma@thewrittenword.com>
parents:
9171
diff
changeset
|
2043 ;; |
cd68431b395a
configure.in: shared library fixes for AIX and HPUX
Peter O'Gorman <pogma@thewrittenword.com>
parents:
9171
diff
changeset
|
2044 ia64*-hp-hpux*) |
cd68431b395a
configure.in: shared library fixes for AIX and HPUX
Peter O'Gorman <pogma@thewrittenword.com>
parents:
9171
diff
changeset
|
2045 if test "$ac_cv_f77_compiler_gnu" = yes; then |
cd68431b395a
configure.in: shared library fixes for AIX and HPUX
Peter O'Gorman <pogma@thewrittenword.com>
parents:
9171
diff
changeset
|
2046 FPICFLAG=-fPIC |
cd68431b395a
configure.in: shared library fixes for AIX and HPUX
Peter O'Gorman <pogma@thewrittenword.com>
parents:
9171
diff
changeset
|
2047 else |
cd68431b395a
configure.in: shared library fixes for AIX and HPUX
Peter O'Gorman <pogma@thewrittenword.com>
parents:
9171
diff
changeset
|
2048 FPICFLAG=+Z |
cd68431b395a
configure.in: shared library fixes for AIX and HPUX
Peter O'Gorman <pogma@thewrittenword.com>
parents:
9171
diff
changeset
|
2049 fi |
cd68431b395a
configure.in: shared library fixes for AIX and HPUX
Peter O'Gorman <pogma@thewrittenword.com>
parents:
9171
diff
changeset
|
2050 SH_LDFLAGS="-shared -fPIC" |
2813 | 2051 ;; |
2052 *-sgi-*) | |
2053 CPICFLAG= | |
2054 CXXPICFLAG= | |
2055 FPICFLAG= | |
2056 ;; | |
2057 sparc-sun-sunos4*) | |
3887 | 2058 if test "$ac_cv_f77_compiler_gnu" = yes; then |
2813 | 2059 FPICFLAG=-fPIC |
2060 else | |
2061 FPICFLAG=-PIC | |
2062 fi | |
3059 | 2063 SH_LD=ld |
2064 SH_LDFLAGS="-assert nodefinitions" | |
2813 | 2065 ;; |
3606 | 2066 sparc-sun-solaris2* | i386-pc-solaris2*) |
3887 | 2067 if test "$ac_cv_f77_compiler_gnu" = yes; then |
2813 | 2068 FPICFLAG=-fPIC |
2069 else | |
3775 | 2070 FPICFLAG=-KPIC |
2071 fi | |
2072 if test "$GCC" = yes; then | |
2073 CPICFLAG=-fPIC | |
2074 else | |
2075 CPICFLAG=-KPIC | |
2813 | 2076 fi |
3775 | 2077 if test "$GXX" = yes; then |
2078 CXXPICFLAG=-fPIC | |
2079 SH_LDFLAGS=-shared | |
2080 else | |
2081 CXXPICFLAG=-KPIC | |
2082 SH_LDFLAGS=-G | |
2083 fi | |
6087 | 2084 ## Template closures in archive libraries need a different mechanism. |
3820 | 2085 if test "$GXX" = yes; then |
3775 | 2086 true |
2087 else | |
4323 | 2088 TEMPLATE_AR='$(CXX)' |
3775 | 2089 TEMPLATE_ARFLAGS="-xar -o" |
2090 fi | |
2813 | 2091 ;; |
2092 esac | |
2093 | |
10986
20bb05b9fb3f
makefile rules for compiled auxiliary programs
John W. Eaton <jwe@octave.org>
parents:
10951
diff
changeset
|
2094 AM_CONDITIONAL([AMCOND_BUILD_COMPILED_AUX_PROGRAMS], |
20bb05b9fb3f
makefile rules for compiled auxiliary programs
John W. Eaton <jwe@octave.org>
parents:
10951
diff
changeset
|
2095 [test x$BUILD_COMPILED_AUX_PROGRAMS = xtrue]) |
20bb05b9fb3f
makefile rules for compiled auxiliary programs
John W. Eaton <jwe@octave.org>
parents:
10951
diff
changeset
|
2096 |
5844 | 2097 AC_MSG_NOTICE([defining FPICFLAG to be $FPICFLAG]) |
2098 AC_MSG_NOTICE([defining CPICFLAG to be $CPICFLAG]) | |
2099 AC_MSG_NOTICE([defining CXXPICFLAG to be $CXXPICFLAG]) | |
2100 AC_MSG_NOTICE([defining SHLEXT to be $SHLEXT]) | |
2101 AC_MSG_NOTICE([defining SHLLIB to be $SHLLIB]) | |
2102 AC_MSG_NOTICE([defining SHLBIN to be $SHLBIN]) | |
2103 AC_MSG_NOTICE([defining SHLEXT_VER to be $SHLEXT_VER]) | |
2104 AC_MSG_NOTICE([defining SHLLIB_VER to be $SHLLIB_VER]) | |
2105 AC_MSG_NOTICE([defining SHLBIN_VER to be $SHLBIN_VER]) | |
2106 AC_MSG_NOTICE([defining SHLLINKEXT to be $SHLLINKEXT]) | |
6051 | 2107 AC_MSG_NOTICE([defining LIBPRE to be $LIBPRE]) |
9186
49a0c58a7dcf
Added SHLPRE for SHLEXT instead of SHLLIBPRE
marco_atzeri@yahoo.it
parents:
9178
diff
changeset
|
2108 AC_MSG_NOTICE([defining SHLPRE to be $SHLPRE]) |
9189
8a348e4be8bb
repair damage done when applying changeset 49a0c58a7dcf
John W. Eaton <jwe@octave.org>
parents:
9187
diff
changeset
|
2109 AC_MSG_NOTICE([defining SHLLIBPRE to be $SHLLIBPRE]) |
8618
f8b3ece45bda
use separate prefix for shllib and shlbin files
John W. Eaton <jwe@octave.org>
parents:
8607
diff
changeset
|
2110 AC_MSG_NOTICE([defining SHLBINPRE to be $SHLBINPRE]) |
5844 | 2111 AC_MSG_NOTICE([defining SH_LD to be $SH_LD]) |
2112 AC_MSG_NOTICE([defining SH_LDFLAGS to be $SH_LDFLAGS]) | |
2113 AC_MSG_NOTICE([defining DL_LD to be $DL_LD]) | |
2114 AC_MSG_NOTICE([defining DL_LDFLAGS to be $DL_LDFLAGS]) | |
2115 AC_MSG_NOTICE([defining MKOCTFILE_DL_LDFLAGS to be $MKOCTFILE_DL_LDFLAGS]) | |
2116 AC_MSG_NOTICE([defining SONAME_FLAGS to be $SONAME_FLAGS]) | |
2117 AC_MSG_NOTICE([defining NO_OCT_FILE_STRIP to be $NO_OCT_FILE_STRIP]) | |
2118 AC_MSG_NOTICE([defining TEMPLATE_AR to be $TEMPLATE_AR]) | |
2119 AC_MSG_NOTICE([defining TEMPLATE_ARFLAGS to be $TEMPLATE_ARFLAGS]) | |
6137 | 2120 AC_MSG_NOTICE([defining CRUFT_DLL_DEFS to be $CRUFT_DLL_DEFS]) |
2121 AC_MSG_NOTICE([defining OCTAVE_DLL_DEFS to be $OCTAVE_DLL_DEFS]) | |
2122 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
|
2123 AC_MSG_NOTICE([defining OCTGRAPHICS_DLL_DEFS to be $OCTGRAPHICS_DLL_DEFS]) |
5844 | 2124 AC_MSG_NOTICE([defining library_path_var to be $library_path_var]) |
2813 | 2125 AC_SUBST(FPICFLAG) |
2126 AC_SUBST(CPICFLAG) | |
2127 AC_SUBST(CXXPICFLAG) | |
2128 AC_SUBST(SHLEXT) | |
4102 | 2129 AC_SUBST(SHLLIB) |
2130 AC_SUBST(SHLBIN) | |
4126 | 2131 AC_SUBST(SHLEXT_VER) |
2132 AC_SUBST(SHLLIB_VER) | |
2133 AC_SUBST(SHLBIN_VER) | |
2134 AC_SUBST(SHLLINKEXT) | |
6051 | 2135 AC_SUBST(LIBPRE) |
9186
49a0c58a7dcf
Added SHLPRE for SHLEXT instead of SHLLIBPRE
marco_atzeri@yahoo.it
parents:
9178
diff
changeset
|
2136 AC_SUBST(SHLPRE) |
9189
8a348e4be8bb
repair damage done when applying changeset 49a0c58a7dcf
John W. Eaton <jwe@octave.org>
parents:
9187
diff
changeset
|
2137 AC_SUBST(SHLLIBPRE) |
8618
f8b3ece45bda
use separate prefix for shllib and shlbin files
John W. Eaton <jwe@octave.org>
parents:
8607
diff
changeset
|
2138 AC_SUBST(SHLBINPRE) |
2813 | 2139 AC_SUBST(SH_LD) |
2140 AC_SUBST(SH_LDFLAGS) | |
4759 | 2141 AC_SUBST(DL_LD) |
2142 AC_SUBST(DL_LDFLAGS) | |
2143 AC_SUBST(MKOCTFILE_DL_LDFLAGS) | |
3036 | 2144 AC_SUBST(SONAME_FLAGS) |
4199 | 2145 AC_SUBST(NO_OCT_FILE_STRIP) |
3775 | 2146 AC_SUBST(TEMPLATE_AR) |
2147 AC_SUBST(TEMPLATE_ARFLAGS) | |
6141 | 2148 AC_SUBST(CRUFT_DLL_DEFS) |
2149 AC_SUBST(OCTAVE_DLL_DEFS) | |
2150 AC_SUBST(OCTINTERP_DLL_DEFS) | |
7825
13871b7de124
Import sources for OpenGL-based renderer.
Michael Goffioul <michael.goffioul@gmail.com>
parents:
7789
diff
changeset
|
2151 AC_SUBST(OCTGRAPHICS_DLL_DEFS) |
4104 | 2152 AC_SUBST(library_path_var) |
9613
16907d1153d1
attempt to fix LD_PRELOAD for Cygwin
John W. Eaton <jwe@octave.org>
parents:
9610
diff
changeset
|
2153 AC_SUBST(ldpreloadsep) |
4102 | 2154 |
2813 | 2155 ### special checks for odd OS specific things. |
2156 | |
3887 | 2157 AC_CHECK_FUNCS(getpwnam, [], [AC_CHECK_LIB(sun, getpwnam)]) |
2813 | 2158 |
4388 | 2159 case "$canonical_host_type" in |
10123
8590f3c51868
Fix a few MSVC-related problems and partially re-enable MSVC compilation.
Michael Goffioul <michael.goffioul@gmail.com>
parents:
10092
diff
changeset
|
2160 *-*-mingw*) |
8590f3c51868
Fix a few MSVC-related problems and partially re-enable MSVC compilation.
Michael Goffioul <michael.goffioul@gmail.com>
parents:
10092
diff
changeset
|
2161 if test "$have_msvc" = "yes"; then |
8590f3c51868
Fix a few MSVC-related problems and partially re-enable MSVC compilation.
Michael Goffioul <michael.goffioul@gmail.com>
parents:
10092
diff
changeset
|
2162 AC_CHECK_LIB(dirent, opendir) |
8590f3c51868
Fix a few MSVC-related problems and partially re-enable MSVC compilation.
Michael Goffioul <michael.goffioul@gmail.com>
parents:
10092
diff
changeset
|
2163 LIBS="$LIBS -ladvapi32 -lgdi32 -lws2_32 -luser32 -lkernel32" |
8590f3c51868
Fix a few MSVC-related problems and partially re-enable MSVC compilation.
Michael Goffioul <michael.goffioul@gmail.com>
parents:
10092
diff
changeset
|
2164 else |
8590f3c51868
Fix a few MSVC-related problems and partially re-enable MSVC compilation.
Michael Goffioul <michael.goffioul@gmail.com>
parents:
10092
diff
changeset
|
2165 LIBS="$LIBS -lgdi32 -lws2_32 -luser32 -lkernel32" |
8590f3c51868
Fix a few MSVC-related problems and partially re-enable MSVC compilation.
Michael Goffioul <michael.goffioul@gmail.com>
parents:
10092
diff
changeset
|
2166 fi |
9794
0d4613a736e9
convert build system to use automake and libtool
John W. Eaton <jwe@octave.org>
parents:
9787
diff
changeset
|
2167 LIBS="$LIBS -lgdi32 -lws2_32 -luser32 -lkernel32" |
6091 | 2168 ;; |
10123
8590f3c51868
Fix a few MSVC-related problems and partially re-enable MSVC compilation.
Michael Goffioul <michael.goffioul@gmail.com>
parents:
10092
diff
changeset
|
2169 *-*-msdosmsvc*) |
8590f3c51868
Fix a few MSVC-related problems and partially re-enable MSVC compilation.
Michael Goffioul <michael.goffioul@gmail.com>
parents:
10092
diff
changeset
|
2170 AC_CHECK_LIB(dirent, opendir) |
8590f3c51868
Fix a few MSVC-related problems and partially re-enable MSVC compilation.
Michael Goffioul <michael.goffioul@gmail.com>
parents:
10092
diff
changeset
|
2171 LIBS="$LIBS -ladvapi32 -lgdi32 -lws2_32 -luser32 -lkernel32" |
8590f3c51868
Fix a few MSVC-related problems and partially re-enable MSVC compilation.
Michael Goffioul <michael.goffioul@gmail.com>
parents:
10092
diff
changeset
|
2172 ;; |
4388 | 2173 esac |
13024
f3c53fea9fb5
maint: more linking tweaks
John W. Eaton <jwe@octave.org>
parents:
13016
diff
changeset
|
2174 |
f3c53fea9fb5
maint: more linking tweaks
John W. Eaton <jwe@octave.org>
parents:
13016
diff
changeset
|
2175 AC_ARG_ENABLE([no-undefined], |
f3c53fea9fb5
maint: more linking tweaks
John W. Eaton <jwe@octave.org>
parents:
13016
diff
changeset
|
2176 [AS_HELP_STRING([--enable-no-undefined], |
14059
6c72c3bda888
doc: Fix typo in --enable-no-undefined help string
Rik <octave@nomad.inbox5.com>
parents:
14043
diff
changeset
|
2177 [pass -no-undefined to libtool when linking Octave and its shared libraries (on by default)])], |
13024
f3c53fea9fb5
maint: more linking tweaks
John W. Eaton <jwe@octave.org>
parents:
13016
diff
changeset
|
2178 [case "${enableval}" in |
f3c53fea9fb5
maint: more linking tweaks
John W. Eaton <jwe@octave.org>
parents:
13016
diff
changeset
|
2179 yes) NO_UNDEFINED_LDFLAG="-no-undefined" ;; |
f3c53fea9fb5
maint: more linking tweaks
John W. Eaton <jwe@octave.org>
parents:
13016
diff
changeset
|
2180 no) NO_UNDEFINED_LDFLAG="" ;; |
f3c53fea9fb5
maint: more linking tweaks
John W. Eaton <jwe@octave.org>
parents:
13016
diff
changeset
|
2181 *) AC_MSG_ERROR([bad value ${enableval} for --enable-link-all-depenencies]) ;; |
f3c53fea9fb5
maint: more linking tweaks
John W. Eaton <jwe@octave.org>
parents:
13016
diff
changeset
|
2182 esac], [NO_UNDEFINED_LDFLAG="-no-undefined"]) |
9794
0d4613a736e9
convert build system to use automake and libtool
John W. Eaton <jwe@octave.org>
parents:
9787
diff
changeset
|
2183 AC_SUBST(NO_UNDEFINED_LDFLAG) |
4388 | 2184 |
13024
f3c53fea9fb5
maint: more linking tweaks
John W. Eaton <jwe@octave.org>
parents:
13016
diff
changeset
|
2185 AC_ARG_ENABLE([link-all-dependencies], |
f3c53fea9fb5
maint: more linking tweaks
John W. Eaton <jwe@octave.org>
parents:
13016
diff
changeset
|
2186 [AS_HELP_STRING([--enable-link-all-dependencies], |
f3c53fea9fb5
maint: more linking tweaks
John W. Eaton <jwe@octave.org>
parents:
13016
diff
changeset
|
2187 [link Octave and its shared libraries with all dependencies, not just those immediately referenced (should not be needed on most systems)])], |
f3c53fea9fb5
maint: more linking tweaks
John W. Eaton <jwe@octave.org>
parents:
13016
diff
changeset
|
2188 [case "${enableval}" in |
f3c53fea9fb5
maint: more linking tweaks
John W. Eaton <jwe@octave.org>
parents:
13016
diff
changeset
|
2189 yes) link_all_deps=true ;; |
f3c53fea9fb5
maint: more linking tweaks
John W. Eaton <jwe@octave.org>
parents:
13016
diff
changeset
|
2190 no) link_all_deps=false ;; |
f3c53fea9fb5
maint: more linking tweaks
John W. Eaton <jwe@octave.org>
parents:
13016
diff
changeset
|
2191 *) AC_MSG_ERROR([bad value ${enableval} for --enable-link-all-depenencies]) ;; |
f3c53fea9fb5
maint: more linking tweaks
John W. Eaton <jwe@octave.org>
parents:
13016
diff
changeset
|
2192 esac], [link_all_deps=false]) |
f3c53fea9fb5
maint: more linking tweaks
John W. Eaton <jwe@octave.org>
parents:
13016
diff
changeset
|
2193 AM_CONDITIONAL([AMCOND_LINK_ALL_DEPS], [test x$link_all_deps = xtrue]) |
4388 | 2194 |
4353 | 2195 ### Type stuff. |
2196 | |
2197 AC_TYPE_MODE_T | |
2198 AC_TYPE_OFF_T | |
2199 AC_TYPE_PID_T | |
2200 AC_TYPE_SIZE_T | |
2201 AC_TYPE_UID_T | |
10077 | 2202 AC_CHECK_TYPES([dev_t, ino_t]) |
4353 | 2203 AC_CHECK_TYPES([long long int, unsigned long long int]) |
2204 | |
2813 | 2205 ### How big are ints and how are they oriented? These could probably |
2206 ### be eliminated in favor of run-time checks. | |
2207 | |
3888 | 2208 AC_CHECK_SIZEOF(short) |
2209 AC_CHECK_SIZEOF(int) | |
2210 AC_CHECK_SIZEOF(long) | |
2211 AC_CHECK_SIZEOF(long long) | |
2813 | 2212 |
2213 ### Does the C compiler handle alloca() and const correctly? | |
2214 | |
4602 | 2215 AC_FUNC_ALLOCA |
2813 | 2216 |
4360 | 2217 ### See if we should use placement delete. |
2218 | |
2219 OCTAVE_PLACEMENT_DELETE | |
2220 | |
4366 | 2221 ### See if we can auto allocate variable sized arrays. |
2222 | |
2223 OCTAVE_DYNAMIC_AUTO_ARRAYS | |
2224 | |
8169
66bc6f9b4f72
rewrite integer arithmetics and conversions
Jaroslav Hajek <highegg@gmail.com>
parents:
8019
diff
changeset
|
2225 ### See if we can use fast integer arithmetics |
66bc6f9b4f72
rewrite integer arithmetics and conversions
Jaroslav Hajek <highegg@gmail.com>
parents:
8019
diff
changeset
|
2226 |
66bc6f9b4f72
rewrite integer arithmetics and conversions
Jaroslav Hajek <highegg@gmail.com>
parents:
8019
diff
changeset
|
2227 OCTAVE_FAST_INT_OPS |
66bc6f9b4f72
rewrite integer arithmetics and conversions
Jaroslav Hajek <highegg@gmail.com>
parents:
8019
diff
changeset
|
2228 |
8185
69c5cce38c29
implement 64-bit arithmetics
Jaroslav Hajek <highegg@gmail.com>
parents:
8169
diff
changeset
|
2229 ### Check for long double type (for 64-bit integers) |
69c5cce38c29
implement 64-bit arithmetics
Jaroslav Hajek <highegg@gmail.com>
parents:
8169
diff
changeset
|
2230 |
69c5cce38c29
implement 64-bit arithmetics
Jaroslav Hajek <highegg@gmail.com>
parents:
8169
diff
changeset
|
2231 AC_CHECK_SIZEOF(long double) |
69c5cce38c29
implement 64-bit arithmetics
Jaroslav Hajek <highegg@gmail.com>
parents:
8169
diff
changeset
|
2232 |
869 | 2233 ### Checks for header files. |
2234 | |
832 | 2235 AC_HEADER_DIRENT |
1377 | 2236 AC_HEADER_SYS_WAIT |
2097 | 2237 |
4051 | 2238 ### C headers |
2239 | |
11234
2718e1fdf82f
IEEE math initialization tweaks
John W. Eaton <jwe@octave.org>
parents:
11233
diff
changeset
|
2240 AC_CHECK_HEADERS(curses.h direct.h dlfcn.h floatingpoint.h grp.h \ |
2718e1fdf82f
IEEE math initialization tweaks
John W. Eaton <jwe@octave.org>
parents:
11233
diff
changeset
|
2241 ieeefp.h inttypes.h locale.h memory.h ncurses.h poll.h pthread.h \ |
2718e1fdf82f
IEEE math initialization tweaks
John W. Eaton <jwe@octave.org>
parents:
11233
diff
changeset
|
2242 pwd.h sunmath.h sys/ioctl.h sys/param.h sys/poll.h sys/resource.h \ |
2718e1fdf82f
IEEE math initialization tweaks
John W. Eaton <jwe@octave.org>
parents:
11233
diff
changeset
|
2243 sys/select.h sys/utsname.h termcap.h) |
3887 | 2244 |
4051 | 2245 ### C++ headers |
2246 | |
2247 AC_LANG_PUSH(C++) | |
2248 AC_CHECK_HEADERS(sstream) | |
13727
478efc95cb7a
Test unordered_map header location and namespace.
Michael Goffioul <michael.goffioul@gmail.com>
parents:
13268
diff
changeset
|
2249 AC_CHECK_HEADERS([unordered_map], [], [ |
478efc95cb7a
Test unordered_map header location and namespace.
Michael Goffioul <michael.goffioul@gmail.com>
parents:
13268
diff
changeset
|
2250 AC_CHECK_HEADERS([tr1/unordered_map])]) |
478efc95cb7a
Test unordered_map header location and namespace.
Michael Goffioul <michael.goffioul@gmail.com>
parents:
13268
diff
changeset
|
2251 AC_MSG_CHECKING([whether unordered_map requires tr1 namespace]) |
478efc95cb7a
Test unordered_map header location and namespace.
Michael Goffioul <michael.goffioul@gmail.com>
parents:
13268
diff
changeset
|
2252 unordered_map_requires_tr1_namespace=no |
478efc95cb7a
Test unordered_map header location and namespace.
Michael Goffioul <michael.goffioul@gmail.com>
parents:
13268
diff
changeset
|
2253 if test "$ac_cv_header_unordered_map" = "yes"; then |
15063
36cbcc37fdb8
Refactor configure.ac to make it more understandable.
Rik <rik@octave.org>
parents:
15059
diff
changeset
|
2254 ## Have <unordered_map>, but still have to check whether |
36cbcc37fdb8
Refactor configure.ac to make it more understandable.
Rik <rik@octave.org>
parents:
15059
diff
changeset
|
2255 ## tr1 namespace is required (like MSVC, for instance). |
13727
478efc95cb7a
Test unordered_map header location and namespace.
Michael Goffioul <michael.goffioul@gmail.com>
parents:
13268
diff
changeset
|
2256 AC_COMPILE_IFELSE([ |
478efc95cb7a
Test unordered_map header location and namespace.
Michael Goffioul <michael.goffioul@gmail.com>
parents:
13268
diff
changeset
|
2257 AC_LANG_PROGRAM([ |
478efc95cb7a
Test unordered_map header location and namespace.
Michael Goffioul <michael.goffioul@gmail.com>
parents:
13268
diff
changeset
|
2258 #include <unordered_map> |
478efc95cb7a
Test unordered_map header location and namespace.
Michael Goffioul <michael.goffioul@gmail.com>
parents:
13268
diff
changeset
|
2259 ], [ |
14561
26b2983a8acd
maint: fix unordered_map configure test
John W. Eaton <jwe@octave.org>
parents:
14550
diff
changeset
|
2260 std::unordered_map<int,int> m; |
13727
478efc95cb7a
Test unordered_map header location and namespace.
Michael Goffioul <michael.goffioul@gmail.com>
parents:
13268
diff
changeset
|
2261 ])], [], [unordered_map_requires_tr1_namespace=yes]) |
478efc95cb7a
Test unordered_map header location and namespace.
Michael Goffioul <michael.goffioul@gmail.com>
parents:
13268
diff
changeset
|
2262 elif test "$ac_cv_header_tr1_unordered_map" = "yes"; then |
478efc95cb7a
Test unordered_map header location and namespace.
Michael Goffioul <michael.goffioul@gmail.com>
parents:
13268
diff
changeset
|
2263 unordered_map_requires_tr1_namespace=yes |
478efc95cb7a
Test unordered_map header location and namespace.
Michael Goffioul <michael.goffioul@gmail.com>
parents:
13268
diff
changeset
|
2264 fi |
478efc95cb7a
Test unordered_map header location and namespace.
Michael Goffioul <michael.goffioul@gmail.com>
parents:
13268
diff
changeset
|
2265 if test "$unordered_map_requires_tr1_namespace" = "yes"; then |
15063
36cbcc37fdb8
Refactor configure.ac to make it more understandable.
Rik <rik@octave.org>
parents:
15059
diff
changeset
|
2266 AC_DEFINE(USE_UNORDERED_MAP_WITH_TR1, 1, [Define to 1 if unordered_map requires the use of tr1 namespace.]) |
13727
478efc95cb7a
Test unordered_map header location and namespace.
Michael Goffioul <michael.goffioul@gmail.com>
parents:
13268
diff
changeset
|
2267 fi |
478efc95cb7a
Test unordered_map header location and namespace.
Michael Goffioul <michael.goffioul@gmail.com>
parents:
13268
diff
changeset
|
2268 AC_MSG_RESULT([$unordered_map_requires_tr1_namespace]) |
4051 | 2269 AC_LANG_POP(C++) |
2270 | |
3887 | 2271 have_termios_h=no |
9259
75c502937d2c
Fix typo for termios.h
Thomas Weber <thomas.weber.mail at gmail.com>
parents:
9254
diff
changeset
|
2272 AC_CHECK_HEADERS(termios.h, have_termios_h=yes) |
3887 | 2273 AC_CHECK_HEADERS(termio.h, have_termio_h=yes, have_termio_h=no) |
2274 AC_CHECK_HEADERS(sgtty.h, have_sgtty_h=yes, have_sgtty_h=no) | |
5451 | 2275 AC_CHECK_HEADERS(fnmatch.h, have_fnmatch_h=yes, have_fnmatch_h=no) |
4067 | 2276 AC_CHECK_HEADERS(conio.h, have_conio_h=yes, have_conio_h=no) |
3249 | 2277 |
3887 | 2278 if test "$have_termios_h" = yes \ |
2279 || test "$have_termio_h" = yes \ | |
2280 || test "$have_sgtty_h" = yes; then | |
832 | 2281 true |
2282 else | |
4064 | 2283 AC_MSG_WARN([I couldn't find termios.h, termio.h, or sgtty.h!]) |
832 | 2284 fi |
869 | 2285 |
15063
36cbcc37fdb8
Refactor configure.ac to make it more understandable.
Rik <rik@octave.org>
parents:
15059
diff
changeset
|
2286 ### For MSVC compilers, avoid #define of min/max from windows.h header |
36cbcc37fdb8
Refactor configure.ac to make it more understandable.
Rik <rik@octave.org>
parents:
15059
diff
changeset
|
2287 if test "$have_msvc" = "yes"; then |
36cbcc37fdb8
Refactor configure.ac to make it more understandable.
Rik <rik@octave.org>
parents:
15059
diff
changeset
|
2288 AC_DEFINE(NOMINMAX, 1, [Define to 1 if you want to avoid min/max macro definition in Windows headers.]) |
36cbcc37fdb8
Refactor configure.ac to make it more understandable.
Rik <rik@octave.org>
parents:
15059
diff
changeset
|
2289 fi |
36cbcc37fdb8
Refactor configure.ac to make it more understandable.
Rik <rik@octave.org>
parents:
15059
diff
changeset
|
2290 |
1788 | 2291 ### Checks for functions and variables. |
869 | 2292 |
10244 | 2293 AC_CHECK_FUNCS(basename canonicalize_file_name \ |
10259 | 2294 chmod dup2 endgrent endpwent execvp expm1 expm1f fork \ |
7638
2df457529cfa
implement expm1 and log1p functions
Jaroslav Hajek <highegg@gmail.com>
parents:
7636
diff
changeset
|
2295 getegid geteuid getgid getgrent getgrgid getgrnam getpgrp getpid \ |
14340
de99dde50ee1
undo part of changeset f15007a6c642
John W. Eaton <jwe@octave.org>
parents:
14315
diff
changeset
|
2296 getppid getpwent getpwuid getuid getwd _kbhit kill \ |
10179 | 2297 lgamma lgammaf lgamma_r lgammaf_r localtime_r log1p log1pf \ |
10255
dc088edd9a78
configure.ac: don't check for raise or strdup
John W. Eaton <jwe@octave.org>
parents:
10254
diff
changeset
|
2298 mkstemp pipe putenv \ |
10179 | 2299 realpath resolvepath rindex roundl select setgrent setlocale \ |
10251
28e5a5f826bc
configure.ac: delete checks for signal functions
John W. Eaton <jwe@octave.org>
parents:
10250
diff
changeset
|
2300 setpwent setvbuf siglongjmp \ |
11209
94d9d412a2a0
improve Matlab compatibility of rem and mod
John W. Eaton <jwe@octave.org>
parents:
11208
diff
changeset
|
2301 strsignal tempnam tgammaf umask \ |
10257
cd550069240e
assume vsnprintf from gnulib; use sstream instead of snprintf
John W. Eaton <jwe@octave.org>
parents:
10256
diff
changeset
|
2302 uname utime waitpid \ |
cd550069240e
assume vsnprintf from gnulib; use sstream instead of snprintf
John W. Eaton <jwe@octave.org>
parents:
10256
diff
changeset
|
2303 _chmod x_utime _utime32) |
1300 | 2304 |
9171
7500cfff4728
configure.in: provide decls for exp2, round, and tgamma if they are missing
Peter O'Gorman <pogma@thewrittenword.com>
parents:
9091
diff
changeset
|
2305 AC_LANG_PUSH(C++) |
7500cfff4728
configure.in: provide decls for exp2, round, and tgamma if they are missing
Peter O'Gorman <pogma@thewrittenword.com>
parents:
9091
diff
changeset
|
2306 AC_CHECK_DECLS([exp2, round, tgamma], [], [], [[#include <cmath>]]) |
7500cfff4728
configure.in: provide decls for exp2, round, and tgamma if they are missing
Peter O'Gorman <pogma@thewrittenword.com>
parents:
9091
diff
changeset
|
2307 AC_CHECK_FUNCS([exp2 round tgamma]) |
7500cfff4728
configure.in: provide decls for exp2, round, and tgamma if they are missing
Peter O'Gorman <pogma@thewrittenword.com>
parents:
9091
diff
changeset
|
2308 AH_VERBATIM([Z_FUNCS_AND_DECLS], [ |
7500cfff4728
configure.in: provide decls for exp2, round, and tgamma if they are missing
Peter O'Gorman <pogma@thewrittenword.com>
parents:
9091
diff
changeset
|
2309 #if defined (__cplusplus) |
7500cfff4728
configure.in: provide decls for exp2, round, and tgamma if they are missing
Peter O'Gorman <pogma@thewrittenword.com>
parents:
9091
diff
changeset
|
2310 extern "C" { |
7500cfff4728
configure.in: provide decls for exp2, round, and tgamma if they are missing
Peter O'Gorman <pogma@thewrittenword.com>
parents:
9091
diff
changeset
|
2311 #endif |
7500cfff4728
configure.in: provide decls for exp2, round, and tgamma if they are missing
Peter O'Gorman <pogma@thewrittenword.com>
parents:
9091
diff
changeset
|
2312 #if HAVE_EXP2 && ! HAVE_DECL_EXP2 |
7500cfff4728
configure.in: provide decls for exp2, round, and tgamma if they are missing
Peter O'Gorman <pogma@thewrittenword.com>
parents:
9091
diff
changeset
|
2313 double exp2 (double ); |
7500cfff4728
configure.in: provide decls for exp2, round, and tgamma if they are missing
Peter O'Gorman <pogma@thewrittenword.com>
parents:
9091
diff
changeset
|
2314 #endif |
7500cfff4728
configure.in: provide decls for exp2, round, and tgamma if they are missing
Peter O'Gorman <pogma@thewrittenword.com>
parents:
9091
diff
changeset
|
2315 #if HAVE_ROUND && ! HAVE_DECL_ROUND |
7500cfff4728
configure.in: provide decls for exp2, round, and tgamma if they are missing
Peter O'Gorman <pogma@thewrittenword.com>
parents:
9091
diff
changeset
|
2316 double round (double); |
7500cfff4728
configure.in: provide decls for exp2, round, and tgamma if they are missing
Peter O'Gorman <pogma@thewrittenword.com>
parents:
9091
diff
changeset
|
2317 #endif |
7500cfff4728
configure.in: provide decls for exp2, round, and tgamma if they are missing
Peter O'Gorman <pogma@thewrittenword.com>
parents:
9091
diff
changeset
|
2318 #if HAVE_TGAMMA && ! HAVE_DECL_TGAMMA |
7500cfff4728
configure.in: provide decls for exp2, round, and tgamma if they are missing
Peter O'Gorman <pogma@thewrittenword.com>
parents:
9091
diff
changeset
|
2319 double tgamma (double); |
7500cfff4728
configure.in: provide decls for exp2, round, and tgamma if they are missing
Peter O'Gorman <pogma@thewrittenword.com>
parents:
9091
diff
changeset
|
2320 #endif |
7500cfff4728
configure.in: provide decls for exp2, round, and tgamma if they are missing
Peter O'Gorman <pogma@thewrittenword.com>
parents:
9091
diff
changeset
|
2321 #if defined (__cplusplus) |
7500cfff4728
configure.in: provide decls for exp2, round, and tgamma if they are missing
Peter O'Gorman <pogma@thewrittenword.com>
parents:
9091
diff
changeset
|
2322 } |
7500cfff4728
configure.in: provide decls for exp2, round, and tgamma if they are missing
Peter O'Gorman <pogma@thewrittenword.com>
parents:
9091
diff
changeset
|
2323 #endif |
7500cfff4728
configure.in: provide decls for exp2, round, and tgamma if they are missing
Peter O'Gorman <pogma@thewrittenword.com>
parents:
9091
diff
changeset
|
2324 ]) |
7500cfff4728
configure.in: provide decls for exp2, round, and tgamma if they are missing
Peter O'Gorman <pogma@thewrittenword.com>
parents:
9091
diff
changeset
|
2325 AC_LANG_POP(C++) |
7500cfff4728
configure.in: provide decls for exp2, round, and tgamma if they are missing
Peter O'Gorman <pogma@thewrittenword.com>
parents:
9091
diff
changeset
|
2326 |
6094 | 2327 case "$canonical_host_type" in |
8792
bbb3fa6778f3
use mkstemps as replacement for mkstemp on mingw32
Benjamin Lindner <lindnerb@users.sourceforge.net>
parents:
8771
diff
changeset
|
2328 *-*-mingw*) |
bbb3fa6778f3
use mkstemps as replacement for mkstemp on mingw32
Benjamin Lindner <lindnerb@users.sourceforge.net>
parents:
8771
diff
changeset
|
2329 ## MinGW does not provide a mkstemp function. However, it provides |
bbb3fa6778f3
use mkstemps as replacement for mkstemp on mingw32
Benjamin Lindner <lindnerb@users.sourceforge.net>
parents:
8771
diff
changeset
|
2330 ## the mkstemps function in libiberty. |
10003
2ea3110e15ed
Use M4 quoting for arguments to autoconf macros containing variables
Rik <rdrider0-list@yahoo.com>
parents:
9989
diff
changeset
|
2331 AC_MSG_CHECKING([for mkstemps in libiberty]) |
8792
bbb3fa6778f3
use mkstemps as replacement for mkstemp on mingw32
Benjamin Lindner <lindnerb@users.sourceforge.net>
parents:
8771
diff
changeset
|
2332 save_LIBS="$LIBS" |
bbb3fa6778f3
use mkstemps as replacement for mkstemp on mingw32
Benjamin Lindner <lindnerb@users.sourceforge.net>
parents:
8771
diff
changeset
|
2333 LIBS="-liberty $LIBS" |
bbb3fa6778f3
use mkstemps as replacement for mkstemp on mingw32
Benjamin Lindner <lindnerb@users.sourceforge.net>
parents:
8771
diff
changeset
|
2334 AC_LINK_IFELSE([ |
bbb3fa6778f3
use mkstemps as replacement for mkstemp on mingw32
Benjamin Lindner <lindnerb@users.sourceforge.net>
parents:
8771
diff
changeset
|
2335 AC_LANG_PROGRAM([[int mkstemps (char *pattern, int suffix_len);]], |
bbb3fa6778f3
use mkstemps as replacement for mkstemp on mingw32
Benjamin Lindner <lindnerb@users.sourceforge.net>
parents:
8771
diff
changeset
|
2336 [[mkstemps ("XXXXXX", 0);]] |
bbb3fa6778f3
use mkstemps as replacement for mkstemp on mingw32
Benjamin Lindner <lindnerb@users.sourceforge.net>
parents:
8771
diff
changeset
|
2337 )], |
bbb3fa6778f3
use mkstemps as replacement for mkstemp on mingw32
Benjamin Lindner <lindnerb@users.sourceforge.net>
parents:
8771
diff
changeset
|
2338 [AC_MSG_RESULT(yes) |
bbb3fa6778f3
use mkstemps as replacement for mkstemp on mingw32
Benjamin Lindner <lindnerb@users.sourceforge.net>
parents:
8771
diff
changeset
|
2339 HAVE_MKSTEMPS=yes |
15063
36cbcc37fdb8
Refactor configure.ac to make it more understandable.
Rik <rik@octave.org>
parents:
15059
diff
changeset
|
2340 AC_DEFINE(HAVE_MKSTEMPS, 1, [Define to 1 if mkstemps is available in libiberty.]) |
8792
bbb3fa6778f3
use mkstemps as replacement for mkstemp on mingw32
Benjamin Lindner <lindnerb@users.sourceforge.net>
parents:
8771
diff
changeset
|
2341 ], |
bbb3fa6778f3
use mkstemps as replacement for mkstemp on mingw32
Benjamin Lindner <lindnerb@users.sourceforge.net>
parents:
8771
diff
changeset
|
2342 [AC_MSG_RESULT(no) |
bbb3fa6778f3
use mkstemps as replacement for mkstemp on mingw32
Benjamin Lindner <lindnerb@users.sourceforge.net>
parents:
8771
diff
changeset
|
2343 HAVE_MKSTEMPS=no |
bbb3fa6778f3
use mkstemps as replacement for mkstemp on mingw32
Benjamin Lindner <lindnerb@users.sourceforge.net>
parents:
8771
diff
changeset
|
2344 LIBS="$save_LIBS" |
bbb3fa6778f3
use mkstemps as replacement for mkstemp on mingw32
Benjamin Lindner <lindnerb@users.sourceforge.net>
parents:
8771
diff
changeset
|
2345 ]) |
bbb3fa6778f3
use mkstemps as replacement for mkstemp on mingw32
Benjamin Lindner <lindnerb@users.sourceforge.net>
parents:
8771
diff
changeset
|
2346 ;; |
bbb3fa6778f3
use mkstemps as replacement for mkstemp on mingw32
Benjamin Lindner <lindnerb@users.sourceforge.net>
parents:
8771
diff
changeset
|
2347 esac |
bbb3fa6778f3
use mkstemps as replacement for mkstemp on mingw32
Benjamin Lindner <lindnerb@users.sourceforge.net>
parents:
8771
diff
changeset
|
2348 |
1708 | 2349 OCTAVE_SMART_PUTENV |
2350 | |
6103 | 2351 case "$canonical_host_type" in |
6704 | 2352 *-*-msdosmsvc | *-*-mingw*) |
6103 | 2353 AC_MSG_CHECKING([for required _WIN32_WINNT]) |
12743
5d8f2a091b23
maint: avoid warnings from autoconf
John W. Eaton <jwe@octave.org>
parents:
12742
diff
changeset
|
2354 AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[ |
6103 | 2355 #include <windows.h> |
2356 #if _WIN32_WINNT < 0x0403 | |
2357 #error "Wrong version" | |
12743
5d8f2a091b23
maint: avoid warnings from autoconf
John W. Eaton <jwe@octave.org>
parents:
12742
diff
changeset
|
2358 #endif]], [])], |
6103 | 2359 AC_MSG_RESULT([none]), [ |
15063
36cbcc37fdb8
Refactor configure.ac to make it more understandable.
Rik <rik@octave.org>
parents:
15059
diff
changeset
|
2360 AC_DEFINE(_WIN32_WINNT, 0x0403, [Define to 0x0403 to access InitializeCriticalSectionAndSpinCount.]) |
12451 | 2361 AC_MSG_RESULT([0x0403])]) |
6103 | 2362 AC_MSG_CHECKING([whether _USE_MATH_DEFINES needs to be defined]) |
12743
5d8f2a091b23
maint: avoid warnings from autoconf
John W. Eaton <jwe@octave.org>
parents:
12742
diff
changeset
|
2363 AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[#include <math.h>]], |
5d8f2a091b23
maint: avoid warnings from autoconf
John W. Eaton <jwe@octave.org>
parents:
12742
diff
changeset
|
2364 [[int x = M_LN2;]])], |
6103 | 2365 AC_MSG_RESULT([no]), [ |
15063
36cbcc37fdb8
Refactor configure.ac to make it more understandable.
Rik <rik@octave.org>
parents:
15059
diff
changeset
|
2366 AC_DEFINE(_USE_MATH_DEFINES, 1, [Define to 1 if your system needs to define math constants like M_LN2.]) |
12451 | 2367 AC_MSG_RESULT([yes])]) |
6103 | 2368 ;; |
2369 esac | |
2370 | |
15063
36cbcc37fdb8
Refactor configure.ac to make it more understandable.
Rik <rik@octave.org>
parents:
15059
diff
changeset
|
2371 ## Check for CGDisplayBitsPerPixel function on Mac OSX systems with Carbon |
36cbcc37fdb8
Refactor configure.ac to make it more understandable.
Rik <rik@octave.org>
parents:
15059
diff
changeset
|
2372 OCTAVE_CARBON_CGDISPLAYBITSPERPIXEL |
36cbcc37fdb8
Refactor configure.ac to make it more understandable.
Rik <rik@octave.org>
parents:
15059
diff
changeset
|
2373 |
4110 | 2374 ### Dynamic linking is now enabled only if we are building shared |
2375 ### libs and some API for dynamic linking is detected. | |
2376 | |
15063
36cbcc37fdb8
Refactor configure.ac to make it more understandable.
Rik <rik@octave.org>
parents:
15059
diff
changeset
|
2377 ## FIXME: A lot of the following duplicates the functionality of |
9794
0d4613a736e9
convert build system to use automake and libtool
John W. Eaton <jwe@octave.org>
parents:
9787
diff
changeset
|
2378 ## code generated by the dlopen option for LT_INIT. |
0d4613a736e9
convert build system to use automake and libtool
John W. Eaton <jwe@octave.org>
parents:
9787
diff
changeset
|
2379 |
3705 | 2380 LD_CXX='$(CXX)' |
3232 | 2381 RDYNAMIC_FLAG= |
4110 | 2382 DL_API_MSG="" |
2383 dlopen_api=false | |
2384 shl_load_api=false | |
2385 loadlibrary_api=false | |
4163 | 2386 dyld_api=false |
4110 | 2387 |
4163 | 2388 if $SHARED_LIBS || $ENABLE_DYNAMIC_LINKING; then |
2389 | |
10036
0cabc95f0833
configure.ac: use libtool cache variables to simplify checks for dynamic linking api
John W. Eaton <jwe@octave.org>
parents:
10029
diff
changeset
|
2390 case "$lt_cv_dlopen" in |
0cabc95f0833
configure.ac: use libtool cache variables to simplify checks for dynamic linking api
John W. Eaton <jwe@octave.org>
parents:
10029
diff
changeset
|
2391 dlopen) |
0cabc95f0833
configure.ac: use libtool cache variables to simplify checks for dynamic linking api
John W. Eaton <jwe@octave.org>
parents:
10029
diff
changeset
|
2392 dlopen_api=true |
0cabc95f0833
configure.ac: use libtool cache variables to simplify checks for dynamic linking api
John W. Eaton <jwe@octave.org>
parents:
10029
diff
changeset
|
2393 DL_API_MSG="(dlopen)" |
15063
36cbcc37fdb8
Refactor configure.ac to make it more understandable.
Rik <rik@octave.org>
parents:
15059
diff
changeset
|
2394 AC_DEFINE(HAVE_DLOPEN_API, 1, [Define to 1 if your system has dlopen, dlsym, dlerror, and dlclose for dynamic linking.]) |
10036
0cabc95f0833
configure.ac: use libtool cache variables to simplify checks for dynamic linking api
John W. Eaton <jwe@octave.org>
parents:
10029
diff
changeset
|
2395 OCTAVE_CXX_FLAG(-rdynamic, [RDYNAMIC_FLAG=-rdynamic]) |
0cabc95f0833
configure.ac: use libtool cache variables to simplify checks for dynamic linking api
John W. Eaton <jwe@octave.org>
parents:
10029
diff
changeset
|
2396 ;; |
0cabc95f0833
configure.ac: use libtool cache variables to simplify checks for dynamic linking api
John W. Eaton <jwe@octave.org>
parents:
10029
diff
changeset
|
2397 shl_load) |
4189 | 2398 shl_load_api=true |
10036
0cabc95f0833
configure.ac: use libtool cache variables to simplify checks for dynamic linking api
John W. Eaton <jwe@octave.org>
parents:
10029
diff
changeset
|
2399 DL_API_MSG="(shl_load)" |
15063
36cbcc37fdb8
Refactor configure.ac to make it more understandable.
Rik <rik@octave.org>
parents:
15059
diff
changeset
|
2400 AC_DEFINE(HAVE_SHL_LOAD_API, 1, [Define to 1 if your system has shl_load and shl_findsym for dynamic linking.]) |
10036
0cabc95f0833
configure.ac: use libtool cache variables to simplify checks for dynamic linking api
John W. Eaton <jwe@octave.org>
parents:
10029
diff
changeset
|
2401 ;; |
0cabc95f0833
configure.ac: use libtool cache variables to simplify checks for dynamic linking api
John W. Eaton <jwe@octave.org>
parents:
10029
diff
changeset
|
2402 LoadLibrary) |
0cabc95f0833
configure.ac: use libtool cache variables to simplify checks for dynamic linking api
John W. Eaton <jwe@octave.org>
parents:
10029
diff
changeset
|
2403 loadlibrary_api=true |
0cabc95f0833
configure.ac: use libtool cache variables to simplify checks for dynamic linking api
John W. Eaton <jwe@octave.org>
parents:
10029
diff
changeset
|
2404 DL_API_MSG="(LoadLibrary)" |
15063
36cbcc37fdb8
Refactor configure.ac to make it more understandable.
Rik <rik@octave.org>
parents:
15059
diff
changeset
|
2405 AC_DEFINE(HAVE_LOADLIBRARY_API, 1, [Define to 1 if your system has LoadLibrary for dynamic linking.]) |
10036
0cabc95f0833
configure.ac: use libtool cache variables to simplify checks for dynamic linking api
John W. Eaton <jwe@octave.org>
parents:
10029
diff
changeset
|
2406 ;; |
0cabc95f0833
configure.ac: use libtool cache variables to simplify checks for dynamic linking api
John W. Eaton <jwe@octave.org>
parents:
10029
diff
changeset
|
2407 dyld) |
0cabc95f0833
configure.ac: use libtool cache variables to simplify checks for dynamic linking api
John W. Eaton <jwe@octave.org>
parents:
10029
diff
changeset
|
2408 dyld_api=true |
0cabc95f0833
configure.ac: use libtool cache variables to simplify checks for dynamic linking api
John W. Eaton <jwe@octave.org>
parents:
10029
diff
changeset
|
2409 DL_API_MSG="(dyld)" |
15063
36cbcc37fdb8
Refactor configure.ac to make it more understandable.
Rik <rik@octave.org>
parents:
15059
diff
changeset
|
2410 AC_DEFINE(HAVE_DYLD_API, 1, [Define to 1 if your system has dyld for dynamic linking.]) |
10036
0cabc95f0833
configure.ac: use libtool cache variables to simplify checks for dynamic linking api
John W. Eaton <jwe@octave.org>
parents:
10029
diff
changeset
|
2411 ;; |
0cabc95f0833
configure.ac: use libtool cache variables to simplify checks for dynamic linking api
John W. Eaton <jwe@octave.org>
parents:
10029
diff
changeset
|
2412 esac |
0cabc95f0833
configure.ac: use libtool cache variables to simplify checks for dynamic linking api
John W. Eaton <jwe@octave.org>
parents:
10029
diff
changeset
|
2413 |
0cabc95f0833
configure.ac: use libtool cache variables to simplify checks for dynamic linking api
John W. Eaton <jwe@octave.org>
parents:
10029
diff
changeset
|
2414 DL_LIBS="$lt_cv_dlopen_libs" |
9515 | 2415 AC_SUBST(DL_LIBS) |
4110 | 2416 |
13010
edc5ec6e949b
maint: allow --enable-static --disable-dl to work again
John W. Eaton <jwe@octave.org>
parents:
12772
diff
changeset
|
2417 ## Disable dynamic linking if capability is not present. |
4163 | 2418 if $dlopen_api || $shl_load_api || $loadlibrary_api || $dyld_api; then |
13010
edc5ec6e949b
maint: allow --enable-static --disable-dl to work again
John W. Eaton <jwe@octave.org>
parents:
12772
diff
changeset
|
2419 true |
edc5ec6e949b
maint: allow --enable-static --disable-dl to work again
John W. Eaton <jwe@octave.org>
parents:
12772
diff
changeset
|
2420 else |
edc5ec6e949b
maint: allow --enable-static --disable-dl to work again
John W. Eaton <jwe@octave.org>
parents:
12772
diff
changeset
|
2421 ENABLE_DYNAMIC_LINKING=false |
1978 | 2422 fi |
4163 | 2423 fi |
2424 | |
13010
edc5ec6e949b
maint: allow --enable-static --disable-dl to work again
John W. Eaton <jwe@octave.org>
parents:
12772
diff
changeset
|
2425 if $ENABLE_DYNAMIC_LINKING; then |
15063
36cbcc37fdb8
Refactor configure.ac to make it more understandable.
Rik <rik@octave.org>
parents:
15059
diff
changeset
|
2426 AC_DEFINE(ENABLE_DYNAMIC_LINKING, 1, [Define to 1 if using dynamic linking.]) |
13010
edc5ec6e949b
maint: allow --enable-static --disable-dl to work again
John W. Eaton <jwe@octave.org>
parents:
12772
diff
changeset
|
2427 fi |
edc5ec6e949b
maint: allow --enable-static --disable-dl to work again
John W. Eaton <jwe@octave.org>
parents:
12772
diff
changeset
|
2428 |
9794
0d4613a736e9
convert build system to use automake and libtool
John W. Eaton <jwe@octave.org>
parents:
9787
diff
changeset
|
2429 AM_CONDITIONAL([AMCOND_ENABLE_DYNAMIC_LINKING], |
0d4613a736e9
convert build system to use automake and libtool
John W. Eaton <jwe@octave.org>
parents:
9787
diff
changeset
|
2430 [test x$ENABLE_DYNAMIC_LINKING = xtrue]) |
0d4613a736e9
convert build system to use automake and libtool
John W. Eaton <jwe@octave.org>
parents:
9787
diff
changeset
|
2431 |
4163 | 2432 if $SHARED_LIBS; then |
2433 LIBOCTINTERP=-loctinterp$SHLLINKEXT | |
2434 LIBOCTAVE=-loctave$SHLLINKEXT | |
2435 LIBCRUFT=-lcruft$SHLLINKEXT | |
1978 | 2436 else |
10004
e517da95bf98
Eliminate TOPDIR variable in favor of built-in automake variables
Rik <rdrider0-list@yahoo.com>
parents:
10003
diff
changeset
|
2437 LIBOCTINTERP='$(top_builddir)/src/liboctinterp.$(LIBEXT)' |
e517da95bf98
Eliminate TOPDIR variable in favor of built-in automake variables
Rik <rdrider0-list@yahoo.com>
parents:
10003
diff
changeset
|
2438 LIBOCTAVE='$(top_builddir)/liboctave/liboctave.$(LIBEXT)' |
e517da95bf98
Eliminate TOPDIR variable in favor of built-in automake variables
Rik <rdrider0-list@yahoo.com>
parents:
10003
diff
changeset
|
2439 LIBCRUFT='$(top_builddir)/libcruft/libcruft.$(LIBEXT)' |
1664 | 2440 fi |
4163 | 2441 |
4110 | 2442 AC_SUBST(LD_CXX) |
3232 | 2443 AC_SUBST(RDYNAMIC_FLAG) |
4128 | 2444 AC_SUBST(ENABLE_DYNAMIC_LINKING) |
4110 | 2445 AC_SUBST(LIBOCTINTERP) |
2446 AC_SUBST(LIBOCTAVE) | |
2447 AC_SUBST(LIBCRUFT) | |
1901 | 2448 |
8998
a48fba01e4ac
optimize isnan/isinf/isfinite mappers
Jaroslav Hajek <highegg@gmail.com>
parents:
8940
diff
changeset
|
2449 dnl Maybe <cmath> defines the IEEE functions we need. |
a48fba01e4ac
optimize isnan/isinf/isfinite mappers
Jaroslav Hajek <highegg@gmail.com>
parents:
8940
diff
changeset
|
2450 |
a48fba01e4ac
optimize isnan/isinf/isfinite mappers
Jaroslav Hajek <highegg@gmail.com>
parents:
8940
diff
changeset
|
2451 OCTAVE_CMATH_FUNC(isnan) |
a48fba01e4ac
optimize isnan/isinf/isfinite mappers
Jaroslav Hajek <highegg@gmail.com>
parents:
8940
diff
changeset
|
2452 OCTAVE_CMATH_FUNC(isinf) |
a48fba01e4ac
optimize isnan/isinf/isfinite mappers
Jaroslav Hajek <highegg@gmail.com>
parents:
8940
diff
changeset
|
2453 OCTAVE_CMATH_FUNC(isfinite) |
a48fba01e4ac
optimize isnan/isinf/isfinite mappers
Jaroslav Hajek <highegg@gmail.com>
parents:
8940
diff
changeset
|
2454 |
832 | 2455 dnl Would like to get rid of this cruft, and just have |
2456 dnl | |
2457 dnl AC_CHECK_FUNCS(finite isnan isinf) | |
2458 dnl | |
2459 dnl instead, but that used to fail on some systems... | |
369 | 2460 dnl |
832 | 2461 dnl Also just using AC_CHECK_FUNCS doesn't seem to work to find isinf |
2462 dnl and isnan on Linux systems, so we use AC_CHECK_FUNC, and if that | |
369 | 2463 dnl fails, we try again by including math.h and invoking the function |
2464 dnl with an argument. | |
869 | 2465 |
11229
2f36145742c9
eliminate special cases for SCO systems
John W. Eaton <jwe@octave.org>
parents:
11219
diff
changeset
|
2466 ### I am told that Inf and NaN don't work on m68k HP sytems. |
956 | 2467 |
2468 case "$canonical_host_type" in | |
1384 | 2469 m68k-hp-hpux*) |
956 | 2470 ;; |
2471 *) | |
11209
94d9d412a2a0
improve Matlab compatibility of rem and mod
John W. Eaton <jwe@octave.org>
parents:
11208
diff
changeset
|
2472 AC_CHECK_FUNCS(finite isnan isinf signbit) |
94d9d412a2a0
improve Matlab compatibility of rem and mod
John W. Eaton <jwe@octave.org>
parents:
11208
diff
changeset
|
2473 AC_CHECK_FUNCS(_finite _isnan) |
5098 | 2474 AC_CHECK_DECLS(signbit, , , [#include <math.h>]) |
956 | 2475 ;; |
2476 esac | |
2477 | |
1076 | 2478 ### Check for nonstandard but common math functions that we need. |
2479 | |
9171
7500cfff4728
configure.in: provide decls for exp2, round, and tgamma if they are missing
Peter O'Gorman <pogma@thewrittenword.com>
parents:
9091
diff
changeset
|
2480 AC_CHECK_FUNCS(acosh acoshf asinh asinhf atanh atanhf erf erff erfc erfcf exp2f log2 log2f) |
10414
2a8b1db1e2ca
implement built-in cbrt
Jaroslav Hajek <highegg@gmail.com>
parents:
10411
diff
changeset
|
2481 AC_CHECK_FUNCS(hypotf _hypotf cbrt cbrtf) |
3130 | 2482 |
869 | 2483 ### Checks for OS specific cruft. |
2484 | |
3887 | 2485 AC_CHECK_MEMBERS([struct stat.st_blksize, struct stat.st_blocks, struct stat.st_rdev]) |
2486 | |
1186 | 2487 AC_STRUCT_TIMEZONE |
1388 | 2488 AC_FUNC_CLOSEDIR_VOID |
1225 | 2489 |
3892 | 2490 AC_CHECK_MEMBERS(struct group.gr_passwd) |
2548 | 2491 |
3887 | 2492 octave_found_termlib=no |
2592 | 2493 for termlib in ncurses curses termcap terminfo termlib; do |
9515 | 2494 AC_CHECK_LIB(${termlib}, tputs, [ |
2495 TERM_LIBS="-l${termlib}" | |
2496 octave_found_termlib=yes | |
2497 break]) | |
405 | 2498 done |
869 | 2499 |
3887 | 2500 if test "$octave_found_termlib" = no; then |
2501 warn_termlibs="I couldn't find -ltermcap, -lterminfo, -lncurses, -lcurses, o\ | |
2502 r -ltermlib!" | |
10003
2ea3110e15ed
Use M4 quoting for arguments to autoconf macros containing variables
Rik <rdrider0-list@yahoo.com>
parents:
9989
diff
changeset
|
2503 AC_MSG_WARN([$warn_termlibs]) |
2488 | 2504 fi |
9515 | 2505 AC_SUBST(TERM_LIBS) |
2488 | 2506 |
15063
36cbcc37fdb8
Refactor configure.ac to make it more understandable.
Rik <rik@octave.org>
parents:
15059
diff
changeset
|
2507 ### Return type of matherr() |
832 | 2508 AC_MSG_CHECKING([for struct exception in math.h]) |
5842 | 2509 AC_LINK_IFELSE([AC_LANG_PROGRAM([[#include <math.h>]], |
2510 [[struct exception *x; x->type; x->name;]])], | |
2511 [AC_MSG_RESULT(yes) | |
2512 AC_DEFINE(EXCEPTION_IN_MATH, 1, | |
15063
36cbcc37fdb8
Refactor configure.ac to make it more understandable.
Rik <rik@octave.org>
parents:
15059
diff
changeset
|
2513 [Define to 1 if your math.h declares struct exception for matherr().])], |
5842 | 2514 [AC_MSG_RESULT(no)]) |
869 | 2515 |
2516 ### Signal stuff. | |
2517 | |
5844 | 2518 AC_CHECK_DECLS([sys_siglist], [], [], |
2519 [#include <signal.h> | |
2520 /* NetBSD declares sys_siglist in unistd.h. */ | |
2521 #if HAVE_UNISTD_H | |
2522 # include <unistd.h> | |
2523 #endif | |
2524 ]) | |
869 | 2525 |
15063
36cbcc37fdb8
Refactor configure.ac to make it more understandable.
Rik <rik@octave.org>
parents:
15059
diff
changeset
|
2526 ### A system dependent kludge or two. |
2633 | 2527 |
10073
dcde57cb5778
use times module from gnulib
John W. Eaton <jwe@octave.org>
parents:
10072
diff
changeset
|
2528 AC_CHECK_FUNCS(getrusage) |
2427 | 2529 case "$canonical_host_type" in |
3971 | 2530 *-*-cygwin*) |
15063
36cbcc37fdb8
Refactor configure.ac to make it more understandable.
Rik <rik@octave.org>
parents:
15059
diff
changeset
|
2531 AC_DEFINE(RUSAGE_TIMES_ONLY, 1, [Define to 1 if your struct rusage only has time information.]) |
2427 | 2532 ;; |
2533 esac | |
2534 | |
15063
36cbcc37fdb8
Refactor configure.ac to make it more understandable.
Rik <rik@octave.org>
parents:
15059
diff
changeset
|
2535 ### Checks for other programs used in building, testing, installing, and |
36cbcc37fdb8
Refactor configure.ac to make it more understandable.
Rik <rik@octave.org>
parents:
15059
diff
changeset
|
2536 ### running Octave. |
869 | 2537 |
4544 | 2538 AC_PROG_AWK |
7244 | 2539 OCTAVE_PROG_FIND |
4084 | 2540 OCTAVE_PROG_SED |
5465 | 2541 OCTAVE_PROG_PERL |
5496 | 2542 OCTAVE_PROG_PYTHON |
4084 | 2543 |
3729 | 2544 OCTAVE_PROG_FLEX |
9794
0d4613a736e9
convert build system to use automake and libtool
John W. Eaton <jwe@octave.org>
parents:
9787
diff
changeset
|
2545 AC_SUBST([LEX_OUTPUT_ROOT], [lex.octave_]) |
0d4613a736e9
convert build system to use automake and libtool
John W. Eaton <jwe@octave.org>
parents:
9787
diff
changeset
|
2546 |
3729 | 2547 OCTAVE_PROG_BISON |
869 | 2548 |
1722 | 2549 AC_PROG_LN_S |
2550 | |
405 | 2551 AC_PROG_INSTALL |
2642 | 2552 INSTALL_SCRIPT='${INSTALL}' |
2553 AC_SUBST(INSTALL_SCRIPT) | |
869 | 2554 |
5468 | 2555 OCTAVE_PROG_DESKTOP_FILE_INSTALL |
2556 | |
3130 | 2557 OCTAVE_PROG_GNUPLOT |
2558 OCTAVE_PROG_PAGER | |
3673 | 2559 OCTAVE_PROG_GPERF |
3130 | 2560 |
5934 | 2561 OCTAVE_PROG_GHOSTSCRIPT |
2562 OCTAVE_PROG_TEXI2DVI | |
2563 OCTAVE_PROG_TEXI2PDF | |
2564 | |
14579
4dc85c4f151b
Disable building documentation if gnuplot not found
Mike Miller <mtmiller@ieee.org>
parents:
14561
diff
changeset
|
2565 ### Need to disable building documentation if gnuplot was not found, |
4dc85c4f151b
Disable building documentation if gnuplot not found
Mike Miller <mtmiller@ieee.org>
parents:
14561
diff
changeset
|
2566 ### unless it was already disabled previously. |
4dc85c4f151b
Disable building documentation if gnuplot not found
Mike Miller <mtmiller@ieee.org>
parents:
14561
diff
changeset
|
2567 |
4dc85c4f151b
Disable building documentation if gnuplot not found
Mike Miller <mtmiller@ieee.org>
parents:
14561
diff
changeset
|
2568 if test -n "$DOCDIR" && test -n "$warn_gnuplot"; then |
4dc85c4f151b
Disable building documentation if gnuplot not found
Mike Miller <mtmiller@ieee.org>
parents:
14561
diff
changeset
|
2569 DOCDIR= |
4dc85c4f151b
Disable building documentation if gnuplot not found
Mike Miller <mtmiller@ieee.org>
parents:
14561
diff
changeset
|
2570 warn_docs="building documentation disabled because gnuplot was not found; make dist will fail" |
14605
28e53daab1f8
Cleanup on autoconf warnings
Jordi Gutiérrez Hermoso <jordigh@octave.org>
parents:
14579
diff
changeset
|
2571 OCTAVE_CONFIGURE_WARNING([warn_docs]) |
14579
4dc85c4f151b
Disable building documentation if gnuplot not found
Mike Miller <mtmiller@ieee.org>
parents:
14561
diff
changeset
|
2572 fi |
4dc85c4f151b
Disable building documentation if gnuplot not found
Mike Miller <mtmiller@ieee.org>
parents:
14561
diff
changeset
|
2573 AM_CONDITIONAL([AMCOND_BUILD_DOCS], [test -n "$DOCDIR"]) |
4dc85c4f151b
Disable building documentation if gnuplot not found
Mike Miller <mtmiller@ieee.org>
parents:
14561
diff
changeset
|
2574 |
2032 | 2575 ### Even though we include config.h, we need to have the preprocessor |
12169
5913cc5fec4e
configure.ac: update comment about UGLY_DEFS
John W. Eaton <jwe@octave.org>
parents:
12135
diff
changeset
|
2576 ### defines available in a variable for the testif feature of the |
5913cc5fec4e
configure.ac: update comment about UGLY_DEFS
John W. Eaton <jwe@octave.org>
parents:
12135
diff
changeset
|
2577 ### scripts/testfun/test.m function. Use UGLY_DEFS to hold all the -D |
5913cc5fec4e
configure.ac: update comment about UGLY_DEFS
John W. Eaton <jwe@octave.org>
parents:
12135
diff
changeset
|
2578 ### options. These are ultimately placed in the DEFS field of the |
5913cc5fec4e
configure.ac: update comment about UGLY_DEFS
John W. Eaton <jwe@octave.org>
parents:
12135
diff
changeset
|
2579 ### struct returned by octave_config_info, which is used by test.m. |
2032 | 2580 |
2581 AC_OUTPUT_MAKE_DEFS | |
3956 | 2582 |
6957 | 2583 ### We have to insert extra levels of backslash quoting here so that |
2584 ### the right thing ends up in oct-conf.h. | |
6959 | 2585 UGLY_DEFS=`echo $DEFS | $SED 's,\\",\\\\\\\\\\\\\\\\\\",g'` |
5844 | 2586 AC_MSG_NOTICE([defining UGLY_DEFS to be $UGLY_DEFS]) |
2032 | 2587 AC_SUBST(UGLY_DEFS) |
2588 | |
4645 | 2589 ### Maybe add -Wall, -W, and -Wshadow to compiler flags now that we're |
4587 | 2590 ### done feature testing. |
869 | 2591 |
11514
a1386fab2a02
configure.ac: eliminate some code duplication when checking for extra compiler flags
John W. Eaton <jwe@octave.org>
parents:
11513
diff
changeset
|
2592 GCC_EXTRA_FLAGS="-Wall -W -Wshadow -Wformat -Wpointer-arith -Wmissing-prototypes -Wstrict-prototypes -Wwrite-strings -Wcast-align -Wcast-qual" |
a1386fab2a02
configure.ac: eliminate some code duplication when checking for extra compiler flags
John W. Eaton <jwe@octave.org>
parents:
11513
diff
changeset
|
2593 |
a1386fab2a02
configure.ac: eliminate some code duplication when checking for extra compiler flags
John W. Eaton <jwe@octave.org>
parents:
11513
diff
changeset
|
2594 GXX_EXTRA_FLAGS="-Wall -W -Wshadow -Wold-style-cast -Wformat -Wpointer-arith -Wwrite-strings -Wcast-align -Wcast-qual" |
a1386fab2a02
configure.ac: eliminate some code duplication when checking for extra compiler flags
John W. Eaton <jwe@octave.org>
parents:
11513
diff
changeset
|
2595 |
8938
35e18344fae8
configure.in: options for compiler warning flags
John W. Eaton <jwe@octave.org>
parents:
8920
diff
changeset
|
2596 try_extra_warning_flags=true |
11514
a1386fab2a02
configure.ac: eliminate some code duplication when checking for extra compiler flags
John W. Eaton <jwe@octave.org>
parents:
11513
diff
changeset
|
2597 |
8938
35e18344fae8
configure.in: options for compiler warning flags
John W. Eaton <jwe@octave.org>
parents:
8920
diff
changeset
|
2598 AC_ARG_ENABLE(extra-warning-flags, |
35e18344fae8
configure.in: options for compiler warning flags
John W. Eaton <jwe@octave.org>
parents:
8920
diff
changeset
|
2599 [AS_HELP_STRING([--enable-extra-warning-flags], |
35e18344fae8
configure.in: options for compiler warning flags
John W. Eaton <jwe@octave.org>
parents:
8920
diff
changeset
|
2600 [add -Wall, -W, -Wshadow, and -Wold-style-cast options to CFLAGS and CXXFLAGS (on by default, but only if the compiler appears to accept them)])], |
35e18344fae8
configure.in: options for compiler warning flags
John W. Eaton <jwe@octave.org>
parents:
8920
diff
changeset
|
2601 [if test "$enableval" = no; then |
35e18344fae8
configure.in: options for compiler warning flags
John W. Eaton <jwe@octave.org>
parents:
8920
diff
changeset
|
2602 try_extra_warning_flags=false |
35e18344fae8
configure.in: options for compiler warning flags
John W. Eaton <jwe@octave.org>
parents:
8920
diff
changeset
|
2603 fi], []) |
35e18344fae8
configure.in: options for compiler warning flags
John W. Eaton <jwe@octave.org>
parents:
8920
diff
changeset
|
2604 |
35e18344fae8
configure.in: options for compiler warning flags
John W. Eaton <jwe@octave.org>
parents:
8920
diff
changeset
|
2605 if $try_extra_warning_flags; then |
11514
a1386fab2a02
configure.ac: eliminate some code duplication when checking for extra compiler flags
John W. Eaton <jwe@octave.org>
parents:
11513
diff
changeset
|
2606 for flag in $GCC_EXTRA_FLAGS; do |
a1386fab2a02
configure.ac: eliminate some code duplication when checking for extra compiler flags
John W. Eaton <jwe@octave.org>
parents:
11513
diff
changeset
|
2607 OCTAVE_CC_FLAG($flag, [ |
a1386fab2a02
configure.ac: eliminate some code duplication when checking for extra compiler flags
John W. Eaton <jwe@octave.org>
parents:
11513
diff
changeset
|
2608 WARN_CFLAGS="$WARN_CFLAGS $flag"; |
a1386fab2a02
configure.ac: eliminate some code duplication when checking for extra compiler flags
John W. Eaton <jwe@octave.org>
parents:
11513
diff
changeset
|
2609 AC_MSG_RESULT([adding $flag to WARN_CFLAGS])]) |
a1386fab2a02
configure.ac: eliminate some code duplication when checking for extra compiler flags
John W. Eaton <jwe@octave.org>
parents:
11513
diff
changeset
|
2610 done |
a1386fab2a02
configure.ac: eliminate some code duplication when checking for extra compiler flags
John W. Eaton <jwe@octave.org>
parents:
11513
diff
changeset
|
2611 for flag in $GXX_EXTRA_FLAGS; do |
a1386fab2a02
configure.ac: eliminate some code duplication when checking for extra compiler flags
John W. Eaton <jwe@octave.org>
parents:
11513
diff
changeset
|
2612 OCTAVE_CXX_FLAG($flag, [ |
a1386fab2a02
configure.ac: eliminate some code duplication when checking for extra compiler flags
John W. Eaton <jwe@octave.org>
parents:
11513
diff
changeset
|
2613 WARN_CXXFLAGS="$WARN_CXXFLAGS $flag"; |
a1386fab2a02
configure.ac: eliminate some code duplication when checking for extra compiler flags
John W. Eaton <jwe@octave.org>
parents:
11513
diff
changeset
|
2614 AC_MSG_RESULT([adding $flag to WARN_CXXFLAGS])]) |
a1386fab2a02
configure.ac: eliminate some code duplication when checking for extra compiler flags
John W. Eaton <jwe@octave.org>
parents:
11513
diff
changeset
|
2615 done |
405 | 2616 fi |
869 | 2617 |
11513
a2289858dcb2
more warning flags for GCC if configured with --enable-extra-warning-flags (on by default)
John W. Eaton <jwe@octave.org>
parents:
11511
diff
changeset
|
2618 GCC_STRICT_FLAGS="-Wconversion" |
2813 | 2619 |
11513
a2289858dcb2
more warning flags for GCC if configured with --enable-extra-warning-flags (on by default)
John W. Eaton <jwe@octave.org>
parents:
11511
diff
changeset
|
2620 GXX_STRICT_FLAGS="-Wconversion -Weffc++" |
8938
35e18344fae8
configure.in: options for compiler warning flags
John W. Eaton <jwe@octave.org>
parents:
8920
diff
changeset
|
2621 |
35e18344fae8
configure.in: options for compiler warning flags
John W. Eaton <jwe@octave.org>
parents:
8920
diff
changeset
|
2622 try_strict_warning_flags=false |
35e18344fae8
configure.in: options for compiler warning flags
John W. Eaton <jwe@octave.org>
parents:
8920
diff
changeset
|
2623 |
35e18344fae8
configure.in: options for compiler warning flags
John W. Eaton <jwe@octave.org>
parents:
8920
diff
changeset
|
2624 AC_ARG_ENABLE(strict-warning-flags, |
35e18344fae8
configure.in: options for compiler warning flags
John W. Eaton <jwe@octave.org>
parents:
8920
diff
changeset
|
2625 [AS_HELP_STRING([--enable-strict-warning-flags], |
35e18344fae8
configure.in: options for compiler warning flags
John W. Eaton <jwe@octave.org>
parents:
8920
diff
changeset
|
2626 [add extra strict warning options to CFLAGS and CXXFLAGS (off by default)])], |
35e18344fae8
configure.in: options for compiler warning flags
John W. Eaton <jwe@octave.org>
parents:
8920
diff
changeset
|
2627 [if test "$enableval" = yes; then |
35e18344fae8
configure.in: options for compiler warning flags
John W. Eaton <jwe@octave.org>
parents:
8920
diff
changeset
|
2628 try_strict_warning_flags=true |
35e18344fae8
configure.in: options for compiler warning flags
John W. Eaton <jwe@octave.org>
parents:
8920
diff
changeset
|
2629 fi], []) |
2813 | 2630 |
8938
35e18344fae8
configure.in: options for compiler warning flags
John W. Eaton <jwe@octave.org>
parents:
8920
diff
changeset
|
2631 if $try_strict_warning_flags; then |
35e18344fae8
configure.in: options for compiler warning flags
John W. Eaton <jwe@octave.org>
parents:
8920
diff
changeset
|
2632 for flag in $GCC_STRICT_FLAGS; do |
35e18344fae8
configure.in: options for compiler warning flags
John W. Eaton <jwe@octave.org>
parents:
8920
diff
changeset
|
2633 OCTAVE_CC_FLAG($flag, [ |
35e18344fae8
configure.in: options for compiler warning flags
John W. Eaton <jwe@octave.org>
parents:
8920
diff
changeset
|
2634 WARN_CFLAGS="$WARN_CFLAGS $flag"; |
35e18344fae8
configure.in: options for compiler warning flags
John W. Eaton <jwe@octave.org>
parents:
8920
diff
changeset
|
2635 AC_MSG_RESULT([adding $flag to WARN_CFLAGS])]) |
35e18344fae8
configure.in: options for compiler warning flags
John W. Eaton <jwe@octave.org>
parents:
8920
diff
changeset
|
2636 done |
35e18344fae8
configure.in: options for compiler warning flags
John W. Eaton <jwe@octave.org>
parents:
8920
diff
changeset
|
2637 for flag in $GXX_STRICT_FLAGS; do |
35e18344fae8
configure.in: options for compiler warning flags
John W. Eaton <jwe@octave.org>
parents:
8920
diff
changeset
|
2638 OCTAVE_CXX_FLAG($flag, [ |
35e18344fae8
configure.in: options for compiler warning flags
John W. Eaton <jwe@octave.org>
parents:
8920
diff
changeset
|
2639 WARN_CXXFLAGS="$WARN_CXXFLAGS $flag"; |
35e18344fae8
configure.in: options for compiler warning flags
John W. Eaton <jwe@octave.org>
parents:
8920
diff
changeset
|
2640 AC_MSG_RESULT([adding $flag to WARN_CXXFLAGS])]) |
35e18344fae8
configure.in: options for compiler warning flags
John W. Eaton <jwe@octave.org>
parents:
8920
diff
changeset
|
2641 done |
35e18344fae8
configure.in: options for compiler warning flags
John W. Eaton <jwe@octave.org>
parents:
8920
diff
changeset
|
2642 fi |
2813 | 2643 |
4626 | 2644 AC_SUBST(WARN_CFLAGS) |
2645 AC_SUBST(WARN_CXXFLAGS) | |
2646 | |
15110
4f6e058e4161
Integrate GUI building with regular octave build system.
Michael Goffioul <michael.goffioul@gmail.com>
parents:
15093
diff
changeset
|
2647 ### GUI/Qt related tests. |
4f6e058e4161
Integrate GUI building with regular octave build system.
Michael Goffioul <michael.goffioul@gmail.com>
parents:
15093
diff
changeset
|
2648 |
4f6e058e4161
Integrate GUI building with regular octave build system.
Michael Goffioul <michael.goffioul@gmail.com>
parents:
15093
diff
changeset
|
2649 AC_CHECK_PROGS(MOC, [moc moc-qt4 moc-qt5]) |
4f6e058e4161
Integrate GUI building with regular octave build system.
Michael Goffioul <michael.goffioul@gmail.com>
parents:
15093
diff
changeset
|
2650 AC_CHECK_PROGS(UIC, [uic uic-qt4 uic-qt5]) |
4f6e058e4161
Integrate GUI building with regular octave build system.
Michael Goffioul <michael.goffioul@gmail.com>
parents:
15093
diff
changeset
|
2651 AC_CHECK_PROGS(QMAKE, [qmake qmake-qt4 qmake-qt5]) |
4f6e058e4161
Integrate GUI building with regular octave build system.
Michael Goffioul <michael.goffioul@gmail.com>
parents:
15093
diff
changeset
|
2652 |
4f6e058e4161
Integrate GUI building with regular octave build system.
Michael Goffioul <michael.goffioul@gmail.com>
parents:
15093
diff
changeset
|
2653 AC_SUBST(MOC) |
4f6e058e4161
Integrate GUI building with regular octave build system.
Michael Goffioul <michael.goffioul@gmail.com>
parents:
15093
diff
changeset
|
2654 AC_SUBST(UIC) |
4f6e058e4161
Integrate GUI building with regular octave build system.
Michael Goffioul <michael.goffioul@gmail.com>
parents:
15093
diff
changeset
|
2655 |
4f6e058e4161
Integrate GUI building with regular octave build system.
Michael Goffioul <michael.goffioul@gmail.com>
parents:
15093
diff
changeset
|
2656 QT_INCDIR=`$QMAKE -query | sed -n -e 's/^QT_INSTALL_HEADERS://p'` |
4f6e058e4161
Integrate GUI building with regular octave build system.
Michael Goffioul <michael.goffioul@gmail.com>
parents:
15093
diff
changeset
|
2657 QT_LIBDIR=`$QMAKE -query | sed -n -e 's/^QT_INSTALL_LIBS://p'` |
4f6e058e4161
Integrate GUI building with regular octave build system.
Michael Goffioul <michael.goffioul@gmail.com>
parents:
15093
diff
changeset
|
2658 |
4f6e058e4161
Integrate GUI building with regular octave build system.
Michael Goffioul <michael.goffioul@gmail.com>
parents:
15093
diff
changeset
|
2659 AC_SUBST(QT_INCDIR) |
4f6e058e4161
Integrate GUI building with regular octave build system.
Michael Goffioul <michael.goffioul@gmail.com>
parents:
15093
diff
changeset
|
2660 AC_SUBST(QT_LIBDIR) |
4f6e058e4161
Integrate GUI building with regular octave build system.
Michael Goffioul <michael.goffioul@gmail.com>
parents:
15093
diff
changeset
|
2661 |
4f6e058e4161
Integrate GUI building with regular octave build system.
Michael Goffioul <michael.goffioul@gmail.com>
parents:
15093
diff
changeset
|
2662 case "$canonical_host_type" in |
4f6e058e4161
Integrate GUI building with regular octave build system.
Michael Goffioul <michael.goffioul@gmail.com>
parents:
15093
diff
changeset
|
2663 *-*-mingw* | *-*-msdosmsvc*) win32_terminal=yes ;; |
4f6e058e4161
Integrate GUI building with regular octave build system.
Michael Goffioul <michael.goffioul@gmail.com>
parents:
15093
diff
changeset
|
2664 *) |
4f6e058e4161
Integrate GUI building with regular octave build system.
Michael Goffioul <michael.goffioul@gmail.com>
parents:
15093
diff
changeset
|
2665 win32_terminal=no |
4f6e058e4161
Integrate GUI building with regular octave build system.
Michael Goffioul <michael.goffioul@gmail.com>
parents:
15093
diff
changeset
|
2666 AC_CHECK_HEADERS([pty.h libutil.h util.h]) |
4f6e058e4161
Integrate GUI building with regular octave build system.
Michael Goffioul <michael.goffioul@gmail.com>
parents:
15093
diff
changeset
|
2667 AC_SEARCH_LIBS([openpty], [util], [AC_DEFINE([HAVE_OPENPTY], [], [Define whether openpty exists])]) |
4f6e058e4161
Integrate GUI building with regular octave build system.
Michael Goffioul <michael.goffioul@gmail.com>
parents:
15093
diff
changeset
|
2668 ;; |
4f6e058e4161
Integrate GUI building with regular octave build system.
Michael Goffioul <michael.goffioul@gmail.com>
parents:
15093
diff
changeset
|
2669 esac |
4f6e058e4161
Integrate GUI building with regular octave build system.
Michael Goffioul <michael.goffioul@gmail.com>
parents:
15093
diff
changeset
|
2670 AM_CONDITIONAL([WIN32_TERMINAL], [test x$win32_terminal = xyes]) |
4f6e058e4161
Integrate GUI building with regular octave build system.
Michael Goffioul <michael.goffioul@gmail.com>
parents:
15093
diff
changeset
|
2671 |
1146 | 2672 ### Run configure in subdirectories. |
2673 | |
1304 | 2674 export CC |
2675 export CXX | |
2676 export F77 | |
2677 | |
3923 | 2678 ### Some things to add to the bottom of config.h. |
2679 | |
2680 AH_BOTTOM([ | |
10411 | 2681 #if !defined (GNULIB_NAMESPACE) |
2682 #define GNULIB_NAMESPACE gnulib | |
2683 #endif | |
2684 | |
3923 | 2685 #if defined (__GNUC__) |
5389 | 2686 #define GCC_ATTR_DEPRECATED __attribute__ ((__deprecated__)) |
3923 | 2687 #define GCC_ATTR_NORETURN __attribute__ ((__noreturn__)) |
2688 #define GCC_ATTR_UNUSED __attribute__ ((__unused__)) | |
2689 #else | |
5389 | 2690 #define GCC_ATTR_DEPRECATED |
3923 | 2691 #define GCC_ATTR_NORETURN |
2692 #define GCC_ATTR_UNUSED | |
2693 #endif | |
2694 | |
2695 #define X_CAST(T, E) (T) (E) | |
2696 | |
5854 | 2697 #if defined (CXX_BROKEN_REINTERPRET_CAST) |
2698 #define FCN_PTR_CAST(T, E) (T) (E) | |
2699 #else | |
2700 #define FCN_PTR_CAST(T, E) reinterpret_cast<T> (E) | |
2701 #endif | |
2702 | |
3923 | 2703 #if !defined(HAVE_DEV_T) |
4064 | 2704 typedef short dev_t; |
3923 | 2705 #endif |
2706 | |
2707 #if !defined(HAVE_INO_T) | |
4064 | 2708 typedef unsigned long ino_t; |
3923 | 2709 #endif |
2710 | |
6122 | 2711 #if defined (_MSC_VER) |
2712 #define __WIN32__ | |
6276 | 2713 #define WIN32 |
6122 | 2714 /* missing parameters in macros */ |
2715 #pragma warning (disable: 4003) | |
2716 /* missing implementations in template instantiation */ | |
2717 #pragma warning (disable: 4996) | |
2718 /* deprecated function names (FIXME?) */ | |
2719 #pragma warning (disable: 4661) | |
2720 #endif | |
2721 | |
4377 | 2722 #if defined (__WIN32__) && ! defined (__CYGWIN__) |
4101 | 2723 #define OCTAVE_HAVE_WINDOWS_FILESYSTEM 1 |
6049 | 2724 #elif defined (__CYGWIN__) |
4377 | 2725 #define OCTAVE_HAVE_WINDOWS_FILESYSTEM 1 |
2726 #define OCTAVE_HAVE_POSIX_FILESYSTEM 1 | |
6049 | 2727 #else |
2728 #define OCTAVE_HAVE_POSIX_FILESYSTEM 1 | |
4101 | 2729 #endif |
2730 | |
15063
36cbcc37fdb8
Refactor configure.ac to make it more understandable.
Rik <rik@octave.org>
parents:
15059
diff
changeset
|
2731 /* Define to 1 if we expect to have <windows.h>, Sleep, etc. */ |
4102 | 2732 #if defined (__WIN32__) && ! defined (__CYGWIN__) |
4101 | 2733 #define OCTAVE_USE_WINDOWS_API 1 |
2734 #endif | |
4153 | 2735 |
8577
ab61b47d3435
configure.in (AH_BOTTOM): Also check __MACH__ when defining OCTAVE_USE_OS_X_API
John W. Eaton <jwe@octave.org>
parents:
8573
diff
changeset
|
2736 #if defined (__APPLE__) && defined (__MACH__) |
8573
da61d0f7ce0b
configure.in (AH_BOTTOM): define OCTAVE_USE_OS_X_API if __APPLE__ is defined
John W. Eaton <jwe@octave.org>
parents:
8562
diff
changeset
|
2737 #define OCTAVE_USE_OS_X_API 1 |
da61d0f7ce0b
configure.in (AH_BOTTOM): define OCTAVE_USE_OS_X_API if __APPLE__ is defined
John W. Eaton <jwe@octave.org>
parents:
8562
diff
changeset
|
2738 #endif |
da61d0f7ce0b
configure.in (AH_BOTTOM): define OCTAVE_USE_OS_X_API if __APPLE__ is defined
John W. Eaton <jwe@octave.org>
parents:
8562
diff
changeset
|
2739 |
4180 | 2740 /* sigsetjmp is a macro, not a function. */ |
2741 #if defined (sigsetjmp) && defined (HAVE_SIGLONGJMP) | |
2742 #define OCTAVE_HAVE_SIG_JUMP | |
2743 #endif | |
4249 | 2744 |
4552 | 2745 #if defined (_UNICOS) |
2746 #define F77_USES_CRAY_CALLING_CONVENTION | |
2747 #endif | |
2748 | |
2749 #if 0 | |
2750 #define F77_USES_VISUAL_FORTRAN_CALLING_CONVENTION | |
2751 #endif | |
5275 | 2752 |
5297 | 2753 #ifdef USE_64_BIT_IDX_T |
2754 #define SIZEOF_OCTAVE_IDX_TYPE 8 | |
2755 #else | |
2756 #define SIZEOF_OCTAVE_IDX_TYPE SIZEOF_INT | |
2757 #endif | |
2758 | |
9648
11844593875a
eliminate oct-dlldefs.h and oct-types.h
John W. Eaton <jwe@octave.org>
parents:
9645
diff
changeset
|
2759 /* To be able to use long doubles for 64-bit mixed arithmetics, we need |
11844593875a
eliminate oct-dlldefs.h and oct-types.h
John W. Eaton <jwe@octave.org>
parents:
9645
diff
changeset
|
2760 them at least 80 bits wide and we need roundl declared in math.h. |
15063
36cbcc37fdb8
Refactor configure.ac to make it more understandable.
Rik <rik@octave.org>
parents:
15059
diff
changeset
|
2761 FIXME: Maybe substitute this by a more precise check in the future? */ |
8185
69c5cce38c29
implement 64-bit arithmetics
Jaroslav Hajek <highegg@gmail.com>
parents:
8169
diff
changeset
|
2762 #if (SIZEOF_LONG_DOUBLE >= 10) && defined (HAVE_ROUNDL) |
69c5cce38c29
implement 64-bit arithmetics
Jaroslav Hajek <highegg@gmail.com>
parents:
8169
diff
changeset
|
2763 #define OCTAVE_INT_USE_LONG_DOUBLE |
69c5cce38c29
implement 64-bit arithmetics
Jaroslav Hajek <highegg@gmail.com>
parents:
8169
diff
changeset
|
2764 #endif |
69c5cce38c29
implement 64-bit arithmetics
Jaroslav Hajek <highegg@gmail.com>
parents:
8169
diff
changeset
|
2765 |
7067 | 2766 #define OCTAVE_EMPTY_CPP_ARG |
2767 | |
9648
11844593875a
eliminate oct-dlldefs.h and oct-types.h
John W. Eaton <jwe@octave.org>
parents:
9645
diff
changeset
|
2768 /* Octave is currently unable to use FFTW unless both float |
15063
36cbcc37fdb8
Refactor configure.ac to make it more understandable.
Rik <rik@octave.org>
parents:
15059
diff
changeset
|
2769 and double versions are available. */ |
9523
0ce82753dd72
more configure changes for libraries
John W. Eaton <jwe@octave.org>
parents:
9519
diff
changeset
|
2770 #if defined (HAVE_FFTW3) && defined (HAVE_FFTW3F) |
0ce82753dd72
more configure changes for libraries
John W. Eaton <jwe@octave.org>
parents:
9519
diff
changeset
|
2771 #define HAVE_FFTW |
0ce82753dd72
more configure changes for libraries
John W. Eaton <jwe@octave.org>
parents:
9519
diff
changeset
|
2772 #endif |
0ce82753dd72
more configure changes for libraries
John W. Eaton <jwe@octave.org>
parents:
9519
diff
changeset
|
2773 |
9648
11844593875a
eliminate oct-dlldefs.h and oct-types.h
John W. Eaton <jwe@octave.org>
parents:
9645
diff
changeset
|
2774 /* Backward compatibility. */ |
9610
bb36a5730ecc
configure.in (AH_BOTTOM): If HAVE_Z is defined, define HAVE_ZLIB
John W. Eaton <jwe@octave.org>
parents:
9603
diff
changeset
|
2775 #if defined (HAVE_Z) |
bb36a5730ecc
configure.in (AH_BOTTOM): If HAVE_Z is defined, define HAVE_ZLIB
John W. Eaton <jwe@octave.org>
parents:
9603
diff
changeset
|
2776 #define HAVE_ZLIB |
bb36a5730ecc
configure.in (AH_BOTTOM): If HAVE_Z is defined, define HAVE_ZLIB
John W. Eaton <jwe@octave.org>
parents:
9603
diff
changeset
|
2777 #endif |
bb36a5730ecc
configure.in (AH_BOTTOM): If HAVE_Z is defined, define HAVE_ZLIB
John W. Eaton <jwe@octave.org>
parents:
9603
diff
changeset
|
2778 |
9648
11844593875a
eliminate oct-dlldefs.h and oct-types.h
John W. Eaton <jwe@octave.org>
parents:
9645
diff
changeset
|
2779 /* oct-dlldefs.h */ |
11844593875a
eliminate oct-dlldefs.h and oct-types.h
John W. Eaton <jwe@octave.org>
parents:
9645
diff
changeset
|
2780 |
11844593875a
eliminate oct-dlldefs.h and oct-types.h
John W. Eaton <jwe@octave.org>
parents:
9645
diff
changeset
|
2781 #if defined (_MSC_VER) |
11844593875a
eliminate oct-dlldefs.h and oct-types.h
John W. Eaton <jwe@octave.org>
parents:
9645
diff
changeset
|
2782 #define OCTAVE_EXPORT __declspec(dllexport) |
11844593875a
eliminate oct-dlldefs.h and oct-types.h
John W. Eaton <jwe@octave.org>
parents:
9645
diff
changeset
|
2783 #define OCTAVE_IMPORT __declspec(dllimport) |
11844593875a
eliminate oct-dlldefs.h and oct-types.h
John W. Eaton <jwe@octave.org>
parents:
9645
diff
changeset
|
2784 #else |
11844593875a
eliminate oct-dlldefs.h and oct-types.h
John W. Eaton <jwe@octave.org>
parents:
9645
diff
changeset
|
2785 /* All other compilers, at least for now. */ |
11844593875a
eliminate oct-dlldefs.h and oct-types.h
John W. Eaton <jwe@octave.org>
parents:
9645
diff
changeset
|
2786 #define OCTAVE_EXPORT |
11844593875a
eliminate oct-dlldefs.h and oct-types.h
John W. Eaton <jwe@octave.org>
parents:
9645
diff
changeset
|
2787 #define OCTAVE_IMPORT |
11844593875a
eliminate oct-dlldefs.h and oct-types.h
John W. Eaton <jwe@octave.org>
parents:
9645
diff
changeset
|
2788 #endif |
11844593875a
eliminate oct-dlldefs.h and oct-types.h
John W. Eaton <jwe@octave.org>
parents:
9645
diff
changeset
|
2789 |
11844593875a
eliminate oct-dlldefs.h and oct-types.h
John W. Eaton <jwe@octave.org>
parents:
9645
diff
changeset
|
2790 /* API macro for libcruft */ |
11844593875a
eliminate oct-dlldefs.h and oct-types.h
John W. Eaton <jwe@octave.org>
parents:
9645
diff
changeset
|
2791 #ifdef CRUFT_DLL |
11844593875a
eliminate oct-dlldefs.h and oct-types.h
John W. Eaton <jwe@octave.org>
parents:
9645
diff
changeset
|
2792 #define CRUFT_API OCTAVE_EXPORT |
11844593875a
eliminate oct-dlldefs.h and oct-types.h
John W. Eaton <jwe@octave.org>
parents:
9645
diff
changeset
|
2793 #else |
11844593875a
eliminate oct-dlldefs.h and oct-types.h
John W. Eaton <jwe@octave.org>
parents:
9645
diff
changeset
|
2794 #define CRUFT_API OCTAVE_IMPORT |
11844593875a
eliminate oct-dlldefs.h and oct-types.h
John W. Eaton <jwe@octave.org>
parents:
9645
diff
changeset
|
2795 #endif |
11844593875a
eliminate oct-dlldefs.h and oct-types.h
John W. Eaton <jwe@octave.org>
parents:
9645
diff
changeset
|
2796 |
11844593875a
eliminate oct-dlldefs.h and oct-types.h
John W. Eaton <jwe@octave.org>
parents:
9645
diff
changeset
|
2797 /* API macro for liboctave */ |
11844593875a
eliminate oct-dlldefs.h and oct-types.h
John W. Eaton <jwe@octave.org>
parents:
9645
diff
changeset
|
2798 #ifdef OCTAVE_DLL |
11844593875a
eliminate oct-dlldefs.h and oct-types.h
John W. Eaton <jwe@octave.org>
parents:
9645
diff
changeset
|
2799 #define OCTAVE_API OCTAVE_EXPORT |
11844593875a
eliminate oct-dlldefs.h and oct-types.h
John W. Eaton <jwe@octave.org>
parents:
9645
diff
changeset
|
2800 #else |
11844593875a
eliminate oct-dlldefs.h and oct-types.h
John W. Eaton <jwe@octave.org>
parents:
9645
diff
changeset
|
2801 #define OCTAVE_API OCTAVE_IMPORT |
11844593875a
eliminate oct-dlldefs.h and oct-types.h
John W. Eaton <jwe@octave.org>
parents:
9645
diff
changeset
|
2802 #endif |
11844593875a
eliminate oct-dlldefs.h and oct-types.h
John W. Eaton <jwe@octave.org>
parents:
9645
diff
changeset
|
2803 |
11844593875a
eliminate oct-dlldefs.h and oct-types.h
John W. Eaton <jwe@octave.org>
parents:
9645
diff
changeset
|
2804 /* API macro for src */ |
11844593875a
eliminate oct-dlldefs.h and oct-types.h
John W. Eaton <jwe@octave.org>
parents:
9645
diff
changeset
|
2805 #ifdef OCTINTERP_DLL |
11844593875a
eliminate oct-dlldefs.h and oct-types.h
John W. Eaton <jwe@octave.org>
parents:
9645
diff
changeset
|
2806 #define OCTINTERP_API OCTAVE_EXPORT |
11844593875a
eliminate oct-dlldefs.h and oct-types.h
John W. Eaton <jwe@octave.org>
parents:
9645
diff
changeset
|
2807 #else |
11844593875a
eliminate oct-dlldefs.h and oct-types.h
John W. Eaton <jwe@octave.org>
parents:
9645
diff
changeset
|
2808 #define OCTINTERP_API OCTAVE_IMPORT |
11844593875a
eliminate oct-dlldefs.h and oct-types.h
John W. Eaton <jwe@octave.org>
parents:
9645
diff
changeset
|
2809 #endif |
11844593875a
eliminate oct-dlldefs.h and oct-types.h
John W. Eaton <jwe@octave.org>
parents:
9645
diff
changeset
|
2810 |
11844593875a
eliminate oct-dlldefs.h and oct-types.h
John W. Eaton <jwe@octave.org>
parents:
9645
diff
changeset
|
2811 /* API macro for src/graphics */ |
11844593875a
eliminate oct-dlldefs.h and oct-types.h
John W. Eaton <jwe@octave.org>
parents:
9645
diff
changeset
|
2812 #ifdef OCTGRAPHICS_DLL |
11844593875a
eliminate oct-dlldefs.h and oct-types.h
John W. Eaton <jwe@octave.org>
parents:
9645
diff
changeset
|
2813 #define OCTGRAPHICS_API OCTAVE_EXPORT |
11844593875a
eliminate oct-dlldefs.h and oct-types.h
John W. Eaton <jwe@octave.org>
parents:
9645
diff
changeset
|
2814 #else |
11844593875a
eliminate oct-dlldefs.h and oct-types.h
John W. Eaton <jwe@octave.org>
parents:
9645
diff
changeset
|
2815 #define OCTGRAPHICS_API OCTAVE_IMPORT |
11844593875a
eliminate oct-dlldefs.h and oct-types.h
John W. Eaton <jwe@octave.org>
parents:
9645
diff
changeset
|
2816 #endif |
11844593875a
eliminate oct-dlldefs.h and oct-types.h
John W. Eaton <jwe@octave.org>
parents:
9645
diff
changeset
|
2817 |
11844593875a
eliminate oct-dlldefs.h and oct-types.h
John W. Eaton <jwe@octave.org>
parents:
9645
diff
changeset
|
2818 /* oct-types.h */ |
11844593875a
eliminate oct-dlldefs.h and oct-types.h
John W. Eaton <jwe@octave.org>
parents:
9645
diff
changeset
|
2819 |
11844593875a
eliminate oct-dlldefs.h and oct-types.h
John W. Eaton <jwe@octave.org>
parents:
9645
diff
changeset
|
2820 typedef OCTAVE_IDX_TYPE octave_idx_type; |
11844593875a
eliminate oct-dlldefs.h and oct-types.h
John W. Eaton <jwe@octave.org>
parents:
9645
diff
changeset
|
2821 |
11844593875a
eliminate oct-dlldefs.h and oct-types.h
John W. Eaton <jwe@octave.org>
parents:
9645
diff
changeset
|
2822 #include <stdint.h> |
13985
43cc49c7abd1
Use thread-safe atomic reference counting (GCC and MSVC).
Michael Goffioul <michael.goffioul@gmail.com>
parents:
13838
diff
changeset
|
2823 |
15063
36cbcc37fdb8
Refactor configure.ac to make it more understandable.
Rik <rik@octave.org>
parents:
15059
diff
changeset
|
2824 /* Tag indicating Octave config.h has been included */ |
13985
43cc49c7abd1
Use thread-safe atomic reference counting (GCC and MSVC).
Michael Goffioul <michael.goffioul@gmail.com>
parents:
13838
diff
changeset
|
2825 #define OCTAVE_CONFIG_INCLUDED 1 |
3923 | 2826 ]) |
2827 | |
869 | 2828 ### Do the substitutions in all the Makefiles. |
2829 | |
8850
538184c540a9
Add make target "configfiles" to automatically regenerate configuration files
Thorsten Meyer <thorsten.meyier@gmx.de>
parents:
8849
diff
changeset
|
2830 AC_SUBST(ac_config_files) |
9645 | 2831 AC_SUBST(ac_config_headers) |
8850
538184c540a9
Add make target "configfiles" to automatically regenerate configuration files
Thorsten Meyer <thorsten.meyier@gmx.de>
parents:
8849
diff
changeset
|
2832 |
9794
0d4613a736e9
convert build system to use automake and libtool
John W. Eaton <jwe@octave.org>
parents:
9787
diff
changeset
|
2833 AC_CONFIG_FILES([ |
0d4613a736e9
convert build system to use automake and libtool
John W. Eaton <jwe@octave.org>
parents:
9787
diff
changeset
|
2834 Makefile |
0d4613a736e9
convert build system to use automake and libtool
John W. Eaton <jwe@octave.org>
parents:
9787
diff
changeset
|
2835 doc/Makefile |
0d4613a736e9
convert build system to use automake and libtool
John W. Eaton <jwe@octave.org>
parents:
9787
diff
changeset
|
2836 doc/faq/Makefile |
12336
af2b18354a8e
Add new Octave O logo to Mercurial and build process.
Rik <octave@nomad.inbox5.com>
parents:
12218
diff
changeset
|
2837 doc/icons/Makefile |
9794
0d4613a736e9
convert build system to use automake and libtool
John W. Eaton <jwe@octave.org>
parents:
9787
diff
changeset
|
2838 doc/interpreter/Makefile |
0d4613a736e9
convert build system to use automake and libtool
John W. Eaton <jwe@octave.org>
parents:
9787
diff
changeset
|
2839 doc/liboctave/Makefile |
0d4613a736e9
convert build system to use automake and libtool
John W. Eaton <jwe@octave.org>
parents:
9787
diff
changeset
|
2840 doc/refcard/Makefile |
0d4613a736e9
convert build system to use automake and libtool
John W. Eaton <jwe@octave.org>
parents:
9787
diff
changeset
|
2841 examples/Makefile |
15110
4f6e058e4161
Integrate GUI building with regular octave build system.
Michael Goffioul <michael.goffioul@gmail.com>
parents:
15093
diff
changeset
|
2842 gui/Makefile |
4f6e058e4161
Integrate GUI building with regular octave build system.
Michael Goffioul <michael.goffioul@gmail.com>
parents:
15093
diff
changeset
|
2843 gui/src/Makefile |
9794
0d4613a736e9
convert build system to use automake and libtool
John W. Eaton <jwe@octave.org>
parents:
9787
diff
changeset
|
2844 libcruft/Makefile |
9817
932b0efeb81b
restore rules to create libcruft/cruft.def
John W. Eaton <jwe@octave.org>
parents:
9804
diff
changeset
|
2845 libcruft/mkf77def |
9946 | 2846 libgnu/Makefile |
9794
0d4613a736e9
convert build system to use automake and libtool
John W. Eaton <jwe@octave.org>
parents:
9787
diff
changeset
|
2847 liboctave/Makefile |
0d4613a736e9
convert build system to use automake and libtool
John W. Eaton <jwe@octave.org>
parents:
9787
diff
changeset
|
2848 scripts/Makefile |
0d4613a736e9
convert build system to use automake and libtool
John W. Eaton <jwe@octave.org>
parents:
9787
diff
changeset
|
2849 src/Makefile |
0d4613a736e9
convert build system to use automake and libtool
John W. Eaton <jwe@octave.org>
parents:
9787
diff
changeset
|
2850 test/Makefile]) |
8850
538184c540a9
Add make target "configfiles" to automatically regenerate configuration files
Thorsten Meyer <thorsten.meyier@gmx.de>
parents:
8849
diff
changeset
|
2851 |
3887 | 2852 AC_OUTPUT |
1225 | 2853 |
2854 ### Print a summary so that important information isn't missed. | |
2855 | |
5844 | 2856 AC_MSG_NOTICE([ |
1225 | 2857 |
2858 Octave is now configured for $canonical_host_type | |
2859 | |
9794
0d4613a736e9
convert build system to use automake and libtool
John W. Eaton <jwe@octave.org>
parents:
9787
diff
changeset
|
2860 Source directory: $srcdir |
0d4613a736e9
convert build system to use automake and libtool
John W. Eaton <jwe@octave.org>
parents:
9787
diff
changeset
|
2861 Installation prefix: $prefix |
0d4613a736e9
convert build system to use automake and libtool
John W. Eaton <jwe@octave.org>
parents:
9787
diff
changeset
|
2862 C compiler: $CC $XTRA_CFLAGS $WARN_CFLAGS $CFLAGS |
0d4613a736e9
convert build system to use automake and libtool
John W. Eaton <jwe@octave.org>
parents:
9787
diff
changeset
|
2863 C++ compiler: $CXX $XTRA_CXXFLAGS $WARN_CXXFLAGS $CXXFLAGS |
0d4613a736e9
convert build system to use automake and libtool
John W. Eaton <jwe@octave.org>
parents:
9787
diff
changeset
|
2864 Fortran compiler: $F77 $FFLAGS |
0d4613a736e9
convert build system to use automake and libtool
John W. Eaton <jwe@octave.org>
parents:
9787
diff
changeset
|
2865 Fortran libraries: $FLIBS |
0d4613a736e9
convert build system to use automake and libtool
John W. Eaton <jwe@octave.org>
parents:
9787
diff
changeset
|
2866 Lex libraries: $LEXLIB |
0d4613a736e9
convert build system to use automake and libtool
John W. Eaton <jwe@octave.org>
parents:
9787
diff
changeset
|
2867 LIBS: $LIBS |
9519
ee99f9f37505
improve configure checks for qhull and curl libs
John W. Eaton <jwe@octave.org>
parents:
9515
diff
changeset
|
2868 |
9794
0d4613a736e9
convert build system to use automake and libtool
John W. Eaton <jwe@octave.org>
parents:
9787
diff
changeset
|
2869 AMD CPPFLAGS: $AMD_CPPFLAGS |
0d4613a736e9
convert build system to use automake and libtool
John W. Eaton <jwe@octave.org>
parents:
9787
diff
changeset
|
2870 AMD LDFLAGS: $AMD_LDFLAGS |
0d4613a736e9
convert build system to use automake and libtool
John W. Eaton <jwe@octave.org>
parents:
9787
diff
changeset
|
2871 AMD libraries: $AMD_LIBS |
14144
834df9f10963
remove ARPACK files from sources and restore configure checks for external ARPACK library
John W. Eaton <jwe@octave.org>
parents:
14138
diff
changeset
|
2872 ARPACK CPPFLAGS: $ARPACK_CPPFLAGS |
834df9f10963
remove ARPACK files from sources and restore configure checks for external ARPACK library
John W. Eaton <jwe@octave.org>
parents:
14138
diff
changeset
|
2873 ARPACK LDFLAGS: $ARPACK_LDFLAGS |
834df9f10963
remove ARPACK files from sources and restore configure checks for external ARPACK library
John W. Eaton <jwe@octave.org>
parents:
14138
diff
changeset
|
2874 ARPACK libraries: $ARPACK_LIBS |
9794
0d4613a736e9
convert build system to use automake and libtool
John W. Eaton <jwe@octave.org>
parents:
9787
diff
changeset
|
2875 BLAS libraries: $BLAS_LIBS |
0d4613a736e9
convert build system to use automake and libtool
John W. Eaton <jwe@octave.org>
parents:
9787
diff
changeset
|
2876 CAMD CPPFLAGS: $CAMD_CPPFLAGS |
0d4613a736e9
convert build system to use automake and libtool
John W. Eaton <jwe@octave.org>
parents:
9787
diff
changeset
|
2877 CAMD LDFLAGS: $CAMD_LDFLAGS |
0d4613a736e9
convert build system to use automake and libtool
John W. Eaton <jwe@octave.org>
parents:
9787
diff
changeset
|
2878 CAMD libraries: $CAMD_LIBS |
0d4613a736e9
convert build system to use automake and libtool
John W. Eaton <jwe@octave.org>
parents:
9787
diff
changeset
|
2879 CARBON libraries: $CARBON_LIBS |
0d4613a736e9
convert build system to use automake and libtool
John W. Eaton <jwe@octave.org>
parents:
9787
diff
changeset
|
2880 CCOLAMD CPPFLAGS: $CCOLAMD_CPPFLAGS |
0d4613a736e9
convert build system to use automake and libtool
John W. Eaton <jwe@octave.org>
parents:
9787
diff
changeset
|
2881 CCOLAMD LDFLAGS: $CCOLAMD_LDFLAGS |
0d4613a736e9
convert build system to use automake and libtool
John W. Eaton <jwe@octave.org>
parents:
9787
diff
changeset
|
2882 CCOLAMD libraries: $CCOLAMD_LIBS |
0d4613a736e9
convert build system to use automake and libtool
John W. Eaton <jwe@octave.org>
parents:
9787
diff
changeset
|
2883 CHOLMOD CPPFLAGS: $CHOLMOD_CPPFLAGS |
0d4613a736e9
convert build system to use automake and libtool
John W. Eaton <jwe@octave.org>
parents:
9787
diff
changeset
|
2884 CHOLMOD LDFLAGS: $CHOLMOD_LDFLAGS |
0d4613a736e9
convert build system to use automake and libtool
John W. Eaton <jwe@octave.org>
parents:
9787
diff
changeset
|
2885 CHOLMOD libraries: $CHOLMOD_LIBS |
0d4613a736e9
convert build system to use automake and libtool
John W. Eaton <jwe@octave.org>
parents:
9787
diff
changeset
|
2886 COLAMD CPPFLAGS: $COLAMD_CPPFLAGS |
0d4613a736e9
convert build system to use automake and libtool
John W. Eaton <jwe@octave.org>
parents:
9787
diff
changeset
|
2887 COLAMD LDFLAGS: $COLAMD_LDFLAGS |
0d4613a736e9
convert build system to use automake and libtool
John W. Eaton <jwe@octave.org>
parents:
9787
diff
changeset
|
2888 COLAMD libraries: $COLAMD_LIBS |
0d4613a736e9
convert build system to use automake and libtool
John W. Eaton <jwe@octave.org>
parents:
9787
diff
changeset
|
2889 CURL CPPFLAGS: $CURL_CPPFLAGS |
0d4613a736e9
convert build system to use automake and libtool
John W. Eaton <jwe@octave.org>
parents:
9787
diff
changeset
|
2890 CURL LDFLAGS: $CURL_LDFLAGS |
0d4613a736e9
convert build system to use automake and libtool
John W. Eaton <jwe@octave.org>
parents:
9787
diff
changeset
|
2891 CURL libraries: $CURL_LIBS |
0d4613a736e9
convert build system to use automake and libtool
John W. Eaton <jwe@octave.org>
parents:
9787
diff
changeset
|
2892 CXSPARSE CPPFLAGS: $CXSPARSE_CPPFLAGS |
0d4613a736e9
convert build system to use automake and libtool
John W. Eaton <jwe@octave.org>
parents:
9787
diff
changeset
|
2893 CXSPARSE LDFLAGS: $CXSPARSE_LDFLAGS |
0d4613a736e9
convert build system to use automake and libtool
John W. Eaton <jwe@octave.org>
parents:
9787
diff
changeset
|
2894 CXSPARSE libraries: $CXSPARSE_LIBS |
0d4613a736e9
convert build system to use automake and libtool
John W. Eaton <jwe@octave.org>
parents:
9787
diff
changeset
|
2895 DL libraries: $DL_LIBS |
0d4613a736e9
convert build system to use automake and libtool
John W. Eaton <jwe@octave.org>
parents:
9787
diff
changeset
|
2896 FFTW3 CPPFLAGS: $FFTW3_CPPFLAGS |
0d4613a736e9
convert build system to use automake and libtool
John W. Eaton <jwe@octave.org>
parents:
9787
diff
changeset
|
2897 FFTW3 LDFLAGS: $FFTW3_LDFLAGS |
0d4613a736e9
convert build system to use automake and libtool
John W. Eaton <jwe@octave.org>
parents:
9787
diff
changeset
|
2898 FFTW3 libraries: $FFTW3_LIBS |
0d4613a736e9
convert build system to use automake and libtool
John W. Eaton <jwe@octave.org>
parents:
9787
diff
changeset
|
2899 FFTW3F CPPFLAGS: $FFTW3F_CPPFLAGS |
0d4613a736e9
convert build system to use automake and libtool
John W. Eaton <jwe@octave.org>
parents:
9787
diff
changeset
|
2900 FFTW3F LDFLAGS: $FFTW3F_LDFLAGS |
0d4613a736e9
convert build system to use automake and libtool
John W. Eaton <jwe@octave.org>
parents:
9787
diff
changeset
|
2901 FFTW3F libraries: $FFTW3F_LIBS |
9846
1d90fc211872
configure.ac: report freetype, fontconfig, and fltk cflags and libs info
John W. Eaton <jwe@octave.org>
parents:
9845
diff
changeset
|
2902 fontconfig CFLAGS: $FONTCONFIG_CFLAGS |
15012
a25937adede9
configure.ac: consistency on output (using the same word for the same thing)
Carnë Draug <carandraug+dev@gmail.com>
parents:
15001
diff
changeset
|
2903 fontconfig libraries: $FONTCONFIG_LIBS |
a25937adede9
configure.ac: consistency on output (using the same word for the same thing)
Carnë Draug <carandraug+dev@gmail.com>
parents:
15001
diff
changeset
|
2904 FreeType2 CFLAGS: $FT2_CFLAGS |
a25937adede9
configure.ac: consistency on output (using the same word for the same thing)
Carnë Draug <carandraug+dev@gmail.com>
parents:
15001
diff
changeset
|
2905 FreeType2 libraries: $FT2_LIBS |
9794
0d4613a736e9
convert build system to use automake and libtool
John W. Eaton <jwe@octave.org>
parents:
9787
diff
changeset
|
2906 GLPK CPPFLAGS: $GLPK_CPPFLAGS |
0d4613a736e9
convert build system to use automake and libtool
John W. Eaton <jwe@octave.org>
parents:
9787
diff
changeset
|
2907 GLPK LDFLAGS: $GLPK_LDFLAGS |
0d4613a736e9
convert build system to use automake and libtool
John W. Eaton <jwe@octave.org>
parents:
9787
diff
changeset
|
2908 GLPK libraries: $GLPK_LIBS |
9846
1d90fc211872
configure.ac: report freetype, fontconfig, and fltk cflags and libs info
John W. Eaton <jwe@octave.org>
parents:
9845
diff
changeset
|
2909 graphics CFLAGS: $GRAPHICS_CFLAGS |
15012
a25937adede9
configure.ac: consistency on output (using the same word for the same thing)
Carnë Draug <carandraug+dev@gmail.com>
parents:
15001
diff
changeset
|
2910 graphics libraries: $GRAPHICS_LIBS |
9794
0d4613a736e9
convert build system to use automake and libtool
John W. Eaton <jwe@octave.org>
parents:
9787
diff
changeset
|
2911 HDF5 CPPFLAGS: $HDF5_CPPFLAGS |
0d4613a736e9
convert build system to use automake and libtool
John W. Eaton <jwe@octave.org>
parents:
9787
diff
changeset
|
2912 HDF5 LDFLAGS: $HDF5_LDFLAGS |
0d4613a736e9
convert build system to use automake and libtool
John W. Eaton <jwe@octave.org>
parents:
9787
diff
changeset
|
2913 HDF5 libraries: $HDF5_LIBS |
0d4613a736e9
convert build system to use automake and libtool
John W. Eaton <jwe@octave.org>
parents:
9787
diff
changeset
|
2914 LAPACK libraries: $LAPACK_LIBS |
15063
36cbcc37fdb8
Refactor configure.ac to make it more understandable.
Rik <rik@octave.org>
parents:
15059
diff
changeset
|
2915 LLVM CPPFLAGS: $LLVM_CPPFLAGS |
36cbcc37fdb8
Refactor configure.ac to make it more understandable.
Rik <rik@octave.org>
parents:
15059
diff
changeset
|
2916 LLVM LDFLAGS: $LLVM_LDFLAGS |
36cbcc37fdb8
Refactor configure.ac to make it more understandable.
Rik <rik@octave.org>
parents:
15059
diff
changeset
|
2917 LLVM libraries: $LLVM_LIBS |
36cbcc37fdb8
Refactor configure.ac to make it more understandable.
Rik <rik@octave.org>
parents:
15059
diff
changeset
|
2918 Magick++ CPPFLAGS: $MAGICK_CPPFLAGS |
36cbcc37fdb8
Refactor configure.ac to make it more understandable.
Rik <rik@octave.org>
parents:
15059
diff
changeset
|
2919 Magick++ LDFLAGS: $MAGICK_LDFLAGS |
36cbcc37fdb8
Refactor configure.ac to make it more understandable.
Rik <rik@octave.org>
parents:
15059
diff
changeset
|
2920 Magick++ libraries: $MAGICK_LIBS |
9794
0d4613a736e9
convert build system to use automake and libtool
John W. Eaton <jwe@octave.org>
parents:
9787
diff
changeset
|
2921 OPENGL libraries: $OPENGL_LIBS |
0d4613a736e9
convert build system to use automake and libtool
John W. Eaton <jwe@octave.org>
parents:
9787
diff
changeset
|
2922 PTHREAD flags: $PTHREAD_CFLAGS |
0d4613a736e9
convert build system to use automake and libtool
John W. Eaton <jwe@octave.org>
parents:
9787
diff
changeset
|
2923 PTHREAD libraries: $PTHREAD_LIBS |
0d4613a736e9
convert build system to use automake and libtool
John W. Eaton <jwe@octave.org>
parents:
9787
diff
changeset
|
2924 QHULL CPPFLAGS: $QHULL_CPPFLAGS |
0d4613a736e9
convert build system to use automake and libtool
John W. Eaton <jwe@octave.org>
parents:
9787
diff
changeset
|
2925 QHULL LDFLAGS: $QHULL_LDFLAGS |
0d4613a736e9
convert build system to use automake and libtool
John W. Eaton <jwe@octave.org>
parents:
9787
diff
changeset
|
2926 QHULL libraries: $QHULL_LIBS |
0d4613a736e9
convert build system to use automake and libtool
John W. Eaton <jwe@octave.org>
parents:
9787
diff
changeset
|
2927 QRUPDATE libraries: $QRUPDATE_LIBS |
0d4613a736e9
convert build system to use automake and libtool
John W. Eaton <jwe@octave.org>
parents:
9787
diff
changeset
|
2928 READLINE libraries: $READLINE_LIBS |
0d4613a736e9
convert build system to use automake and libtool
John W. Eaton <jwe@octave.org>
parents:
9787
diff
changeset
|
2929 REGEX libraries: $REGEX_LIBS |
0d4613a736e9
convert build system to use automake and libtool
John W. Eaton <jwe@octave.org>
parents:
9787
diff
changeset
|
2930 TERM libraries: $TERM_LIBS |
0d4613a736e9
convert build system to use automake and libtool
John W. Eaton <jwe@octave.org>
parents:
9787
diff
changeset
|
2931 UMFPACK libraries: $UMFPACK_LIBS |
0d4613a736e9
convert build system to use automake and libtool
John W. Eaton <jwe@octave.org>
parents:
9787
diff
changeset
|
2932 X11 include flags: $X11_INCFLAGS |
0d4613a736e9
convert build system to use automake and libtool
John W. Eaton <jwe@octave.org>
parents:
9787
diff
changeset
|
2933 X11 libraries: $X11_LIBS |
0d4613a736e9
convert build system to use automake and libtool
John W. Eaton <jwe@octave.org>
parents:
9787
diff
changeset
|
2934 Z CPPFLAGS: $Z_CPPFLAGS |
0d4613a736e9
convert build system to use automake and libtool
John W. Eaton <jwe@octave.org>
parents:
9787
diff
changeset
|
2935 Z LDFLAGS: $Z_LDFLAGS |
0d4613a736e9
convert build system to use automake and libtool
John W. Eaton <jwe@octave.org>
parents:
9787
diff
changeset
|
2936 Z libraries: $Z_LIBS |
9519
ee99f9f37505
improve configure checks for qhull and curl libs
John W. Eaton <jwe@octave.org>
parents:
9515
diff
changeset
|
2937 |
9794
0d4613a736e9
convert build system to use automake and libtool
John W. Eaton <jwe@octave.org>
parents:
9787
diff
changeset
|
2938 Default pager: $DEFAULT_PAGER |
0d4613a736e9
convert build system to use automake and libtool
John W. Eaton <jwe@octave.org>
parents:
9787
diff
changeset
|
2939 gnuplot: $GNUPLOT |
1664 | 2940 |
4110 | 2941 Do internal array bounds checking: $BOUNDS_CHECKING |
13838
a35d381e22b0
make octave_allocator optional and disable by default
John W. Eaton <jwe@octave.org>
parents:
13745
diff
changeset
|
2942 Use octave_allocator: $USE_OCTAVE_ALLOCATOR |
4110 | 2943 Build static libraries: $STATIC_LIBS |
2944 Build shared libraries: $SHARED_LIBS | |
4128 | 2945 Dynamic Linking: $ENABLE_DYNAMIC_LINKING $DL_API_MSG |
4110 | 2946 Include support for GNU readline: $USE_READLINE |
5275 | 2947 64-bit array dims and indexing: $USE_64_BIT_IDX_T |
1225 | 2948 ]) |
3105 | 2949 |
2950 warn_msg_printed=false | |
2951 | |
14605
28e53daab1f8
Cleanup on autoconf warnings
Jordi Gutiérrez Hermoso <jordigh@octave.org>
parents:
14579
diff
changeset
|
2952 OCTAVE_CONFIGURE_WARNING_SUMMARY |
28e53daab1f8
Cleanup on autoconf warnings
Jordi Gutiérrez Hermoso <jordigh@octave.org>
parents:
14579
diff
changeset
|
2953 |
4469 | 2954 if $ENABLE_DYNAMIC_LINKING; then |
2955 if $SHARED_LIBS; then | |
2956 true | |
2957 else | |
2958 AC_MSG_WARN([You used --enable-dl but not --enable-shared.]) | |
2959 AC_MSG_WARN([Are you sure that is what you want to do?]) | |
2960 warn_msg_printed=true | |
2961 fi | |
2962 fi | |
2963 | |
5857 | 2964 if $USE_64_BIT_IDX_T; then |
6161 | 2965 AC_MSG_WARN([]) |
5857 | 2966 AC_MSG_WARN([You used the EXPERIMENTAL --enable-64 option.]) |
2967 AC_MSG_WARN([Are you sure that is what you want to do?]) | |
2968 AC_MSG_WARN([]) | |
10331
6a50aa2cdf00
never compile ranlib with 8-byte integers
John W. Eaton <jwe@octave.org>
parents:
10266
diff
changeset
|
2969 AC_MSG_WARN([Your Fortran compiler must have an option to generate]) |
6a50aa2cdf00
never compile ranlib with 8-byte integers
John W. Eaton <jwe@octave.org>
parents:
10266
diff
changeset
|
2970 AC_MSG_WARN([code with 8 byte signed INTEGER values. This option]) |
6a50aa2cdf00
never compile ranlib with 8-byte integers
John W. Eaton <jwe@octave.org>
parents:
10266
diff
changeset
|
2971 AC_MSG_WARN([should be specified in the F77_INTEGER_8_FLAG variable]) |
6a50aa2cdf00
never compile ranlib with 8-byte integers
John W. Eaton <jwe@octave.org>
parents:
10266
diff
changeset
|
2972 AC_MSG_WARN([Make. This should work automatically for gfortran. If]) |
6a50aa2cdf00
never compile ranlib with 8-byte integers
John W. Eaton <jwe@octave.org>
parents:
10266
diff
changeset
|
2973 AC_MSG_WARN([you use another compiler, you will need to set this]) |
6a50aa2cdf00
never compile ranlib with 8-byte integers
John W. Eaton <jwe@octave.org>
parents:
10266
diff
changeset
|
2974 AC_MSG_WARN([variable on the configure command line. You must also]) |
14144
834df9f10963
remove ARPACK files from sources and restore configure checks for external ARPACK library
John W. Eaton <jwe@octave.org>
parents:
14138
diff
changeset
|
2975 AC_MSG_WARN([compile the ARPACK, BLAS, LAPACK, QRUPDATE, and SuiteSparse]) |
10331
6a50aa2cdf00
never compile ranlib with 8-byte integers
John W. Eaton <jwe@octave.org>
parents:
10266
diff
changeset
|
2976 AC_MSG_WARN([libraries to use 8 byte signed integers for array indexing.]) |
6161 | 2977 AC_MSG_WARN([]) |
5857 | 2978 warn_msg_printed=true |
3105 | 2979 fi |
2980 | |
10471
bcabc1c4f20c
Add detection of OpenMP support to configure. Disabled by default
David Bateman <dbateman@free.fr>
parents:
10456
diff
changeset
|
2981 if $USE_OPENMP; then |
bcabc1c4f20c
Add detection of OpenMP support to configure. Disabled by default
David Bateman <dbateman@free.fr>
parents:
10456
diff
changeset
|
2982 AC_MSG_WARN([]) |
bcabc1c4f20c
Add detection of OpenMP support to configure. Disabled by default
David Bateman <dbateman@free.fr>
parents:
10456
diff
changeset
|
2983 AC_MSG_WARN([You used the EXPERIMENTAL --enable-openmp option.]) |
bcabc1c4f20c
Add detection of OpenMP support to configure. Disabled by default
David Bateman <dbateman@free.fr>
parents:
10456
diff
changeset
|
2984 AC_MSG_WARN([Are you sure that is what you want to do?]) |
bcabc1c4f20c
Add detection of OpenMP support to configure. Disabled by default
David Bateman <dbateman@free.fr>
parents:
10456
diff
changeset
|
2985 AC_MSG_WARN([]) |
bcabc1c4f20c
Add detection of OpenMP support to configure. Disabled by default
David Bateman <dbateman@free.fr>
parents:
10456
diff
changeset
|
2986 AC_MSG_WARN([This option enables experimental SMP multithreding]) |
15063
36cbcc37fdb8
Refactor configure.ac to make it more understandable.
Rik <rik@octave.org>
parents:
15059
diff
changeset
|
2987 AC_MSG_WARN([code that has had very little testing. There is no]) |
10471
bcabc1c4f20c
Add detection of OpenMP support to configure. Disabled by default
David Bateman <dbateman@free.fr>
parents:
10456
diff
changeset
|
2988 AC_MSG_WARN([certainity that the results returned by Octave with]) |
bcabc1c4f20c
Add detection of OpenMP support to configure. Disabled by default
David Bateman <dbateman@free.fr>
parents:
10456
diff
changeset
|
2989 AC_MSG_WARN([this option enabled will be correct.]) |
bcabc1c4f20c
Add detection of OpenMP support to configure. Disabled by default
David Bateman <dbateman@free.fr>
parents:
10456
diff
changeset
|
2990 AC_MSG_WARN([]) |
bcabc1c4f20c
Add detection of OpenMP support to configure. Disabled by default
David Bateman <dbateman@free.fr>
parents:
10456
diff
changeset
|
2991 warn_msg_printed=true |
bcabc1c4f20c
Add detection of OpenMP support to configure. Disabled by default
David Bateman <dbateman@free.fr>
parents:
10456
diff
changeset
|
2992 fi |
bcabc1c4f20c
Add detection of OpenMP support to configure. Disabled by default
David Bateman <dbateman@free.fr>
parents:
10456
diff
changeset
|
2993 |
7944
c2449e91f50a
configure.in: fix FTGL test to handle either FTGL/ftgl.h or ftgl.h
John W. Eaton <jwe@octave.org>
parents:
7937
diff
changeset
|
2994 if $native_graphics; then |
c2449e91f50a
configure.in: fix FTGL test to handle either FTGL/ftgl.h or ftgl.h
John W. Eaton <jwe@octave.org>
parents:
7937
diff
changeset
|
2995 true; |
c2449e91f50a
configure.in: fix FTGL test to handle either FTGL/ftgl.h or ftgl.h
John W. Eaton <jwe@octave.org>
parents:
7937
diff
changeset
|
2996 else |
7834
caab78e7e377
added checks for fltk & freetype in configure script
Shai Ayal <shaiay@sourceforge.net>
parents:
7825
diff
changeset
|
2997 AC_MSG_WARN([]) |
caab78e7e377
added checks for fltk & freetype in configure script
Shai Ayal <shaiay@sourceforge.net>
parents:
7825
diff
changeset
|
2998 AC_MSG_WARN([I didn't find the necessary libraries to compile native]) |
10011
411325ce32d7
Better warnings when gnuplot is not installed but native graphics are available
Rik <rdrider0-list@yahoo.com>
parents:
10004
diff
changeset
|
2999 AC_MSG_WARN([graphics. It isn't necessary to have native graphics,]) |
411325ce32d7
Better warnings when gnuplot is not installed but native graphics are available
Rik <rdrider0-list@yahoo.com>
parents:
10004
diff
changeset
|
3000 AC_MSG_WARN([but you will need to have gnuplot installed or you won't]) |
411325ce32d7
Better warnings when gnuplot is not installed but native graphics are available
Rik <rdrider0-list@yahoo.com>
parents:
10004
diff
changeset
|
3001 AC_MSG_WARN([be able to use any of Octave's plotting commands]) |
7834
caab78e7e377
added checks for fltk & freetype in configure script
Shai Ayal <shaiay@sourceforge.net>
parents:
7825
diff
changeset
|
3002 AC_MSG_WARN([]) |
caab78e7e377
added checks for fltk & freetype in configure script
Shai Ayal <shaiay@sourceforge.net>
parents:
7825
diff
changeset
|
3003 warn_msg_printed=true |
caab78e7e377
added checks for fltk & freetype in configure script
Shai Ayal <shaiay@sourceforge.net>
parents:
7825
diff
changeset
|
3004 fi |
caab78e7e377
added checks for fltk & freetype in configure script
Shai Ayal <shaiay@sourceforge.net>
parents:
7825
diff
changeset
|
3005 |
10011
411325ce32d7
Better warnings when gnuplot is not installed but native graphics are available
Rik <rdrider0-list@yahoo.com>
parents:
10004
diff
changeset
|
3006 if test -n "$warn_gnuplot"; then |
411325ce32d7
Better warnings when gnuplot is not installed but native graphics are available
Rik <rdrider0-list@yahoo.com>
parents:
10004
diff
changeset
|
3007 if $native_graphics; then |
411325ce32d7
Better warnings when gnuplot is not installed but native graphics are available
Rik <rdrider0-list@yahoo.com>
parents:
10004
diff
changeset
|
3008 AC_MSG_WARN([]) |
411325ce32d7
Better warnings when gnuplot is not installed but native graphics are available
Rik <rdrider0-list@yahoo.com>
parents:
10004
diff
changeset
|
3009 AC_MSG_WARN([I didn't find gnuplot. Plotting commands will use the]) |
11576
8ac9687dbe9f
rename backend to graphics_toolkit
John W. Eaton <jwe@octave.org>
parents:
11542
diff
changeset
|
3010 AC_MSG_WARN([native graphics toolkit.]) |
10011
411325ce32d7
Better warnings when gnuplot is not installed but native graphics are available
Rik <rdrider0-list@yahoo.com>
parents:
10004
diff
changeset
|
3011 else |
411325ce32d7
Better warnings when gnuplot is not installed but native graphics are available
Rik <rdrider0-list@yahoo.com>
parents:
10004
diff
changeset
|
3012 AC_MSG_WARN([I didn't find gnuplot. It isn't necessary to have gnuplot]) |
411325ce32d7
Better warnings when gnuplot is not installed but native graphics are available
Rik <rdrider0-list@yahoo.com>
parents:
10004
diff
changeset
|
3013 AC_MSG_WARN([installed, but you won't be able to use any of Octave's]) |
411325ce32d7
Better warnings when gnuplot is not installed but native graphics are available
Rik <rdrider0-list@yahoo.com>
parents:
10004
diff
changeset
|
3014 AC_MSG_WARN([plotting commands without it.]) |
411325ce32d7
Better warnings when gnuplot is not installed but native graphics are available
Rik <rdrider0-list@yahoo.com>
parents:
10004
diff
changeset
|
3015 fi |
411325ce32d7
Better warnings when gnuplot is not installed but native graphics are available
Rik <rdrider0-list@yahoo.com>
parents:
10004
diff
changeset
|
3016 AC_MSG_WARN([]) |
411325ce32d7
Better warnings when gnuplot is not installed but native graphics are available
Rik <rdrider0-list@yahoo.com>
parents:
10004
diff
changeset
|
3017 AC_MSG_WARN([If gnuplot is installed, but isn't in your path, you can]) |
411325ce32d7
Better warnings when gnuplot is not installed but native graphics are available
Rik <rdrider0-list@yahoo.com>
parents:
10004
diff
changeset
|
3018 AC_MSG_WARN([tell Octave where to find it by using the gnuplot_binary]) |
411325ce32d7
Better warnings when gnuplot is not installed but native graphics are available
Rik <rdrider0-list@yahoo.com>
parents:
10004
diff
changeset
|
3019 AC_MSG_WARN([function. For example,]) |
411325ce32d7
Better warnings when gnuplot is not installed but native graphics are available
Rik <rdrider0-list@yahoo.com>
parents:
10004
diff
changeset
|
3020 AC_MSG_WARN([]) |
411325ce32d7
Better warnings when gnuplot is not installed but native graphics are available
Rik <rdrider0-list@yahoo.com>
parents:
10004
diff
changeset
|
3021 AC_MSG_WARN([gnuplot_binary ("/full/path/and/name/of/gnuplot/binary")]) |
411325ce32d7
Better warnings when gnuplot is not installed but native graphics are available
Rik <rdrider0-list@yahoo.com>
parents:
10004
diff
changeset
|
3022 AC_MSG_WARN([]) |
411325ce32d7
Better warnings when gnuplot is not installed but native graphics are available
Rik <rdrider0-list@yahoo.com>
parents:
10004
diff
changeset
|
3023 AC_MSG_WARN([at the Octave prompt.]) |
411325ce32d7
Better warnings when gnuplot is not installed but native graphics are available
Rik <rdrider0-list@yahoo.com>
parents:
10004
diff
changeset
|
3024 AC_MSG_WARN([]) |
411325ce32d7
Better warnings when gnuplot is not installed but native graphics are available
Rik <rdrider0-list@yahoo.com>
parents:
10004
diff
changeset
|
3025 AC_MSG_WARN([Setting default value to $GNUPLOT]) |
411325ce32d7
Better warnings when gnuplot is not installed but native graphics are available
Rik <rdrider0-list@yahoo.com>
parents:
10004
diff
changeset
|
3026 AC_MSG_WARN([]) |
411325ce32d7
Better warnings when gnuplot is not installed but native graphics are available
Rik <rdrider0-list@yahoo.com>
parents:
10004
diff
changeset
|
3027 |
411325ce32d7
Better warnings when gnuplot is not installed but native graphics are available
Rik <rdrider0-list@yahoo.com>
parents:
10004
diff
changeset
|
3028 warn_msg_printed=true |
411325ce32d7
Better warnings when gnuplot is not installed but native graphics are available
Rik <rdrider0-list@yahoo.com>
parents:
10004
diff
changeset
|
3029 fi |
411325ce32d7
Better warnings when gnuplot is not installed but native graphics are available
Rik <rdrider0-list@yahoo.com>
parents:
10004
diff
changeset
|
3030 |
13985
43cc49c7abd1
Use thread-safe atomic reference counting (GCC and MSVC).
Michael Goffioul <michael.goffioul@gmail.com>
parents:
13838
diff
changeset
|
3031 if $USE_ATOMIC_REFCOUNT; then |
43cc49c7abd1
Use thread-safe atomic reference counting (GCC and MSVC).
Michael Goffioul <michael.goffioul@gmail.com>
parents:
13838
diff
changeset
|
3032 AC_MSG_WARN([]) |
43cc49c7abd1
Use thread-safe atomic reference counting (GCC and MSVC).
Michael Goffioul <michael.goffioul@gmail.com>
parents:
13838
diff
changeset
|
3033 AC_MSG_WARN([Using atomic reference counting.]) |
15063
36cbcc37fdb8
Refactor configure.ac to make it more understandable.
Rik <rik@octave.org>
parents:
15059
diff
changeset
|
3034 AC_MSG_WARN([This feature allows access to Octave data safely from]) |
36cbcc37fdb8
Refactor configure.ac to make it more understandable.
Rik <rik@octave.org>
parents:
15059
diff
changeset
|
3035 AC_MSG_WARN([another thread, for instance from a GUI. However this]) |
36cbcc37fdb8
Refactor configure.ac to make it more understandable.
Rik <rik@octave.org>
parents:
15059
diff
changeset
|
3036 AC_MSG_WARN([results in a small performance penalty in the Octave]) |
13985
43cc49c7abd1
Use thread-safe atomic reference counting (GCC and MSVC).
Michael Goffioul <michael.goffioul@gmail.com>
parents:
13838
diff
changeset
|
3037 AC_MSG_WARN([interpreter.]) |
43cc49c7abd1
Use thread-safe atomic reference counting (GCC and MSVC).
Michael Goffioul <michael.goffioul@gmail.com>
parents:
13838
diff
changeset
|
3038 AC_MSG_WARN([]) |
43cc49c7abd1
Use thread-safe atomic reference counting (GCC and MSVC).
Michael Goffioul <michael.goffioul@gmail.com>
parents:
13838
diff
changeset
|
3039 if $USE_OCTAVE_ALLOCATOR; then |
43cc49c7abd1
Use thread-safe atomic reference counting (GCC and MSVC).
Michael Goffioul <michael.goffioul@gmail.com>
parents:
13838
diff
changeset
|
3040 AC_MSG_WARN([Thread-safe behavior is not guaranteed unless you also]) |
43cc49c7abd1
Use thread-safe atomic reference counting (GCC and MSVC).
Michael Goffioul <michael.goffioul@gmail.com>
parents:
13838
diff
changeset
|
3041 AC_MSG_WARN([disable the use of the octave_allocator class.]) |
43cc49c7abd1
Use thread-safe atomic reference counting (GCC and MSVC).
Michael Goffioul <michael.goffioul@gmail.com>
parents:
13838
diff
changeset
|
3042 AC_MSG_WARN([]) |
43cc49c7abd1
Use thread-safe atomic reference counting (GCC and MSVC).
Michael Goffioul <michael.goffioul@gmail.com>
parents:
13838
diff
changeset
|
3043 fi |
43cc49c7abd1
Use thread-safe atomic reference counting (GCC and MSVC).
Michael Goffioul <michael.goffioul@gmail.com>
parents:
13838
diff
changeset
|
3044 warn_msg_printed=true |
43cc49c7abd1
Use thread-safe atomic reference counting (GCC and MSVC).
Michael Goffioul <michael.goffioul@gmail.com>
parents:
13838
diff
changeset
|
3045 fi |
43cc49c7abd1
Use thread-safe atomic reference counting (GCC and MSVC).
Michael Goffioul <michael.goffioul@gmail.com>
parents:
13838
diff
changeset
|
3046 |
6191 | 3047 if $warn_msg_printed; then |
10003
2ea3110e15ed
Use M4 quoting for arguments to autoconf macros containing variables
Rik <rdrider0-list@yahoo.com>
parents:
9989
diff
changeset
|
3048 AC_MSG_NOTICE([]) |
14657
8a84849ad986
build: Restore printing some summary ./configure warnings at the end
Jordi Gutiérrez Hermoso <jordigh@octave.org>
parents:
14630
diff
changeset
|
3049 AC_MSG_NOTICE([NOTE: Libraries or auxiliary programs may be skipped if they are]) |
8a84849ad986
build: Restore printing some summary ./configure warnings at the end
Jordi Gutiérrez Hermoso <jordigh@octave.org>
parents:
14630
diff
changeset
|
3050 AC_MSG_NOTICE([NOTE: not found OR if they are missing required features on your]) |
8a84849ad986
build: Restore printing some summary ./configure warnings at the end
Jordi Gutiérrez Hermoso <jordigh@octave.org>
parents:
14630
diff
changeset
|
3051 AC_MSG_NOTICE([NOTE: system. ]) |
6161 | 3052 fi |
3053 | |
3105 | 3054 ### End of configure. |