annotate libinterp/build-env.in.cc @ 26603:8af641520aa9 stable

remove references to obsolete build system variables * subst-config-vals.in.sh, subst-cross-config-vals.in.sh: Remove DL_LIBS, OSMESA_CPPFLAGS, OSMESA_LDFLAGS, and OSMESA_LIBS from the list of substitutions. * build-env.h, build-env.in.cc (octave::build_env): Remove DL_LIBS, OSMESA_CPPFLAGS, OSMESA_LDFLAGS, and OSMESA_LIBS variables. * toplev.cc (F__octave_config_info__): Remove DL_LIBS, OSMESA_CPPFLAGS, OSMESA_LDFLAGS, and OSMESA_LIBS from build_environment.
author Mike Miller <mtmiller@octave.org>
date Tue, 22 Jan 2019 15:41:07 -0800
parents 00f796120a6d
children 075c4d3bf1de
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
15100
8523df595d42 maint: Add DO NOT EDIT messages to build system for src/*.in.h.
Rik <rik@octave.org>
parents: 15089
diff changeset
1 // %NO_EDIT_WARNING%
2163
8901e415035a [project @ 1996-05-13 10:35:04 by jwe]
jwe
parents:
diff changeset
2 /*
8901e415035a [project @ 1996-05-13 10:35:04 by jwe]
jwe
parents:
diff changeset
3
26376
00f796120a6d maint: Update copyright dates in all source files.
John W. Eaton <jwe@octave.org>
parents: 26229
diff changeset
4 Copyright (C) 1996-2019 John W. Eaton
2163
8901e415035a [project @ 1996-05-13 10:35:04 by jwe]
jwe
parents:
diff changeset
5
8901e415035a [project @ 1996-05-13 10:35:04 by jwe]
jwe
parents:
diff changeset
6 This file is part of Octave.
8901e415035a [project @ 1996-05-13 10:35:04 by jwe]
jwe
parents:
diff changeset
7
24534
194eb4bd202b maint: Update punctuation for GPL v3 license text.
Rik <rik@octave.org>
parents: 23990
diff changeset
8 Octave is free software: you can redistribute it and/or modify it
22755
3a2b891d0b33 maint: Standardize Copyright formatting.
Rik <rik@octave.org>
parents: 22501
diff changeset
9 under the terms of the GNU General Public License as published by
24534
194eb4bd202b maint: Update punctuation for GPL v3 license text.
Rik <rik@octave.org>
parents: 23990
diff changeset
10 the Free Software Foundation, either version 3 of the License, or
22755
3a2b891d0b33 maint: Standardize Copyright formatting.
Rik <rik@octave.org>
parents: 22501
diff changeset
11 (at your option) any later version.
2163
8901e415035a [project @ 1996-05-13 10:35:04 by jwe]
jwe
parents:
diff changeset
12
22755
3a2b891d0b33 maint: Standardize Copyright formatting.
Rik <rik@octave.org>
parents: 22501
diff changeset
13 Octave is distributed in the hope that it will be useful, but
3a2b891d0b33 maint: Standardize Copyright formatting.
Rik <rik@octave.org>
parents: 22501
diff changeset
14 WITHOUT ANY WARRANTY; without even the implied warranty of
3a2b891d0b33 maint: Standardize Copyright formatting.
Rik <rik@octave.org>
parents: 22501
diff changeset
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
3a2b891d0b33 maint: Standardize Copyright formatting.
Rik <rik@octave.org>
parents: 22501
diff changeset
16 GNU General Public License for more details.
2163
8901e415035a [project @ 1996-05-13 10:35:04 by jwe]
jwe
parents:
diff changeset
17
8901e415035a [project @ 1996-05-13 10:35:04 by jwe]
jwe
parents:
diff changeset
18 You should have received a copy of the GNU General Public License
7016
93c65f2a5668 [project @ 2007-10-12 06:40:56 by jwe]
jwe
parents: 6789
diff changeset
19 along with Octave; see the file COPYING. If not, see
24534
194eb4bd202b maint: Update punctuation for GPL v3 license text.
Rik <rik@octave.org>
parents: 23990
diff changeset
20 <https://www.gnu.org/licenses/>.
2163
8901e415035a [project @ 1996-05-13 10:35:04 by jwe]
jwe
parents:
diff changeset
21
8901e415035a [project @ 1996-05-13 10:35:04 by jwe]
jwe
parents:
diff changeset
22 */
8901e415035a [project @ 1996-05-13 10:35:04 by jwe]
jwe
parents:
diff changeset
23
21724
aba2e6293dd8 use "#if ..." consistently instead of "#ifdef" and "#ifndef"
John W. Eaton <jwe@octave.org>
parents: 21422
diff changeset
24 #if defined (HAVE_CONFIG_H)
21301
40de9f8f23a6 Use '#include "config.h"' rather than <config.h>.
Rik <rik@octave.org>
parents: 21220
diff changeset
25 # include "config.h"
9523
0ce82753dd72 more configure changes for libraries
John W. Eaton <jwe@octave.org>
parents: 9519
diff changeset
26 #endif
0ce82753dd72 more configure changes for libraries
John W. Eaton <jwe@octave.org>
parents: 9519
diff changeset
27
21220
d78e45987d6a rename octave::build_env namespace from octave::config
John W. Eaton <jwe@octave.org>
parents: 21200
diff changeset
28 #include "build-env.h"
9523
0ce82753dd72 more configure changes for libraries
John W. Eaton <jwe@octave.org>
parents: 9519
diff changeset
29
21181
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents: 21140
diff changeset
30 namespace octave
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents: 21140
diff changeset
31 {
21220
d78e45987d6a rename octave::build_env namespace from octave::config
John W. Eaton <jwe@octave.org>
parents: 21200
diff changeset
32 namespace build_env
21181
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents: 21140
diff changeset
33 {
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents: 21140
diff changeset
34 const char *AMD_CPPFLAGS = %OCTAVE_CONF_AMD_CPPFLAGS%;
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents: 21140
diff changeset
35
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents: 21140
diff changeset
36 const char *AMD_LDFLAGS = %OCTAVE_CONF_AMD_LDFLAGS%;
9542
f5ec5dc66824 use OCTAVE_CHECK_LIBRARY to check for HDF5
John W. Eaton <jwe@octave.org>
parents: 9538
diff changeset
37
21181
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents: 21140
diff changeset
38 const char *AMD_LIBS = %OCTAVE_CONF_AMD_LIBS%;
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents: 21140
diff changeset
39
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents: 21140
diff changeset
40 const char *ARFLAGS = %OCTAVE_CONF_ARFLAGS%;
9542
f5ec5dc66824 use OCTAVE_CHECK_LIBRARY to check for HDF5
John W. Eaton <jwe@octave.org>
parents: 9538
diff changeset
41
21181
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents: 21140
diff changeset
42 const char *AR = %OCTAVE_CONF_AR%;
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents: 21140
diff changeset
43
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents: 21140
diff changeset
44 const char *ARPACK_CPPFLAGS = %OCTAVE_CONF_ARPACK_CPPFLAGS%;
9514
af86991d8d47 configure tweaks
John W. Eaton <jwe@octave.org>
parents: 9187
diff changeset
45
21181
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents: 21140
diff changeset
46 const char *ARPACK_LDFLAGS = %OCTAVE_CONF_ARPACK_LDFLAGS%;
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents: 21140
diff changeset
47
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents: 21140
diff changeset
48 const char *ARPACK_LIBS = %OCTAVE_CONF_ARPACK_LIBS%;
2163
8901e415035a [project @ 1996-05-13 10:35:04 by jwe]
jwe
parents:
diff changeset
49
21181
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents: 21140
diff changeset
50 const char *BLAS_LIBS = %OCTAVE_CONF_BLAS_LIBS%;
6311
e2a1aca62551 [project @ 2007-02-15 21:18:34 by jwe]
jwe
parents: 6043
diff changeset
51
21181
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents: 21140
diff changeset
52 const char *CAMD_CPPFLAGS = %OCTAVE_CONF_CAMD_CPPFLAGS%;
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents: 21140
diff changeset
53
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents: 21140
diff changeset
54 const char *CAMD_LDFLAGS = %OCTAVE_CONF_CAMD_LDFLAGS%;
9794
0d4613a736e9 convert build system to use automake and libtool
John W. Eaton <jwe@octave.org>
parents: 9575
diff changeset
55
21181
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents: 21140
diff changeset
56 const char *CAMD_LIBS = %OCTAVE_CONF_CAMD_LIBS%;
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents: 21140
diff changeset
57
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents: 21140
diff changeset
58 const char *CARBON_LIBS = %OCTAVE_CONF_CARBON_LIBS%;
2163
8901e415035a [project @ 1996-05-13 10:35:04 by jwe]
jwe
parents:
diff changeset
59
21181
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents: 21140
diff changeset
60 const char *CC = %OCTAVE_CONF_CC%;
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents: 21140
diff changeset
61
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents: 21140
diff changeset
62 const char *CCOLAMD_CPPFLAGS = %OCTAVE_CONF_CCOLAMD_CPPFLAGS%;
3859
890a7e4c1362 [project @ 2001-11-09 17:05:08 by jwe]
jwe
parents: 3822
diff changeset
63
21181
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents: 21140
diff changeset
64 const char *CCOLAMD_LDFLAGS = %OCTAVE_CONF_CCOLAMD_LDFLAGS%;
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents: 21140
diff changeset
65
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents: 21140
diff changeset
66 const char *CCOLAMD_LIBS = %OCTAVE_CONF_CCOLAMD_LIBS%;
3584
aa31644d9779 [project @ 2000-02-07 09:24:38 by jwe]
jwe
parents: 2847
diff changeset
67
21181
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents: 21140
diff changeset
68 const char *CFLAGS = %OCTAVE_CONF_CFLAGS%;
3584
aa31644d9779 [project @ 2000-02-07 09:24:38 by jwe]
jwe
parents: 2847
diff changeset
69
21181
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents: 21140
diff changeset
70 const char *CHOLMOD_CPPFLAGS = %OCTAVE_CONF_CHOLMOD_CPPFLAGS%;
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents: 21140
diff changeset
71
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents: 21140
diff changeset
72 const char *CHOLMOD_LDFLAGS = %OCTAVE_CONF_CHOLMOD_LDFLAGS%;
2163
8901e415035a [project @ 1996-05-13 10:35:04 by jwe]
jwe
parents:
diff changeset
73
21181
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents: 21140
diff changeset
74 const char *CHOLMOD_LIBS = %OCTAVE_CONF_CHOLMOD_LIBS%;
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents: 21140
diff changeset
75
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents: 21140
diff changeset
76 const char *COLAMD_CPPFLAGS = %OCTAVE_CONF_COLAMD_CPPFLAGS%;
3584
aa31644d9779 [project @ 2000-02-07 09:24:38 by jwe]
jwe
parents: 2847
diff changeset
77
21181
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents: 21140
diff changeset
78 const char *COLAMD_LDFLAGS = %OCTAVE_CONF_COLAMD_LDFLAGS%;
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents: 21140
diff changeset
79
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents: 21140
diff changeset
80 const char *COLAMD_LIBS = %OCTAVE_CONF_COLAMD_LIBS%;
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents: 21140
diff changeset
81
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents: 21140
diff changeset
82 const char *CPICFLAG = %OCTAVE_CONF_CPICFLAG%;
3584
aa31644d9779 [project @ 2000-02-07 09:24:38 by jwe]
jwe
parents: 2847
diff changeset
83
21181
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents: 21140
diff changeset
84 const char *CPPFLAGS = %OCTAVE_CONF_CPPFLAGS%;
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents: 21140
diff changeset
85
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents: 21140
diff changeset
86 const char *CURL_CPPFLAGS = %OCTAVE_CONF_CURL_CPPFLAGS%;
3584
aa31644d9779 [project @ 2000-02-07 09:24:38 by jwe]
jwe
parents: 2847
diff changeset
87
21181
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents: 21140
diff changeset
88 const char *CURL_LDFLAGS = %OCTAVE_CONF_CURL_LDFLAGS%;
2163
8901e415035a [project @ 1996-05-13 10:35:04 by jwe]
jwe
parents:
diff changeset
89
21181
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents: 21140
diff changeset
90 const char *CURL_LIBS = %OCTAVE_CONF_CURL_LIBS%;
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents: 21140
diff changeset
91
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents: 21140
diff changeset
92 const char *CXSPARSE_CPPFLAGS = %OCTAVE_CONF_CXSPARSE_CPPFLAGS%;
3584
aa31644d9779 [project @ 2000-02-07 09:24:38 by jwe]
jwe
parents: 2847
diff changeset
93
21181
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents: 21140
diff changeset
94 const char *CXSPARSE_LDFLAGS = %OCTAVE_CONF_CXSPARSE_LDFLAGS%;
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents: 21140
diff changeset
95
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents: 21140
diff changeset
96 const char *CXSPARSE_LIBS = %OCTAVE_CONF_CXSPARSE_LIBS%;
2163
8901e415035a [project @ 1996-05-13 10:35:04 by jwe]
jwe
parents:
diff changeset
97
21181
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents: 21140
diff changeset
98 const char *CXXCPP = %OCTAVE_CONF_CXXCPP%;
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents: 21140
diff changeset
99
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents: 21140
diff changeset
100 const char *CXXFLAGS = %OCTAVE_CONF_CXXFLAGS%;
3584
aa31644d9779 [project @ 2000-02-07 09:24:38 by jwe]
jwe
parents: 2847
diff changeset
101
21181
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents: 21140
diff changeset
102 const char *CXXPICFLAG = %OCTAVE_CONF_CXXPICFLAG%;
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents: 21140
diff changeset
103
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents: 21140
diff changeset
104 const char *CXX = %OCTAVE_CONF_CXX%;
9575
55ecaefb7d0f Use pkg-config to configure GraphicsMagick++.
David Grundberg <individ@acc.umu.se>
parents: 9572
diff changeset
105
21181
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents: 21140
diff changeset
106 const char *DEFAULT_PAGER = %OCTAVE_CONF_DEFAULT_PAGER%;
7926
d74f996e005d __magick_read__.cc: configuration and style fixes
John W. Eaton <jwe@octave.org>
parents: 7361
diff changeset
107
21181
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents: 21140
diff changeset
108 const char *DEFS = %OCTAVE_CONF_DEFS%;
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents: 21140
diff changeset
109
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents: 21140
diff changeset
110 const char *DL_LD = %OCTAVE_CONF_DL_LD%;
7926
d74f996e005d __magick_read__.cc: configuration and style fixes
John W. Eaton <jwe@octave.org>
parents: 7361
diff changeset
111
21181
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents: 21140
diff changeset
112 const char *DL_LDFLAGS = %OCTAVE_CONF_DL_LDFLAGS%;
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents: 21140
diff changeset
113
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents: 21140
diff changeset
114 const char *EXEEXT = %OCTAVE_CONF_EXEEXT%;
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents: 21140
diff changeset
115
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents: 21140
diff changeset
116 const char *GCC_VERSION = %OCTAVE_CONF_GCC_VERSION%;
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents: 21140
diff changeset
117
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents: 21140
diff changeset
118 const char *GXX_VERSION = %OCTAVE_CONF_GXX_VERSION%;
14899
f25d2224fa02 Initial JIT support
Max Brister <max@2bass.com>
parents: 14547
diff changeset
119
21181
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents: 21140
diff changeset
120 const char *F77 = %OCTAVE_CONF_F77%;
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents: 21140
diff changeset
121
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents: 21140
diff changeset
122 const char *F77_FLOAT_STORE_FLAG = %OCTAVE_CONF_F77_FLOAT_STORE_FLAG%;
14899
f25d2224fa02 Initial JIT support
Max Brister <max@2bass.com>
parents: 14547
diff changeset
123
21181
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents: 21140
diff changeset
124 const char *F77_INTEGER_8_FLAG = %OCTAVE_CONF_F77_INTEGER_8_FLAG%;
4759
364bbf35dbfa [project @ 2004-02-15 00:08:06 by jwe]
jwe
parents: 4378
diff changeset
125
21181
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents: 21140
diff changeset
126 const char *FFLAGS = %OCTAVE_CONF_FFLAGS%;
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents: 21140
diff changeset
127
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents: 21140
diff changeset
128 const char *FFTW3_CPPFLAGS = %OCTAVE_CONF_FFTW3_CPPFLAGS%;
13010
edc5ec6e949b maint: allow --enable-static --disable-dl to work again
John W. Eaton <jwe@octave.org>
parents: 12195
diff changeset
129
21181
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents: 21140
diff changeset
130 const char *FFTW3_LDFLAGS = %OCTAVE_CONF_FFTW3_LDFLAGS%;
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents: 21140
diff changeset
131
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents: 21140
diff changeset
132 const char *FFTW3_LIBS = %OCTAVE_CONF_FFTW3_LIBS%;
13010
edc5ec6e949b maint: allow --enable-static --disable-dl to work again
John W. Eaton <jwe@octave.org>
parents: 12195
diff changeset
133
21181
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents: 21140
diff changeset
134 const char *FFTW3F_CPPFLAGS = %OCTAVE_CONF_FFTW3F_CPPFLAGS%;
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents: 21140
diff changeset
135
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents: 21140
diff changeset
136 const char *FFTW3F_LDFLAGS = %OCTAVE_CONF_FFTW3F_LDFLAGS%;
3591
b35c6af4c49c [project @ 2000-02-08 19:19:17 by jwe]
jwe
parents: 3584
diff changeset
137
21181
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents: 21140
diff changeset
138 const char *FFTW3F_LIBS = %OCTAVE_CONF_FFTW3F_LIBS%;
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents: 21140
diff changeset
139
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents: 21140
diff changeset
140 const char *FLIBS = %OCTAVE_CONF_FLIBS%;
6311
e2a1aca62551 [project @ 2007-02-15 21:18:34 by jwe]
jwe
parents: 6043
diff changeset
141
21181
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents: 21140
diff changeset
142 const char *FLTK_CPPFLAGS = %OCTAVE_CONF_FLTK_CPPFLAGS%;
13010
edc5ec6e949b maint: allow --enable-static --disable-dl to work again
John W. Eaton <jwe@octave.org>
parents: 12195
diff changeset
143
21181
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents: 21140
diff changeset
144 const char *FLTK_LDFLAGS = %OCTAVE_CONF_FLTK_LDFLAGS%;
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents: 21140
diff changeset
145
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents: 21140
diff changeset
146 const char *FLTK_LIBS = %OCTAVE_CONF_FLTK_LIBS%;
13010
edc5ec6e949b maint: allow --enable-static --disable-dl to work again
John W. Eaton <jwe@octave.org>
parents: 12195
diff changeset
147
21181
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents: 21140
diff changeset
148 const char *FONTCONFIG_CPPFLAGS = %OCTAVE_CONF_FONTCONFIG_CPPFLAGS%;
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents: 21140
diff changeset
149
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents: 21140
diff changeset
150 const char *FONTCONFIG_LIBS = %OCTAVE_CONF_FONTCONFIG_LIBS%;
9514
af86991d8d47 configure tweaks
John W. Eaton <jwe@octave.org>
parents: 9187
diff changeset
151
21181
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents: 21140
diff changeset
152 const char *FPICFLAG = %OCTAVE_CONF_FPICFLAG%;
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents: 21140
diff changeset
153
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents: 21140
diff changeset
154 const char *FT2_CPPFLAGS = %OCTAVE_CONF_FT2_CPPFLAGS%;
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents: 21140
diff changeset
155
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents: 21140
diff changeset
156 const char *FT2_LIBS = %OCTAVE_CONF_FT2_LIBS%;
19734
9f6ee9cb749c put OSMESA compiler flag variables in config_options struct
John W. Eaton <jwe@octave.org>
parents: 19733
diff changeset
157
21181
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents: 21140
diff changeset
158 const char *GLPK_CPPFLAGS = %OCTAVE_CONF_GLPK_CPPFLAGS%;
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents: 21140
diff changeset
159
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents: 21140
diff changeset
160 const char *GLPK_LDFLAGS = %OCTAVE_CONF_GLPK_LDFLAGS%;
19734
9f6ee9cb749c put OSMESA compiler flag variables in config_options struct
John W. Eaton <jwe@octave.org>
parents: 19733
diff changeset
161
21181
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents: 21140
diff changeset
162 const char *GLPK_LIBS = %OCTAVE_CONF_GLPK_LIBS%;
19734
9f6ee9cb749c put OSMESA compiler flag variables in config_options struct
John W. Eaton <jwe@octave.org>
parents: 19733
diff changeset
163
21181
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents: 21140
diff changeset
164 const char *GNUPLOT = %OCTAVE_CONF_GNUPLOT%;
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents: 21140
diff changeset
165
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents: 21140
diff changeset
166 const char *HDF5_CPPFLAGS = %OCTAVE_CONF_HDF5_CPPFLAGS%;
17821
82c94987abc6 build: Remove REGEX_CPPFLAGS from XTRA_CXXFLAGS.
Rik <rik@octave.org>
parents: 17816
diff changeset
167
21181
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents: 21140
diff changeset
168 const char *HDF5_LDFLAGS = %OCTAVE_CONF_HDF5_LDFLAGS%;
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents: 21140
diff changeset
169
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents: 21140
diff changeset
170 const char *HDF5_LIBS = %OCTAVE_CONF_HDF5_LIBS%;
17821
82c94987abc6 build: Remove REGEX_CPPFLAGS from XTRA_CXXFLAGS.
Rik <rik@octave.org>
parents: 17816
diff changeset
171
21181
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents: 21140
diff changeset
172 const char *INCLUDEDIR = %OCTAVE_CONF_INCLUDEDIR%;
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents: 21140
diff changeset
173
22899
31bd8a50d44c Add Sundials library support
Francesco Faccio <francesco.faccio@mail.polimi.it>
parents: 22755
diff changeset
174 const char *KLU_CPPFLAGS = %OCTAVE_CONF_KLU_CPPFLAGS%;
31bd8a50d44c Add Sundials library support
Francesco Faccio <francesco.faccio@mail.polimi.it>
parents: 22755
diff changeset
175
31bd8a50d44c Add Sundials library support
Francesco Faccio <francesco.faccio@mail.polimi.it>
parents: 22755
diff changeset
176 const char *KLU_LDFLAGS = %OCTAVE_CONF_KLU_LDFLAGS%;
31bd8a50d44c Add Sundials library support
Francesco Faccio <francesco.faccio@mail.polimi.it>
parents: 22755
diff changeset
177
31bd8a50d44c Add Sundials library support
Francesco Faccio <francesco.faccio@mail.polimi.it>
parents: 22755
diff changeset
178 const char *KLU_LIBS = %OCTAVE_CONF_KLU_LIBS%;
31bd8a50d44c Add Sundials library support
Francesco Faccio <francesco.faccio@mail.polimi.it>
parents: 22755
diff changeset
179
21181
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents: 21140
diff changeset
180 const char *LAPACK_LIBS = %OCTAVE_CONF_LAPACK_LIBS%;
3859
890a7e4c1362 [project @ 2001-11-09 17:05:08 by jwe]
jwe
parents: 3822
diff changeset
181
21181
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents: 21140
diff changeset
182 const char *LDFLAGS = %OCTAVE_CONF_LDFLAGS%;
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents: 21140
diff changeset
183
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents: 21140
diff changeset
184 const char *LD_CXX = %OCTAVE_CONF_LD_CXX%;
9514
af86991d8d47 configure tweaks
John W. Eaton <jwe@octave.org>
parents: 9187
diff changeset
185
21181
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents: 21140
diff changeset
186 const char *LD_STATIC_FLAG = %OCTAVE_CONF_LD_STATIC_FLAG%;
9514
af86991d8d47 configure tweaks
John W. Eaton <jwe@octave.org>
parents: 9187
diff changeset
187
21181
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents: 21140
diff changeset
188 const char *LEXLIB = %OCTAVE_CONF_LEXLIB%;
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents: 21140
diff changeset
189
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents: 21140
diff changeset
190 const char *LEX = %OCTAVE_CONF_LEX%;
9519
ee99f9f37505 improve configure checks for qhull and curl libs
John W. Eaton <jwe@octave.org>
parents: 9515
diff changeset
191
21181
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents: 21140
diff changeset
192 const char *LFLAGS = %OCTAVE_CONF_LFLAGS%;
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents: 21140
diff changeset
193
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents: 21140
diff changeset
194 const char *LIBOCTAVE = %OCTAVE_CONF_LIBOCTAVE%;
9514
af86991d8d47 configure tweaks
John W. Eaton <jwe@octave.org>
parents: 9187
diff changeset
195
21181
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents: 21140
diff changeset
196 const char *LIBOCTINTERP = %OCTAVE_CONF_LIBOCTINTERP%;
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents: 21140
diff changeset
197
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents: 21140
diff changeset
198 const char *LIBS = %OCTAVE_CONF_LIBS%;
9570
1ab56c73ec7c use OCTAVE_CHECK_LIBRARY to check for qrupdate library
John W. Eaton <jwe@octave.org>
parents: 9568
diff changeset
199
21181
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents: 21140
diff changeset
200 const char *LN_S = %OCTAVE_CONF_LN_S%;
9570
1ab56c73ec7c use OCTAVE_CHECK_LIBRARY to check for qrupdate library
John W. Eaton <jwe@octave.org>
parents: 9568
diff changeset
201
21181
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents: 21140
diff changeset
202 const char *MAGICK_CPPFLAGS = %OCTAVE_CONF_MAGICK_CPPFLAGS%;
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents: 21140
diff changeset
203
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents: 21140
diff changeset
204 const char *MAGICK_LDFLAGS = %OCTAVE_CONF_MAGICK_LDFLAGS%;
9514
af86991d8d47 configure tweaks
John W. Eaton <jwe@octave.org>
parents: 9187
diff changeset
205
21181
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents: 21140
diff changeset
206 const char *MAGICK_LIBS = %OCTAVE_CONF_MAGICK_LIBS%;
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents: 21140
diff changeset
207
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents: 21140
diff changeset
208 const char *LLVM_CPPFLAGS = %OCTAVE_CONF_LLVM_CPPFLAGS%;
15117
3735a0e783cb more tweaks for the gui build
John W. Eaton <jwe@octave.org>
parents: 15100
diff changeset
209
21181
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents: 21140
diff changeset
210 const char *LLVM_LDFLAGS = %OCTAVE_CONF_LLVM_LDFLAGS%;
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents: 21140
diff changeset
211
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents: 21140
diff changeset
212 const char *LLVM_LIBS = %OCTAVE_CONF_LLVM_LIBS%;
15596
5f031158c693 Use pkg-config to discover Qt (pkg-config is already a requirement anyway).
Michael Goffioul <michael.goffioul@gmail.com>
parents: 15424
diff changeset
213
21181
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents: 21140
diff changeset
214 const char *MKOCTFILE_DL_LDFLAGS = %OCTAVE_CONF_MKOCTFILE_DL_LDFLAGS%;
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents: 21140
diff changeset
215
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents: 21140
diff changeset
216 const char *OCTAVE_LINK_DEPS = %OCTAVE_CONF_OCTAVE_LINK_DEPS%;
15117
3735a0e783cb more tweaks for the gui build
John W. Eaton <jwe@octave.org>
parents: 15100
diff changeset
217
21181
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents: 21140
diff changeset
218 const char *OCTAVE_LINK_OPTS = %OCTAVE_CONF_OCTAVE_LINK_OPTS%;
2163
8901e415035a [project @ 1996-05-13 10:35:04 by jwe]
jwe
parents:
diff changeset
219
21181
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents: 21140
diff changeset
220 const char *OCTINCLUDEDIR = %OCTAVE_CONF_OCTINCLUDEDIR%;
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents: 21140
diff changeset
221
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents: 21140
diff changeset
222 const char *OCTLIBDIR = %OCTAVE_CONF_OCTLIBDIR%;
3584
aa31644d9779 [project @ 2000-02-07 09:24:38 by jwe]
jwe
parents: 2847
diff changeset
223
21181
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents: 21140
diff changeset
224 const char *OCT_LINK_DEPS = %OCTAVE_CONF_OCT_LINK_DEPS%;
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents: 21140
diff changeset
225
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents: 21140
diff changeset
226 const char *OCT_LINK_OPTS = %OCTAVE_CONF_OCT_LINK_OPTS%;
9515
eee9b3150446 more configure tweaks
John W. Eaton <jwe@octave.org>
parents: 9514
diff changeset
227
21181
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents: 21140
diff changeset
228 const char *OPENGL_LIBS = %OCTAVE_CONF_OPENGL_LIBS%;
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents: 21140
diff changeset
229
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents: 21140
diff changeset
230 const char *PCRE_CPPFLAGS = %OCTAVE_CONF_PCRE_CPPFLAGS%;
3584
aa31644d9779 [project @ 2000-02-07 09:24:38 by jwe]
jwe
parents: 2847
diff changeset
231
23005
8e9dd0d6e337 update check for pcre library to use pkg-config (bug #49993)
John W. Eaton <jwe@octave.org>
parents: 22899
diff changeset
232 const char *PCRE_LDFLAGS = %OCTAVE_CONF_PCRE_LDFLAGS%;
8e9dd0d6e337 update check for pcre library to use pkg-config (bug #49993)
John W. Eaton <jwe@octave.org>
parents: 22899
diff changeset
233
21181
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents: 21140
diff changeset
234 const char *PCRE_LIBS = %OCTAVE_CONF_PCRE_LIBS%;
3584
aa31644d9779 [project @ 2000-02-07 09:24:38 by jwe]
jwe
parents: 2847
diff changeset
235
21181
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents: 21140
diff changeset
236 const char *PREFIX = %OCTAVE_CONF_PREFIX%;
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents: 21140
diff changeset
237
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents: 21140
diff changeset
238 const char *PTHREAD_CFLAGS = %OCTAVE_CONF_PTHREAD_CFLAGS%;
2163
8901e415035a [project @ 1996-05-13 10:35:04 by jwe]
jwe
parents:
diff changeset
239
21181
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents: 21140
diff changeset
240 const char *PTHREAD_LIBS = %OCTAVE_CONF_PTHREAD_LIBS%;
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents: 21140
diff changeset
241
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents: 21140
diff changeset
242 const char *QHULL_CPPFLAGS = %OCTAVE_CONF_QHULL_CPPFLAGS%;
4759
364bbf35dbfa [project @ 2004-02-15 00:08:06 by jwe]
jwe
parents: 4378
diff changeset
243
21181
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents: 21140
diff changeset
244 const char *QHULL_LDFLAGS = %OCTAVE_CONF_QHULL_LDFLAGS%;
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents: 21140
diff changeset
245
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents: 21140
diff changeset
246 const char *QHULL_LIBS = %OCTAVE_CONF_QHULL_LIBS%;
3584
aa31644d9779 [project @ 2000-02-07 09:24:38 by jwe]
jwe
parents: 2847
diff changeset
247
21181
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents: 21140
diff changeset
248 const char *QRUPDATE_CPPFLAGS = %OCTAVE_CONF_QRUPDATE_CPPFLAGS%;
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents: 21140
diff changeset
249
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents: 21140
diff changeset
250 const char *QRUPDATE_LDFLAGS = %OCTAVE_CONF_QRUPDATE_LDFLAGS%;
3584
aa31644d9779 [project @ 2000-02-07 09:24:38 by jwe]
jwe
parents: 2847
diff changeset
251
21181
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents: 21140
diff changeset
252 const char *QRUPDATE_LIBS = %OCTAVE_CONF_QRUPDATE_LIBS%;
2163
8901e415035a [project @ 1996-05-13 10:35:04 by jwe]
jwe
parents:
diff changeset
253
21181
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents: 21140
diff changeset
254 const char *QT_CPPFLAGS = %OCTAVE_CONF_QT_CPPFLAGS%;
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents: 21140
diff changeset
255
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents: 21140
diff changeset
256 const char *QT_LDFLAGS = %OCTAVE_CONF_QT_LDFLAGS%;
9515
eee9b3150446 more configure tweaks
John W. Eaton <jwe@octave.org>
parents: 9514
diff changeset
257
21181
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents: 21140
diff changeset
258 const char *QT_LIBS = %OCTAVE_CONF_QT_LIBS%;
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents: 21140
diff changeset
259
25931
332be8be16eb dynamically load qt graphics
John W. Eaton <jwe@octave.org>
parents: 25103
diff changeset
260 const char *QT_OPENGL_LIBS = %OCTAVE_CONF_QT_OPENGL_LIBS%;
332be8be16eb dynamically load qt graphics
John W. Eaton <jwe@octave.org>
parents: 25103
diff changeset
261
21181
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents: 21140
diff changeset
262 const char *RANLIB = %OCTAVE_CONF_RANLIB%;
9572
ab8a163f2052 use OCTAVE_CHECK_LIB to check for UMFPACK
John W. Eaton <jwe@octave.org>
parents: 9570
diff changeset
263
21181
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents: 21140
diff changeset
264 const char *RDYNAMIC_FLAG = %OCTAVE_CONF_RDYNAMIC_FLAG%;
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents: 21140
diff changeset
265
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents: 21140
diff changeset
266 const char *READLINE_LIBS = %OCTAVE_CONF_READLINE_LIBS%;
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents: 21140
diff changeset
267
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents: 21140
diff changeset
268 const char *SHARED_LIBS = %OCTAVE_CONF_SHARED_LIBS%;
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents: 21140
diff changeset
269
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents: 21140
diff changeset
270 const char *SH_LD = %OCTAVE_CONF_SH_LD%;
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents: 21140
diff changeset
271
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents: 21140
diff changeset
272 const char *SH_LDFLAGS = %OCTAVE_CONF_SH_LDFLAGS%;
2163
8901e415035a [project @ 1996-05-13 10:35:04 by jwe]
jwe
parents:
diff changeset
273
21181
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents: 21140
diff changeset
274 const char *STATIC_LIBS = %OCTAVE_CONF_STATIC_LIBS%;
8772
aeedc045cfe3 toplev.cc (Foctave_config_info): add CARBON_LIBS, X11_INCFLAGS, and X11_LIBS to the struct
John W. Eaton <jwe@octave.org>
parents: 7926
diff changeset
275
23990
6f56efc098bd check for suitesparse config library before other suitesparse libraries
John W. Eaton <jwe@octave.org>
parents: 23220
diff changeset
276 const char *SUITESPARSECONFIG_LIBS = %OCTAVE_CONF_SUITESPARSECONFIG_LIBS%;
22501
ed1b0d5fa97c always check for suitesparseconfig if any SuiteSparse libs found
John W. Eaton <jwe@octave.org>
parents: 22413
diff changeset
277
22899
31bd8a50d44c Add Sundials library support
Francesco Faccio <francesco.faccio@mail.polimi.it>
parents: 22755
diff changeset
278 const char *SUNDIALS_IDA_CPPFLAGS = %OCTAVE_CONF_SUNDIALS_IDA_CPPFLAGS%;
31bd8a50d44c Add Sundials library support
Francesco Faccio <francesco.faccio@mail.polimi.it>
parents: 22755
diff changeset
279
31bd8a50d44c Add Sundials library support
Francesco Faccio <francesco.faccio@mail.polimi.it>
parents: 22755
diff changeset
280 const char *SUNDIALS_IDA_LDFLAGS = %OCTAVE_CONF_SUNDIALS_IDA_LDFLAGS%;
31bd8a50d44c Add Sundials library support
Francesco Faccio <francesco.faccio@mail.polimi.it>
parents: 22755
diff changeset
281
31bd8a50d44c Add Sundials library support
Francesco Faccio <francesco.faccio@mail.polimi.it>
parents: 22755
diff changeset
282 const char *SUNDIALS_IDA_LIBS = %OCTAVE_CONF_SUNDIALS_IDA_LIBS%;
31bd8a50d44c Add Sundials library support
Francesco Faccio <francesco.faccio@mail.polimi.it>
parents: 22755
diff changeset
283
25103
078b795c5219 maint: style check C++ ahead of 4.4 release.
Rik <rik@octave.org>
parents: 25054
diff changeset
284 const char *SUNDIALS_NVECSERIAL_CPPFLAGS =
078b795c5219 maint: style check C++ ahead of 4.4 release.
Rik <rik@octave.org>
parents: 25054
diff changeset
285 %OCTAVE_CONF_SUNDIALS_NVECSERIAL_CPPFLAGS%;
22899
31bd8a50d44c Add Sundials library support
Francesco Faccio <francesco.faccio@mail.polimi.it>
parents: 22755
diff changeset
286
25103
078b795c5219 maint: style check C++ ahead of 4.4 release.
Rik <rik@octave.org>
parents: 25054
diff changeset
287 const char *SUNDIALS_NVECSERIAL_LDFLAGS =
078b795c5219 maint: style check C++ ahead of 4.4 release.
Rik <rik@octave.org>
parents: 25054
diff changeset
288 %OCTAVE_CONF_SUNDIALS_NVECSERIAL_LDFLAGS%;
22899
31bd8a50d44c Add Sundials library support
Francesco Faccio <francesco.faccio@mail.polimi.it>
parents: 22755
diff changeset
289
31bd8a50d44c Add Sundials library support
Francesco Faccio <francesco.faccio@mail.polimi.it>
parents: 22755
diff changeset
290 const char *SUNDIALS_NVECSERIAL_LIBS = %OCTAVE_CONF_SUNDIALS_NVECSERIAL_LIBS%;
31bd8a50d44c Add Sundials library support
Francesco Faccio <francesco.faccio@mail.polimi.it>
parents: 22755
diff changeset
291
21181
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents: 21140
diff changeset
292 const char *TERM_LIBS = %OCTAVE_CONF_TERM_LIBS%;
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents: 21140
diff changeset
293
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents: 21140
diff changeset
294 const char *UMFPACK_CPPFLAGS = %OCTAVE_CONF_UMFPACK_CPPFLAGS%;
8772
aeedc045cfe3 toplev.cc (Foctave_config_info): add CARBON_LIBS, X11_INCFLAGS, and X11_LIBS to the struct
John W. Eaton <jwe@octave.org>
parents: 7926
diff changeset
295
21181
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents: 21140
diff changeset
296 const char *UMFPACK_LDFLAGS = %OCTAVE_CONF_UMFPACK_LDFLAGS%;
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents: 21140
diff changeset
297
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents: 21140
diff changeset
298 const char *UMFPACK_LIBS = %OCTAVE_CONF_UMFPACK_LIBS%;
2163
8901e415035a [project @ 1996-05-13 10:35:04 by jwe]
jwe
parents:
diff changeset
299
21181
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents: 21140
diff changeset
300 const char *WARN_CFLAGS = %OCTAVE_CONF_WARN_CFLAGS%;
2163
8901e415035a [project @ 1996-05-13 10:35:04 by jwe]
jwe
parents:
diff changeset
301
21181
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents: 21140
diff changeset
302 const char *WARN_CXXFLAGS = %OCTAVE_CONF_WARN_CXXFLAGS%;
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents: 21140
diff changeset
303
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents: 21140
diff changeset
304 const char *X11_INCFLAGS = %OCTAVE_CONF_X11_INCFLAGS%;
3584
aa31644d9779 [project @ 2000-02-07 09:24:38 by jwe]
jwe
parents: 2847
diff changeset
305
21181
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents: 21140
diff changeset
306 const char *X11_LIBS = %OCTAVE_CONF_X11_LIBS%;
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents: 21140
diff changeset
307
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents: 21140
diff changeset
308 const char *XTRA_CFLAGS = %OCTAVE_CONF_XTRA_CFLAGS%;
3584
aa31644d9779 [project @ 2000-02-07 09:24:38 by jwe]
jwe
parents: 2847
diff changeset
309
21181
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents: 21140
diff changeset
310 const char *XTRA_CXXFLAGS = %OCTAVE_CONF_XTRA_CXXFLAGS%;
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents: 21140
diff changeset
311
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents: 21140
diff changeset
312 const char *YACC = %OCTAVE_CONF_YACC%;
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents: 21140
diff changeset
313
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents: 21140
diff changeset
314 const char *YFLAGS = %OCTAVE_CONF_YFLAGS%;
9538
d0239bddf621 use OCTAVE_CHECK_LIB to check for zlib
John W. Eaton <jwe@octave.org>
parents: 9523
diff changeset
315
21181
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents: 21140
diff changeset
316 const char *Z_CPPFLAGS = %OCTAVE_CONF_Z_CPPFLAGS%;
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents: 21140
diff changeset
317
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents: 21140
diff changeset
318 const char *Z_LDFLAGS = %OCTAVE_CONF_Z_LDFLAGS%;
9538
d0239bddf621 use OCTAVE_CHECK_LIB to check for zlib
John W. Eaton <jwe@octave.org>
parents: 9523
diff changeset
319
21181
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents: 21140
diff changeset
320 const char *Z_LIBS = %OCTAVE_CONF_Z_LIBS%;
9514
af86991d8d47 configure tweaks
John W. Eaton <jwe@octave.org>
parents: 9187
diff changeset
321
21181
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents: 21140
diff changeset
322 const char *config_opts = %OCTAVE_CONF_config_opts%;
22413
8758addcf265 maint: Remove ';' at end of namespace declaration.
Rik <rik@octave.org>
parents: 22407
diff changeset
323 }
8758addcf265 maint: Remove ';' at end of namespace declaration.
Rik <rik@octave.org>
parents: 22407
diff changeset
324 }