annotate libinterp/build-env.in.cc @ 30564:796f54d4ddbf stable

update Octave Project Developers copyright for the new year In files that have the "Octave Project Developers" copyright notice, update for 2021. In all .txi and .texi files except gpl.txi and gpl.texi in the doc/liboctave and doc/interpreter directories, change the copyright to "Octave Project Developers", the same as used for other source files. Update copyright notices for 2022 (not done since 2019). For gpl.txi and gpl.texi, change the copyright notice to be "Free Software Foundation, Inc." and leave the date at 2007 only because this file only contains the text of the GPL, not anything created by the Octave Project Developers. Add Paul Thomas to contributors.in.
author John W. Eaton <jwe@octave.org>
date Tue, 28 Dec 2021 18:22:40 -0500
parents f254c302bb9c
children 00e2eafd1c0f
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
27923
bd51beb6205e update formatting of copyright notices
John W. Eaton <jwe@octave.org>
parents: 27919
diff changeset
3 ////////////////////////////////////////////////////////////////////////
bd51beb6205e update formatting of copyright notices
John W. Eaton <jwe@octave.org>
parents: 27919
diff changeset
4 //
30564
796f54d4ddbf update Octave Project Developers copyright for the new year
John W. Eaton <jwe@octave.org>
parents: 29949
diff changeset
5 // Copyright (C) 1996-2022 The Octave Project Developers
27923
bd51beb6205e update formatting of copyright notices
John W. Eaton <jwe@octave.org>
parents: 27919
diff changeset
6 //
bd51beb6205e update formatting of copyright notices
John W. Eaton <jwe@octave.org>
parents: 27919
diff changeset
7 // See the file COPYRIGHT.md in the top-level directory of this
bd51beb6205e update formatting of copyright notices
John W. Eaton <jwe@octave.org>
parents: 27919
diff changeset
8 // distribution or <https://octave.org/copyright/>.
bd51beb6205e update formatting of copyright notices
John W. Eaton <jwe@octave.org>
parents: 27919
diff changeset
9 //
bd51beb6205e update formatting of copyright notices
John W. Eaton <jwe@octave.org>
parents: 27919
diff changeset
10 // This file is part of Octave.
bd51beb6205e update formatting of copyright notices
John W. Eaton <jwe@octave.org>
parents: 27919
diff changeset
11 //
bd51beb6205e update formatting of copyright notices
John W. Eaton <jwe@octave.org>
parents: 27919
diff changeset
12 // Octave is free software: you can redistribute it and/or modify it
bd51beb6205e update formatting of copyright notices
John W. Eaton <jwe@octave.org>
parents: 27919
diff changeset
13 // under the terms of the GNU General Public License as published by
bd51beb6205e update formatting of copyright notices
John W. Eaton <jwe@octave.org>
parents: 27919
diff changeset
14 // the Free Software Foundation, either version 3 of the License, or
bd51beb6205e update formatting of copyright notices
John W. Eaton <jwe@octave.org>
parents: 27919
diff changeset
15 // (at your option) any later version.
bd51beb6205e update formatting of copyright notices
John W. Eaton <jwe@octave.org>
parents: 27919
diff changeset
16 //
bd51beb6205e update formatting of copyright notices
John W. Eaton <jwe@octave.org>
parents: 27919
diff changeset
17 // Octave is distributed in the hope that it will be useful, but
bd51beb6205e update formatting of copyright notices
John W. Eaton <jwe@octave.org>
parents: 27919
diff changeset
18 // WITHOUT ANY WARRANTY; without even the implied warranty of
bd51beb6205e update formatting of copyright notices
John W. Eaton <jwe@octave.org>
parents: 27919
diff changeset
19 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
bd51beb6205e update formatting of copyright notices
John W. Eaton <jwe@octave.org>
parents: 27919
diff changeset
20 // GNU General Public License for more details.
bd51beb6205e update formatting of copyright notices
John W. Eaton <jwe@octave.org>
parents: 27919
diff changeset
21 //
bd51beb6205e update formatting of copyright notices
John W. Eaton <jwe@octave.org>
parents: 27919
diff changeset
22 // You should have received a copy of the GNU General Public License
bd51beb6205e update formatting of copyright notices
John W. Eaton <jwe@octave.org>
parents: 27919
diff changeset
23 // along with Octave; see the file COPYING. If not, see
bd51beb6205e update formatting of copyright notices
John W. Eaton <jwe@octave.org>
parents: 27919
diff changeset
24 // <https://www.gnu.org/licenses/>.
bd51beb6205e update formatting of copyright notices
John W. Eaton <jwe@octave.org>
parents: 27919
diff changeset
25 //
bd51beb6205e update formatting of copyright notices
John W. Eaton <jwe@octave.org>
parents: 27919
diff changeset
26 ////////////////////////////////////////////////////////////////////////
2163
8901e415035a [project @ 1996-05-13 10:35:04 by jwe]
jwe
parents:
diff changeset
27
21724
aba2e6293dd8 use "#if ..." consistently instead of "#ifdef" and "#ifndef"
John W. Eaton <jwe@octave.org>
parents: 21422
diff changeset
28 #if defined (HAVE_CONFIG_H)
21301
40de9f8f23a6 Use '#include "config.h"' rather than <config.h>.
Rik <rik@octave.org>
parents: 21220
diff changeset
29 # include "config.h"
9523
0ce82753dd72 more configure changes for libraries
John W. Eaton <jwe@octave.org>
parents: 9519
diff changeset
30 #endif
0ce82753dd72 more configure changes for libraries
John W. Eaton <jwe@octave.org>
parents: 9519
diff changeset
31
21220
d78e45987d6a rename octave::build_env namespace from octave::config
John W. Eaton <jwe@octave.org>
parents: 21200
diff changeset
32 #include "build-env.h"
9523
0ce82753dd72 more configure changes for libraries
John W. Eaton <jwe@octave.org>
parents: 9519
diff changeset
33
21181
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents: 21140
diff changeset
34 namespace octave
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents: 21140
diff changeset
35 {
21220
d78e45987d6a rename octave::build_env namespace from octave::config
John W. Eaton <jwe@octave.org>
parents: 21200
diff changeset
36 namespace build_env
21181
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 *AMD_CPPFLAGS = %OCTAVE_CONF_AMD_CPPFLAGS%;
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 *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
41
21181
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents: 21140
diff changeset
42 const char *AMD_LIBS = %OCTAVE_CONF_AMD_LIBS%;
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 *ARFLAGS = %OCTAVE_CONF_ARFLAGS%;
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 *AR = %OCTAVE_CONF_AR%;
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_CPPFLAGS = %OCTAVE_CONF_ARPACK_CPPFLAGS%;
9514
af86991d8d47 configure tweaks
John W. Eaton <jwe@octave.org>
parents: 9187
diff changeset
49
21181
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents: 21140
diff changeset
50 const char *ARPACK_LDFLAGS = %OCTAVE_CONF_ARPACK_LDFLAGS%;
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_LIBS = %OCTAVE_CONF_ARPACK_LIBS%;
2163
8901e415035a [project @ 1996-05-13 10:35:04 by jwe]
jwe
parents:
diff changeset
53
21181
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents: 21140
diff changeset
54 const char *BLAS_LIBS = %OCTAVE_CONF_BLAS_LIBS%;
6311
e2a1aca62551 [project @ 2007-02-15 21:18:34 by jwe]
jwe
parents: 6043
diff changeset
55
21181
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents: 21140
diff changeset
56 const char *CAMD_CPPFLAGS = %OCTAVE_CONF_CAMD_CPPFLAGS%;
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 *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
59
21181
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents: 21140
diff changeset
60 const char *CAMD_LIBS = %OCTAVE_CONF_CAMD_LIBS%;
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 *CARBON_LIBS = %OCTAVE_CONF_CARBON_LIBS%;
2163
8901e415035a [project @ 1996-05-13 10:35:04 by jwe]
jwe
parents:
diff changeset
63
21181
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents: 21140
diff changeset
64 const char *CC = %OCTAVE_CONF_CC%;
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_CPPFLAGS = %OCTAVE_CONF_CCOLAMD_CPPFLAGS%;
3859
890a7e4c1362 [project @ 2001-11-09 17:05:08 by jwe]
jwe
parents: 3822
diff changeset
67
21181
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents: 21140
diff changeset
68 const char *CCOLAMD_LDFLAGS = %OCTAVE_CONF_CCOLAMD_LDFLAGS%;
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_LIBS = %OCTAVE_CONF_CCOLAMD_LIBS%;
3584
aa31644d9779 [project @ 2000-02-07 09:24:38 by jwe]
jwe
parents: 2847
diff changeset
71
21181
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents: 21140
diff changeset
72 const char *CFLAGS = %OCTAVE_CONF_CFLAGS%;
3584
aa31644d9779 [project @ 2000-02-07 09:24:38 by jwe]
jwe
parents: 2847
diff changeset
73
21181
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents: 21140
diff changeset
74 const char *CHOLMOD_CPPFLAGS = %OCTAVE_CONF_CHOLMOD_CPPFLAGS%;
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 *CHOLMOD_LDFLAGS = %OCTAVE_CONF_CHOLMOD_LDFLAGS%;
2163
8901e415035a [project @ 1996-05-13 10:35:04 by jwe]
jwe
parents:
diff changeset
77
21181
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents: 21140
diff changeset
78 const char *CHOLMOD_LIBS = %OCTAVE_CONF_CHOLMOD_LIBS%;
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_CPPFLAGS = %OCTAVE_CONF_COLAMD_CPPFLAGS%;
3584
aa31644d9779 [project @ 2000-02-07 09:24:38 by jwe]
jwe
parents: 2847
diff changeset
81
21181
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents: 21140
diff changeset
82 const char *COLAMD_LDFLAGS = %OCTAVE_CONF_COLAMD_LDFLAGS%;
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_LIBS = %OCTAVE_CONF_COLAMD_LIBS%;
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 *CPICFLAG = %OCTAVE_CONF_CPICFLAG%;
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 *CPPFLAGS = %OCTAVE_CONF_CPPFLAGS%;
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 *CURL_CPPFLAGS = %OCTAVE_CONF_CURL_CPPFLAGS%;
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 *CURL_LDFLAGS = %OCTAVE_CONF_CURL_LDFLAGS%;
2163
8901e415035a [project @ 1996-05-13 10:35:04 by jwe]
jwe
parents:
diff changeset
93
21181
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents: 21140
diff changeset
94 const char *CURL_LIBS = %OCTAVE_CONF_CURL_LIBS%;
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_CPPFLAGS = %OCTAVE_CONF_CXSPARSE_CPPFLAGS%;
3584
aa31644d9779 [project @ 2000-02-07 09:24:38 by jwe]
jwe
parents: 2847
diff changeset
97
21181
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents: 21140
diff changeset
98 const char *CXSPARSE_LDFLAGS = %OCTAVE_CONF_CXSPARSE_LDFLAGS%;
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_LIBS = %OCTAVE_CONF_CXSPARSE_LIBS%;
2163
8901e415035a [project @ 1996-05-13 10:35:04 by jwe]
jwe
parents:
diff changeset
101
21181
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents: 21140
diff changeset
102 const char *CXXCPP = %OCTAVE_CONF_CXXCPP%;
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 *CXXFLAGS = %OCTAVE_CONF_CXXFLAGS%;
3584
aa31644d9779 [project @ 2000-02-07 09:24:38 by jwe]
jwe
parents: 2847
diff changeset
105
21181
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents: 21140
diff changeset
106 const char *CXXPICFLAG = %OCTAVE_CONF_CXXPICFLAG%;
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 *CXX = %OCTAVE_CONF_CXX%;
9575
55ecaefb7d0f Use pkg-config to configure GraphicsMagick++.
David Grundberg <individ@acc.umu.se>
parents: 9572
diff changeset
109
21181
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents: 21140
diff changeset
110 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
111
21181
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents: 21140
diff changeset
112 const char *DEFS = %OCTAVE_CONF_DEFS%;
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 *DL_LDFLAGS = %OCTAVE_CONF_DL_LDFLAGS%;
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 *EXEEXT = %OCTAVE_CONF_EXEEXT%;
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 *GCC_VERSION = %OCTAVE_CONF_GCC_VERSION%;
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents: 21140
diff changeset
119
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents: 21140
diff changeset
120 const char *GXX_VERSION = %OCTAVE_CONF_GXX_VERSION%;
14899
f25d2224fa02 Initial JIT support
Max Brister <max@2bass.com>
parents: 14547
diff changeset
121
21181
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents: 21140
diff changeset
122 const char *F77 = %OCTAVE_CONF_F77%;
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents: 21140
diff changeset
123
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents: 21140
diff changeset
124 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
125
21181
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents: 21140
diff changeset
126 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
127
21181
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents: 21140
diff changeset
128 const char *FFLAGS = %OCTAVE_CONF_FFLAGS%;
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents: 21140
diff changeset
129
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents: 21140
diff changeset
130 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
131
21181
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents: 21140
diff changeset
132 const char *FFTW3_LDFLAGS = %OCTAVE_CONF_FFTW3_LDFLAGS%;
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents: 21140
diff changeset
133
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents: 21140
diff changeset
134 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
135
21181
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents: 21140
diff changeset
136 const char *FFTW3F_CPPFLAGS = %OCTAVE_CONF_FFTW3F_CPPFLAGS%;
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 *FFTW3F_LDFLAGS = %OCTAVE_CONF_FFTW3F_LDFLAGS%;
3591
b35c6af4c49c [project @ 2000-02-08 19:19:17 by jwe]
jwe
parents: 3584
diff changeset
139
21181
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents: 21140
diff changeset
140 const char *FFTW3F_LIBS = %OCTAVE_CONF_FFTW3F_LIBS%;
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 *FLIBS = %OCTAVE_CONF_FLIBS%;
6311
e2a1aca62551 [project @ 2007-02-15 21:18:34 by jwe]
jwe
parents: 6043
diff changeset
143
21181
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents: 21140
diff changeset
144 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
145
21181
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents: 21140
diff changeset
146 const char *FLTK_LDFLAGS = %OCTAVE_CONF_FLTK_LDFLAGS%;
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents: 21140
diff changeset
147
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents: 21140
diff changeset
148 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
149
21181
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents: 21140
diff changeset
150 const char *FONTCONFIG_CPPFLAGS = %OCTAVE_CONF_FONTCONFIG_CPPFLAGS%;
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents: 21140
diff changeset
151
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents: 21140
diff changeset
152 const char *FONTCONFIG_LIBS = %OCTAVE_CONF_FONTCONFIG_LIBS%;
9514
af86991d8d47 configure tweaks
John W. Eaton <jwe@octave.org>
parents: 9187
diff changeset
153
21181
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents: 21140
diff changeset
154 const char *FPICFLAG = %OCTAVE_CONF_FPICFLAG%;
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_CPPFLAGS = %OCTAVE_CONF_FT2_CPPFLAGS%;
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents: 21140
diff changeset
157
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents: 21140
diff changeset
158 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
159
21181
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents: 21140
diff changeset
160 const char *GLPK_CPPFLAGS = %OCTAVE_CONF_GLPK_CPPFLAGS%;
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents: 21140
diff changeset
161
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents: 21140
diff changeset
162 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
163
21181
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents: 21140
diff changeset
164 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
165
21181
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents: 21140
diff changeset
166 const char *GNUPLOT = %OCTAVE_CONF_GNUPLOT%;
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents: 21140
diff changeset
167
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents: 21140
diff changeset
168 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
169
21181
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents: 21140
diff changeset
170 const char *HDF5_LDFLAGS = %OCTAVE_CONF_HDF5_LDFLAGS%;
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents: 21140
diff changeset
171
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents: 21140
diff changeset
172 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
173
21181
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents: 21140
diff changeset
174 const char *INCLUDEDIR = %OCTAVE_CONF_INCLUDEDIR%;
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents: 21140
diff changeset
175
22899
31bd8a50d44c Add Sundials library support
Francesco Faccio <francesco.faccio@mail.polimi.it>
parents: 22755
diff changeset
176 const char *KLU_CPPFLAGS = %OCTAVE_CONF_KLU_CPPFLAGS%;
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_LDFLAGS = %OCTAVE_CONF_KLU_LDFLAGS%;
31bd8a50d44c Add Sundials library support
Francesco Faccio <francesco.faccio@mail.polimi.it>
parents: 22755
diff changeset
179
31bd8a50d44c Add Sundials library support
Francesco Faccio <francesco.faccio@mail.polimi.it>
parents: 22755
diff changeset
180 const char *KLU_LIBS = %OCTAVE_CONF_KLU_LIBS%;
31bd8a50d44c Add Sundials library support
Francesco Faccio <francesco.faccio@mail.polimi.it>
parents: 22755
diff changeset
181
21181
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents: 21140
diff changeset
182 const char *LAPACK_LIBS = %OCTAVE_CONF_LAPACK_LIBS%;
3859
890a7e4c1362 [project @ 2001-11-09 17:05:08 by jwe]
jwe
parents: 3822
diff changeset
183
21181
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents: 21140
diff changeset
184 const char *LDFLAGS = %OCTAVE_CONF_LDFLAGS%;
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents: 21140
diff changeset
185
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 *MKOCTFILE_DL_LDFLAGS = %OCTAVE_CONF_MKOCTFILE_DL_LDFLAGS%;
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents: 21140
diff changeset
209
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents: 21140
diff changeset
210 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
211
21181
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents: 21140
diff changeset
212 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
213
21181
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents: 21140
diff changeset
214 const char *OCTINCLUDEDIR = %OCTAVE_CONF_OCTINCLUDEDIR%;
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 *OCTLIBDIR = %OCTAVE_CONF_OCTLIBDIR%;
3584
aa31644d9779 [project @ 2000-02-07 09:24:38 by jwe]
jwe
parents: 2847
diff changeset
217
21181
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents: 21140
diff changeset
218 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
219
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents: 21140
diff changeset
220 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
221
21181
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents: 21140
diff changeset
222 const char *OPENGL_LIBS = %OCTAVE_CONF_OPENGL_LIBS%;
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 *PCRE_CPPFLAGS = %OCTAVE_CONF_PCRE_CPPFLAGS%;
3584
aa31644d9779 [project @ 2000-02-07 09:24:38 by jwe]
jwe
parents: 2847
diff changeset
225
23005
8e9dd0d6e337 update check for pcre library to use pkg-config (bug #49993)
John W. Eaton <jwe@octave.org>
parents: 22899
diff changeset
226 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
227
21181
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents: 21140
diff changeset
228 const char *PCRE_LIBS = %OCTAVE_CONF_PCRE_LIBS%;
3584
aa31644d9779 [project @ 2000-02-07 09:24:38 by jwe]
jwe
parents: 2847
diff changeset
229
21181
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents: 21140
diff changeset
230 const char *PREFIX = %OCTAVE_CONF_PREFIX%;
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents: 21140
diff changeset
231
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents: 21140
diff changeset
232 const char *PTHREAD_CFLAGS = %OCTAVE_CONF_PTHREAD_CFLAGS%;
2163
8901e415035a [project @ 1996-05-13 10:35:04 by jwe]
jwe
parents:
diff changeset
233
21181
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents: 21140
diff changeset
234 const char *PTHREAD_LIBS = %OCTAVE_CONF_PTHREAD_LIBS%;
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents: 21140
diff changeset
235
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents: 21140
diff changeset
236 const char *QHULL_CPPFLAGS = %OCTAVE_CONF_QHULL_CPPFLAGS%;
4759
364bbf35dbfa [project @ 2004-02-15 00:08:06 by jwe]
jwe
parents: 4378
diff changeset
237
21181
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents: 21140
diff changeset
238 const char *QHULL_LDFLAGS = %OCTAVE_CONF_QHULL_LDFLAGS%;
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 *QHULL_LIBS = %OCTAVE_CONF_QHULL_LIBS%;
3584
aa31644d9779 [project @ 2000-02-07 09:24:38 by jwe]
jwe
parents: 2847
diff changeset
241
21181
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents: 21140
diff changeset
242 const char *QRUPDATE_CPPFLAGS = %OCTAVE_CONF_QRUPDATE_CPPFLAGS%;
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 *QRUPDATE_LDFLAGS = %OCTAVE_CONF_QRUPDATE_LDFLAGS%;
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 *QRUPDATE_LIBS = %OCTAVE_CONF_QRUPDATE_LIBS%;
2163
8901e415035a [project @ 1996-05-13 10:35:04 by jwe]
jwe
parents:
diff changeset
247
21181
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents: 21140
diff changeset
248 const char *QT_CPPFLAGS = %OCTAVE_CONF_QT_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 *QT_LDFLAGS = %OCTAVE_CONF_QT_LDFLAGS%;
9515
eee9b3150446 more configure tweaks
John W. Eaton <jwe@octave.org>
parents: 9514
diff changeset
251
21181
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents: 21140
diff changeset
252 const char *QT_LIBS = %OCTAVE_CONF_QT_LIBS%;
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents: 21140
diff changeset
253
25931
332be8be16eb dynamically load qt graphics
John W. Eaton <jwe@octave.org>
parents: 25103
diff changeset
254 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
255
21181
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents: 21140
diff changeset
256 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
257
21181
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents: 21140
diff changeset
258 const char *RDYNAMIC_FLAG = %OCTAVE_CONF_RDYNAMIC_FLAG%;
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents: 21140
diff changeset
259
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents: 21140
diff changeset
260 const char *READLINE_LIBS = %OCTAVE_CONF_READLINE_LIBS%;
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 *SHARED_LIBS = %OCTAVE_CONF_SHARED_LIBS%;
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents: 21140
diff changeset
263
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents: 21140
diff changeset
264 const char *SH_LDFLAGS = %OCTAVE_CONF_SH_LDFLAGS%;
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 *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
267
23990
6f56efc098bd check for suitesparse config library before other suitesparse libraries
John W. Eaton <jwe@octave.org>
parents: 23220
diff changeset
268 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
269
22899
31bd8a50d44c Add Sundials library support
Francesco Faccio <francesco.faccio@mail.polimi.it>
parents: 22755
diff changeset
270 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
271
31bd8a50d44c Add Sundials library support
Francesco Faccio <francesco.faccio@mail.polimi.it>
parents: 22755
diff changeset
272 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
273
31bd8a50d44c Add Sundials library support
Francesco Faccio <francesco.faccio@mail.polimi.it>
parents: 22755
diff changeset
274 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
275
27277
db687716fed6 style fixes: generally aim to break long lines before operators, not after
John W. Eaton <jwe@octave.org>
parents: 26910
diff changeset
276 const char *SUNDIALS_NVECSERIAL_CPPFLAGS = %OCTAVE_CONF_SUNDIALS_NVECSERIAL_CPPFLAGS%;
22899
31bd8a50d44c Add Sundials library support
Francesco Faccio <francesco.faccio@mail.polimi.it>
parents: 22755
diff changeset
277
27277
db687716fed6 style fixes: generally aim to break long lines before operators, not after
John W. Eaton <jwe@octave.org>
parents: 26910
diff changeset
278 const char *SUNDIALS_NVECSERIAL_LDFLAGS = %OCTAVE_CONF_SUNDIALS_NVECSERIAL_LDFLAGS%;
22899
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_NVECSERIAL_LIBS = %OCTAVE_CONF_SUNDIALS_NVECSERIAL_LIBS%;
31bd8a50d44c Add Sundials library support
Francesco Faccio <francesco.faccio@mail.polimi.it>
parents: 22755
diff changeset
281
26910
075c4d3bf1de use OCTAVE_CHECK_LIB to check for sundials_sunlinsolklu library
John W. Eaton <jwe@octave.org>
parents: 26603
diff changeset
282 const char *SUNDIALS_SUNLINSOLKLU_CPPFLAGS = %OCTAVE_CONF_SUNDIALS_SUNLINSOLKLU_CPPFLAGS%;
075c4d3bf1de use OCTAVE_CHECK_LIB to check for sundials_sunlinsolklu library
John W. Eaton <jwe@octave.org>
parents: 26603
diff changeset
283
075c4d3bf1de use OCTAVE_CHECK_LIB to check for sundials_sunlinsolklu library
John W. Eaton <jwe@octave.org>
parents: 26603
diff changeset
284 const char *SUNDIALS_SUNLINSOLKLU_LDFLAGS = %OCTAVE_CONF_SUNDIALS_SUNLINSOLKLU_LDFLAGS%;
075c4d3bf1de use OCTAVE_CHECK_LIB to check for sundials_sunlinsolklu library
John W. Eaton <jwe@octave.org>
parents: 26603
diff changeset
285
075c4d3bf1de use OCTAVE_CHECK_LIB to check for sundials_sunlinsolklu library
John W. Eaton <jwe@octave.org>
parents: 26603
diff changeset
286 const char *SUNDIALS_SUNLINSOLKLU_LIBS = %OCTAVE_CONF_SUNDIALS_SUNLINSOLKLU_LIBS%;
075c4d3bf1de use OCTAVE_CHECK_LIB to check for sundials_sunlinsolklu library
John W. Eaton <jwe@octave.org>
parents: 26603
diff changeset
287
21181
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents: 21140
diff changeset
288 const char *TERM_LIBS = %OCTAVE_CONF_TERM_LIBS%;
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents: 21140
diff changeset
289
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents: 21140
diff changeset
290 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
291
21181
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents: 21140
diff changeset
292 const char *UMFPACK_LDFLAGS = %OCTAVE_CONF_UMFPACK_LDFLAGS%;
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_LIBS = %OCTAVE_CONF_UMFPACK_LIBS%;
2163
8901e415035a [project @ 1996-05-13 10:35:04 by jwe]
jwe
parents:
diff changeset
295
21181
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents: 21140
diff changeset
296 const char *WARN_CFLAGS = %OCTAVE_CONF_WARN_CFLAGS%;
2163
8901e415035a [project @ 1996-05-13 10:35:04 by jwe]
jwe
parents:
diff changeset
297
21181
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents: 21140
diff changeset
298 const char *WARN_CXXFLAGS = %OCTAVE_CONF_WARN_CXXFLAGS%;
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 *X11_INCFLAGS = %OCTAVE_CONF_X11_INCFLAGS%;
3584
aa31644d9779 [project @ 2000-02-07 09:24:38 by jwe]
jwe
parents: 2847
diff changeset
301
21181
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents: 21140
diff changeset
302 const char *X11_LIBS = %OCTAVE_CONF_X11_LIBS%;
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 *XTRA_CFLAGS = %OCTAVE_CONF_XTRA_CFLAGS%;
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 *XTRA_CXXFLAGS = %OCTAVE_CONF_XTRA_CXXFLAGS%;
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 *YACC = %OCTAVE_CONF_YACC%;
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 *YFLAGS = %OCTAVE_CONF_YFLAGS%;
9538
d0239bddf621 use OCTAVE_CHECK_LIB to check for zlib
John W. Eaton <jwe@octave.org>
parents: 9523
diff changeset
311
21181
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents: 21140
diff changeset
312 const char *Z_CPPFLAGS = %OCTAVE_CONF_Z_CPPFLAGS%;
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 *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
315
21181
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents: 21140
diff changeset
316 const char *Z_LIBS = %OCTAVE_CONF_Z_LIBS%;
9514
af86991d8d47 configure tweaks
John W. Eaton <jwe@octave.org>
parents: 9187
diff changeset
317
21181
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents: 21140
diff changeset
318 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
319 }
8758addcf265 maint: Remove ';' at end of namespace declaration.
Rik <rik@octave.org>
parents: 22407
diff changeset
320 }