annotate libinterp/build-env.in.cc @ 21220:d78e45987d6a

rename octave::build_env namespace from octave::config * build-env-features.sh: Rename from ocgt-conf-features.sh. Update for new names. * build-env.h: Rename from oct-conf.h. Also declare features function. * build-env.in.cc: Rename from oct-conf.in.cc. * oct-conf-features.h: Delete. * libinterp/module.mk: Update. * toplev.cc, __init_gnuplot__.cc, octave.cc: Update for new names.
author John W. Eaton <jwe@octave.org>
date Sun, 07 Feb 2016 14:56:17 -0500
parents libinterp/oct-conf.in.cc@fcac5dbbf9ed
children 40de9f8f23a6
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
19697
4197fc428c7d maint: Update copyright notices for 2015.
John W. Eaton <jwe@octave.org>
parents: 17821
diff changeset
4 Copyright (C) 1996-2015 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
8901e415035a [project @ 1996-05-13 10:35:04 by jwe]
jwe
parents:
diff changeset
8 Octave is free software; you can redistribute it and/or modify it
8901e415035a [project @ 1996-05-13 10:35:04 by jwe]
jwe
parents:
diff changeset
9 under the terms of the GNU General Public License as published by the
7016
93c65f2a5668 [project @ 2007-10-12 06:40:56 by jwe]
jwe
parents: 6789
diff changeset
10 Free Software Foundation; either version 3 of the License, or (at your
93c65f2a5668 [project @ 2007-10-12 06:40:56 by jwe]
jwe
parents: 6789
diff changeset
11 option) any later version.
2163
8901e415035a [project @ 1996-05-13 10:35:04 by jwe]
jwe
parents:
diff changeset
12
8901e415035a [project @ 1996-05-13 10:35:04 by jwe]
jwe
parents:
diff changeset
13 Octave is distributed in the hope that it will be useful, but WITHOUT
8901e415035a [project @ 1996-05-13 10:35:04 by jwe]
jwe
parents:
diff changeset
14 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
8901e415035a [project @ 1996-05-13 10:35:04 by jwe]
jwe
parents:
diff changeset
15 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
8901e415035a [project @ 1996-05-13 10:35:04 by jwe]
jwe
parents:
diff changeset
16 for more details.
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
93c65f2a5668 [project @ 2007-10-12 06:40:56 by jwe]
jwe
parents: 6789
diff changeset
20 <http://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
21181
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents: 21140
diff changeset
24 #ifdef HAVE_CONFIG_H
21200
fcac5dbbf9ed maint: Indent #ifdef blocks in libinterp.
Rik <rik@octave.org>
parents: 21181
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 *ALL_CFLAGS = %OCTAVE_CONF_ALL_CFLAGS%;
5235
5f0ad69b5c8c [project @ 2005-03-22 19:48:16 by jwe]
jwe
parents: 5169
diff changeset
35
21181
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents: 21140
diff changeset
36 const char *ALL_CXXFLAGS = %OCTAVE_CONF_ALL_CXXFLAGS%;
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents: 21140
diff changeset
37
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents: 21140
diff changeset
38 const char *ALL_FFLAGS = %OCTAVE_CONF_ALL_FFLAGS%;
7361
a2870fd8ac58 [project @ 2008-01-12 07:50:54 by jwe]
jwe
parents: 7253
diff changeset
39
21181
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents: 21140
diff changeset
40 const char *ALL_LDFLAGS = %OCTAVE_CONF_ALL_LDFLAGS%;
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents: 21140
diff changeset
41
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents: 21140
diff changeset
42 const char *AMD_CPPFLAGS = %OCTAVE_CONF_AMD_CPPFLAGS%;
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 *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
45
21181
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents: 21140
diff changeset
46 const char *AMD_LIBS = %OCTAVE_CONF_AMD_LIBS%;
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 *ARFLAGS = %OCTAVE_CONF_ARFLAGS%;
9542
f5ec5dc66824 use OCTAVE_CHECK_LIBRARY to check for HDF5
John W. Eaton <jwe@octave.org>
parents: 9538
diff changeset
49
21181
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents: 21140
diff changeset
50 const char *AR = %OCTAVE_CONF_AR%;
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents: 21140
diff changeset
51
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents: 21140
diff changeset
52 const char *ARPACK_CPPFLAGS = %OCTAVE_CONF_ARPACK_CPPFLAGS%;
9514
af86991d8d47 configure tweaks
John W. Eaton <jwe@octave.org>
parents: 9187
diff changeset
53
21181
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents: 21140
diff changeset
54 const char *ARPACK_LDFLAGS = %OCTAVE_CONF_ARPACK_LDFLAGS%;
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents: 21140
diff changeset
55
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents: 21140
diff changeset
56 const char *ARPACK_LIBS = %OCTAVE_CONF_ARPACK_LIBS%;
2163
8901e415035a [project @ 1996-05-13 10:35:04 by jwe]
jwe
parents:
diff changeset
57
21181
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents: 21140
diff changeset
58 const char *BLAS_LIBS = %OCTAVE_CONF_BLAS_LIBS%;
6311
e2a1aca62551 [project @ 2007-02-15 21:18:34 by jwe]
jwe
parents: 6043
diff changeset
59
21181
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents: 21140
diff changeset
60 const char *CAMD_CPPFLAGS = %OCTAVE_CONF_CAMD_CPPFLAGS%;
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 *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
63
21181
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents: 21140
diff changeset
64 const char *CAMD_LIBS = %OCTAVE_CONF_CAMD_LIBS%;
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 *CARBON_LIBS = %OCTAVE_CONF_CARBON_LIBS%;
2163
8901e415035a [project @ 1996-05-13 10:35:04 by jwe]
jwe
parents:
diff changeset
67
21181
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents: 21140
diff changeset
68 const char *CC = %OCTAVE_CONF_CC%;
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents: 21140
diff changeset
69
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents: 21140
diff changeset
70 const char *CCOLAMD_CPPFLAGS = %OCTAVE_CONF_CCOLAMD_CPPFLAGS%;
3859
890a7e4c1362 [project @ 2001-11-09 17:05:08 by jwe]
jwe
parents: 3822
diff changeset
71
21181
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents: 21140
diff changeset
72 const char *CCOLAMD_LDFLAGS = %OCTAVE_CONF_CCOLAMD_LDFLAGS%;
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents: 21140
diff changeset
73
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents: 21140
diff changeset
74 const char *CCOLAMD_LIBS = %OCTAVE_CONF_CCOLAMD_LIBS%;
3584
aa31644d9779 [project @ 2000-02-07 09:24:38 by jwe]
jwe
parents: 2847
diff changeset
75
21181
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents: 21140
diff changeset
76 const char *CFLAGS = %OCTAVE_CONF_CFLAGS%;
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 *CHOLMOD_CPPFLAGS = %OCTAVE_CONF_CHOLMOD_CPPFLAGS%;
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 *CHOLMOD_LDFLAGS = %OCTAVE_CONF_CHOLMOD_LDFLAGS%;
2163
8901e415035a [project @ 1996-05-13 10:35:04 by jwe]
jwe
parents:
diff changeset
81
21181
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents: 21140
diff changeset
82 const char *CHOLMOD_LIBS = %OCTAVE_CONF_CHOLMOD_LIBS%;
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents: 21140
diff changeset
83
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents: 21140
diff changeset
84 const char *COLAMD_CPPFLAGS = %OCTAVE_CONF_COLAMD_CPPFLAGS%;
3584
aa31644d9779 [project @ 2000-02-07 09:24:38 by jwe]
jwe
parents: 2847
diff changeset
85
21181
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents: 21140
diff changeset
86 const char *COLAMD_LDFLAGS = %OCTAVE_CONF_COLAMD_LDFLAGS%;
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents: 21140
diff changeset
87
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents: 21140
diff changeset
88 const char *COLAMD_LIBS = %OCTAVE_CONF_COLAMD_LIBS%;
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents: 21140
diff changeset
89
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents: 21140
diff changeset
90 const char *CPICFLAG = %OCTAVE_CONF_CPICFLAG%;
3584
aa31644d9779 [project @ 2000-02-07 09:24:38 by jwe]
jwe
parents: 2847
diff changeset
91
21181
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents: 21140
diff changeset
92 const char *CPPFLAGS = %OCTAVE_CONF_CPPFLAGS%;
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents: 21140
diff changeset
93
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents: 21140
diff changeset
94 const char *CURL_CPPFLAGS = %OCTAVE_CONF_CURL_CPPFLAGS%;
3584
aa31644d9779 [project @ 2000-02-07 09:24:38 by jwe]
jwe
parents: 2847
diff changeset
95
21181
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents: 21140
diff changeset
96 const char *CURL_LDFLAGS = %OCTAVE_CONF_CURL_LDFLAGS%;
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 *CURL_LIBS = %OCTAVE_CONF_CURL_LIBS%;
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 *CXSPARSE_CPPFLAGS = %OCTAVE_CONF_CXSPARSE_CPPFLAGS%;
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 *CXSPARSE_LDFLAGS = %OCTAVE_CONF_CXSPARSE_LDFLAGS%;
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 *CXSPARSE_LIBS = %OCTAVE_CONF_CXSPARSE_LIBS%;
2163
8901e415035a [project @ 1996-05-13 10:35:04 by jwe]
jwe
parents:
diff changeset
105
21181
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents: 21140
diff changeset
106 const char *CXXCPP = %OCTAVE_CONF_CXXCPP%;
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents: 21140
diff changeset
107
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents: 21140
diff changeset
108 const char *CXXFLAGS = %OCTAVE_CONF_CXXFLAGS%;
3584
aa31644d9779 [project @ 2000-02-07 09:24:38 by jwe]
jwe
parents: 2847
diff changeset
109
21181
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents: 21140
diff changeset
110 const char *CXXPICFLAG = %OCTAVE_CONF_CXXPICFLAG%;
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents: 21140
diff changeset
111
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents: 21140
diff changeset
112 const char *CXX = %OCTAVE_CONF_CXX%;
9575
55ecaefb7d0f Use pkg-config to configure GraphicsMagick++.
David Grundberg <individ@acc.umu.se>
parents: 9572
diff changeset
113
21181
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents: 21140
diff changeset
114 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
115
21181
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents: 21140
diff changeset
116 const char *DEFS = %OCTAVE_CONF_DEFS%;
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 *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
119
21181
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents: 21140
diff changeset
120 const char *DL_LDFLAGS = %OCTAVE_CONF_DL_LDFLAGS%;
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 *DL_LIBS = %OCTAVE_CONF_DL_LIBS%;
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 *EXEEXT = %OCTAVE_CONF_EXEEXT%;
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents: 21140
diff changeset
125
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents: 21140
diff changeset
126 const char *GCC_VERSION = %OCTAVE_CONF_GCC_VERSION%;
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 *GXX_VERSION = %OCTAVE_CONF_GXX_VERSION%;
14899
f25d2224fa02 Initial JIT support
Max Brister <max@2bass.com>
parents: 14547
diff changeset
129
21181
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents: 21140
diff changeset
130 const char *F77 = %OCTAVE_CONF_F77%;
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 *F77_FLOAT_STORE_FLAG = %OCTAVE_CONF_F77_FLOAT_STORE_FLAG%;
14899
f25d2224fa02 Initial JIT support
Max Brister <max@2bass.com>
parents: 14547
diff changeset
133
21181
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents: 21140
diff changeset
134 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
135
21181
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents: 21140
diff changeset
136 const char *FFLAGS = %OCTAVE_CONF_FFLAGS%;
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents: 21140
diff changeset
137
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents: 21140
diff changeset
138 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
139
21181
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents: 21140
diff changeset
140 const char *FFTW3_LDFLAGS = %OCTAVE_CONF_FFTW3_LDFLAGS%;
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents: 21140
diff changeset
141
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents: 21140
diff changeset
142 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
143
21181
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents: 21140
diff changeset
144 const char *FFTW3F_CPPFLAGS = %OCTAVE_CONF_FFTW3F_CPPFLAGS%;
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 *FFTW3F_LDFLAGS = %OCTAVE_CONF_FFTW3F_LDFLAGS%;
3591
b35c6af4c49c [project @ 2000-02-08 19:19:17 by jwe]
jwe
parents: 3584
diff changeset
147
21181
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents: 21140
diff changeset
148 const char *FFTW3F_LIBS = %OCTAVE_CONF_FFTW3F_LIBS%;
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 *FLIBS = %OCTAVE_CONF_FLIBS%;
6311
e2a1aca62551 [project @ 2007-02-15 21:18:34 by jwe]
jwe
parents: 6043
diff changeset
151
21181
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents: 21140
diff changeset
152 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
153
21181
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents: 21140
diff changeset
154 const char *FLTK_LDFLAGS = %OCTAVE_CONF_FLTK_LDFLAGS%;
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 *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
157
21181
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents: 21140
diff changeset
158 const char *FONTCONFIG_CPPFLAGS = %OCTAVE_CONF_FONTCONFIG_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 *FONTCONFIG_LIBS = %OCTAVE_CONF_FONTCONFIG_LIBS%;
9514
af86991d8d47 configure tweaks
John W. Eaton <jwe@octave.org>
parents: 9187
diff changeset
161
21181
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents: 21140
diff changeset
162 const char *FPICFLAG = %OCTAVE_CONF_FPICFLAG%;
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents: 21140
diff changeset
163
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents: 21140
diff changeset
164 const char *FT2_CPPFLAGS = %OCTAVE_CONF_FT2_CPPFLAGS%;
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 *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
167
21181
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents: 21140
diff changeset
168 const char *GLPK_CPPFLAGS = %OCTAVE_CONF_GLPK_CPPFLAGS%;
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 *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
171
21181
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents: 21140
diff changeset
172 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
173
21181
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents: 21140
diff changeset
174 const char *GNUPLOT = %OCTAVE_CONF_GNUPLOT%;
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents: 21140
diff changeset
175
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents: 21140
diff changeset
176 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
177
21181
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents: 21140
diff changeset
178 const char *HDF5_LDFLAGS = %OCTAVE_CONF_HDF5_LDFLAGS%;
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents: 21140
diff changeset
179
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents: 21140
diff changeset
180 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
181
21181
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents: 21140
diff changeset
182 const char *INCLUDEDIR = %OCTAVE_CONF_INCLUDEDIR%;
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 *LAPACK_LIBS = %OCTAVE_CONF_LAPACK_LIBS%;
3859
890a7e4c1362 [project @ 2001-11-09 17:05:08 by jwe]
jwe
parents: 3822
diff changeset
185
21181
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents: 21140
diff changeset
186 const char *LDFLAGS = %OCTAVE_CONF_LDFLAGS%;
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents: 21140
diff changeset
187
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents: 21140
diff changeset
188 const char *LD_CXX = %OCTAVE_CONF_LD_CXX%;
9514
af86991d8d47 configure tweaks
John W. Eaton <jwe@octave.org>
parents: 9187
diff changeset
189
21181
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents: 21140
diff changeset
190 const char *LD_STATIC_FLAG = %OCTAVE_CONF_LD_STATIC_FLAG%;
9514
af86991d8d47 configure tweaks
John W. Eaton <jwe@octave.org>
parents: 9187
diff changeset
191
21181
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents: 21140
diff changeset
192 const char *LEXLIB = %OCTAVE_CONF_LEXLIB%;
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 *LEX = %OCTAVE_CONF_LEX%;
9519
ee99f9f37505 improve configure checks for qhull and curl libs
John W. Eaton <jwe@octave.org>
parents: 9515
diff changeset
195
21181
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents: 21140
diff changeset
196 const char *LFLAGS = %OCTAVE_CONF_LFLAGS%;
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 *LIBEXT = %OCTAVE_CONF_LIBEXT%;
9519
ee99f9f37505 improve configure checks for qhull and curl libs
John W. Eaton <jwe@octave.org>
parents: 9515
diff changeset
199
21181
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents: 21140
diff changeset
200 const char *LIBFLAGS = %OCTAVE_CONF_LIBFLAGS%;
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents: 21140
diff changeset
201
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents: 21140
diff changeset
202 const char *LIBOCTAVE = %OCTAVE_CONF_LIBOCTAVE%;
9514
af86991d8d47 configure tweaks
John W. Eaton <jwe@octave.org>
parents: 9187
diff changeset
203
21181
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents: 21140
diff changeset
204 const char *LIBOCTINTERP = %OCTAVE_CONF_LIBOCTINTERP%;
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents: 21140
diff changeset
205
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents: 21140
diff changeset
206 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
207
21181
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents: 21140
diff changeset
208 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
209
21181
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents: 21140
diff changeset
210 const char *MAGICK_CPPFLAGS = %OCTAVE_CONF_MAGICK_CPPFLAGS%;
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 *MAGICK_LDFLAGS = %OCTAVE_CONF_MAGICK_LDFLAGS%;
9514
af86991d8d47 configure tweaks
John W. Eaton <jwe@octave.org>
parents: 9187
diff changeset
213
21181
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents: 21140
diff changeset
214 const char *MAGICK_LIBS = %OCTAVE_CONF_MAGICK_LIBS%;
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 *LLVM_CPPFLAGS = %OCTAVE_CONF_LLVM_CPPFLAGS%;
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 *LLVM_LDFLAGS = %OCTAVE_CONF_LLVM_LDFLAGS%;
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents: 21140
diff changeset
219
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents: 21140
diff changeset
220 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
221
21181
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents: 21140
diff changeset
222 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
223
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents: 21140
diff changeset
224 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
225
21181
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents: 21140
diff changeset
226 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
227
21181
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents: 21140
diff changeset
228 const char *OCTINCLUDEDIR = %OCTAVE_CONF_OCTINCLUDEDIR%;
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 *OCTLIBDIR = %OCTAVE_CONF_OCTLIBDIR%;
3584
aa31644d9779 [project @ 2000-02-07 09:24:38 by jwe]
jwe
parents: 2847
diff changeset
231
21181
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents: 21140
diff changeset
232 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
233
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents: 21140
diff changeset
234 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
235
21181
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents: 21140
diff changeset
236 const char *OPENGL_LIBS = %OCTAVE_CONF_OPENGL_LIBS%;
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 *OSMESA_CPPFLAGS = %OCTAVE_CONF_OSMESA_CPPFLAGS%;
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents: 21140
diff changeset
239
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents: 21140
diff changeset
240 const char *OSMESA_LDFLAGS = %OCTAVE_CONF_OSMESA_LDFLAGS%;
4084
babc519f245b [project @ 2002-10-03 03:23:14 by jwe]
jwe
parents: 3892
diff changeset
241
21181
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents: 21140
diff changeset
242 const char *OSMESA_LIBS = %OCTAVE_CONF_OSMESA_LIBS%;
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents: 21140
diff changeset
243
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents: 21140
diff changeset
244 const char *PCRE_CPPFLAGS = %OCTAVE_CONF_PCRE_CPPFLAGS%;
3584
aa31644d9779 [project @ 2000-02-07 09:24:38 by jwe]
jwe
parents: 2847
diff changeset
245
21181
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents: 21140
diff changeset
246 const char *PCRE_LIBS = %OCTAVE_CONF_PCRE_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 *PREFIX = %OCTAVE_CONF_PREFIX%;
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 *PTHREAD_CFLAGS = %OCTAVE_CONF_PTHREAD_CFLAGS%;
2163
8901e415035a [project @ 1996-05-13 10:35:04 by jwe]
jwe
parents:
diff changeset
251
21181
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents: 21140
diff changeset
252 const char *PTHREAD_LIBS = %OCTAVE_CONF_PTHREAD_LIBS%;
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents: 21140
diff changeset
253
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents: 21140
diff changeset
254 const char *QHULL_CPPFLAGS = %OCTAVE_CONF_QHULL_CPPFLAGS%;
4759
364bbf35dbfa [project @ 2004-02-15 00:08:06 by jwe]
jwe
parents: 4378
diff changeset
255
21181
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents: 21140
diff changeset
256 const char *QHULL_LDFLAGS = %OCTAVE_CONF_QHULL_LDFLAGS%;
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents: 21140
diff changeset
257
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents: 21140
diff changeset
258 const char *QHULL_LIBS = %OCTAVE_CONF_QHULL_LIBS%;
3584
aa31644d9779 [project @ 2000-02-07 09:24:38 by jwe]
jwe
parents: 2847
diff changeset
259
21181
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents: 21140
diff changeset
260 const char *QRUPDATE_CPPFLAGS = %OCTAVE_CONF_QRUPDATE_CPPFLAGS%;
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents: 21140
diff changeset
261
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents: 21140
diff changeset
262 const char *QRUPDATE_LDFLAGS = %OCTAVE_CONF_QRUPDATE_LDFLAGS%;
3584
aa31644d9779 [project @ 2000-02-07 09:24:38 by jwe]
jwe
parents: 2847
diff changeset
263
21181
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents: 21140
diff changeset
264 const char *QRUPDATE_LIBS = %OCTAVE_CONF_QRUPDATE_LIBS%;
2163
8901e415035a [project @ 1996-05-13 10:35:04 by jwe]
jwe
parents:
diff changeset
265
21181
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents: 21140
diff changeset
266 const char *QT_CPPFLAGS = %OCTAVE_CONF_QT_CPPFLAGS%;
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 *QT_LDFLAGS = %OCTAVE_CONF_QT_LDFLAGS%;
9515
eee9b3150446 more configure tweaks
John W. Eaton <jwe@octave.org>
parents: 9514
diff changeset
269
21181
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents: 21140
diff changeset
270 const char *QT_LIBS = %OCTAVE_CONF_QT_LIBS%;
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 *RANLIB = %OCTAVE_CONF_RANLIB%;
9572
ab8a163f2052 use OCTAVE_CHECK_LIB to check for UMFPACK
John W. Eaton <jwe@octave.org>
parents: 9570
diff changeset
273
21181
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents: 21140
diff changeset
274 const char *RDYNAMIC_FLAG = %OCTAVE_CONF_RDYNAMIC_FLAG%;
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents: 21140
diff changeset
275
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents: 21140
diff changeset
276 const char *READLINE_LIBS = %OCTAVE_CONF_READLINE_LIBS%;
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents: 21140
diff changeset
277
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents: 21140
diff changeset
278 const char *SED = %OCTAVE_CONF_SED%;
9572
ab8a163f2052 use OCTAVE_CHECK_LIB to check for UMFPACK
John W. Eaton <jwe@octave.org>
parents: 9570
diff changeset
279
21181
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents: 21140
diff changeset
280 const char *SHARED_LIBS = %OCTAVE_CONF_SHARED_LIBS%;
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents: 21140
diff changeset
281
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents: 21140
diff changeset
282 const char *SHLEXT = %OCTAVE_CONF_SHLEXT%;
9514
af86991d8d47 configure tweaks
John W. Eaton <jwe@octave.org>
parents: 9187
diff changeset
283
21181
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents: 21140
diff changeset
284 const char *SHLEXT_VER = %OCTAVE_CONF_SHLEXT_VER%;
15424
cabe2fa4566c build: Add and organize octave_config_info variables.
Rik <rik@octave.org>
parents: 15271
diff changeset
285
21181
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents: 21140
diff changeset
286 const char *SH_LD = %OCTAVE_CONF_SH_LD%;
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents: 21140
diff changeset
287
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents: 21140
diff changeset
288 const char *SH_LDFLAGS = %OCTAVE_CONF_SH_LDFLAGS%;
2163
8901e415035a [project @ 1996-05-13 10:35:04 by jwe]
jwe
parents:
diff changeset
289
21181
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents: 21140
diff changeset
290 const char *SONAME_FLAGS = %OCTAVE_CONF_SONAME_FLAGS%;
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents: 21140
diff changeset
291
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents: 21140
diff changeset
292 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
293
21181
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents: 21140
diff changeset
294 const char *TERM_LIBS = %OCTAVE_CONF_TERM_LIBS%;
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents: 21140
diff changeset
295
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents: 21140
diff changeset
296 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
297
21181
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents: 21140
diff changeset
298 const char *UMFPACK_LDFLAGS = %OCTAVE_CONF_UMFPACK_LDFLAGS%;
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents: 21140
diff changeset
299
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents: 21140
diff changeset
300 const char *UMFPACK_LIBS = %OCTAVE_CONF_UMFPACK_LIBS%;
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_CFLAGS = %OCTAVE_CONF_WARN_CFLAGS%;
2163
8901e415035a [project @ 1996-05-13 10:35:04 by jwe]
jwe
parents:
diff changeset
303
21181
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents: 21140
diff changeset
304 const char *WARN_CXXFLAGS = %OCTAVE_CONF_WARN_CXXFLAGS%;
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents: 21140
diff changeset
305
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents: 21140
diff changeset
306 const char *X11_INCFLAGS = %OCTAVE_CONF_X11_INCFLAGS%;
3584
aa31644d9779 [project @ 2000-02-07 09:24:38 by jwe]
jwe
parents: 2847
diff changeset
307
21181
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents: 21140
diff changeset
308 const char *X11_LIBS = %OCTAVE_CONF_X11_LIBS%;
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents: 21140
diff changeset
309
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents: 21140
diff changeset
310 const char *XTRA_CFLAGS = %OCTAVE_CONF_XTRA_CFLAGS%;
3584
aa31644d9779 [project @ 2000-02-07 09:24:38 by jwe]
jwe
parents: 2847
diff changeset
311
21181
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents: 21140
diff changeset
312 const char *XTRA_CXXFLAGS = %OCTAVE_CONF_XTRA_CXXFLAGS%;
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 *YACC = %OCTAVE_CONF_YACC%;
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents: 21140
diff changeset
315
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents: 21140
diff changeset
316 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
317
21181
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents: 21140
diff changeset
318 const char *Z_CPPFLAGS = %OCTAVE_CONF_Z_CPPFLAGS%;
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents: 21140
diff changeset
319
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents: 21140
diff changeset
320 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
321
21181
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents: 21140
diff changeset
322 const char *Z_LIBS = %OCTAVE_CONF_Z_LIBS%;
9514
af86991d8d47 configure tweaks
John W. Eaton <jwe@octave.org>
parents: 9187
diff changeset
323
21181
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents: 21140
diff changeset
324 const char *config_opts = %OCTAVE_CONF_config_opts%;
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents: 21140
diff changeset
325 };
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents: 21140
diff changeset
326 };