annotate libinterp/build-env.h @ 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.h@f7d1050b9b53
children 1473547f50f5
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
21181
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents:
diff changeset
1 /*
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents:
diff changeset
2
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents:
diff changeset
3 Copyright (C) 1996-2015 John W. Eaton
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents:
diff changeset
4
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents:
diff changeset
5 This file is part of Octave.
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents:
diff changeset
6
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents:
diff changeset
7 Octave is free software; you can redistribute it and/or modify it
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents:
diff changeset
8 under the terms of the GNU General Public License as published by the
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents:
diff changeset
9 Free Software Foundation; either version 3 of the License, or (at your
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents:
diff changeset
10 option) any later version.
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents:
diff changeset
11
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents:
diff changeset
12 Octave is distributed in the hope that it will be useful, but WITHOUT
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents:
diff changeset
13 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents:
diff changeset
14 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents:
diff changeset
15 for more details.
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents:
diff changeset
16
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents:
diff changeset
17 You should have received a copy of the GNU General Public License
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents:
diff changeset
18 along with Octave; see the file COPYING. If not, see
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents:
diff changeset
19 <http://www.gnu.org/licenses/>.
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents:
diff changeset
20
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents:
diff changeset
21 */
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents:
diff changeset
22
21220
d78e45987d6a rename octave::build_env namespace from octave::config
John W. Eaton <jwe@octave.org>
parents: 21213
diff changeset
23 #if ! defined (octave_build_env_h)
d78e45987d6a rename octave::build_env namespace from octave::config
John W. Eaton <jwe@octave.org>
parents: 21213
diff changeset
24 #define octave_build_env_h 1
d78e45987d6a rename octave::build_env namespace from octave::config
John W. Eaton <jwe@octave.org>
parents: 21213
diff changeset
25
d78e45987d6a rename octave::build_env namespace from octave::config
John W. Eaton <jwe@octave.org>
parents: 21213
diff changeset
26 #include "oct-map.h"
21181
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents:
diff changeset
27
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents:
diff changeset
28 namespace octave
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents:
diff changeset
29 {
21220
d78e45987d6a rename octave::build_env namespace from octave::config
John W. Eaton <jwe@octave.org>
parents: 21213
diff changeset
30 namespace build_env
21181
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents:
diff changeset
31 {
21220
d78e45987d6a rename octave::build_env namespace from octave::config
John W. Eaton <jwe@octave.org>
parents: 21213
diff changeset
32 extern OCTAVE_API octave_scalar_map features (void);
d78e45987d6a rename octave::build_env namespace from octave::config
John W. Eaton <jwe@octave.org>
parents: 21213
diff changeset
33
21181
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents:
diff changeset
34 extern const char *ALL_CFLAGS;
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents:
diff changeset
35 extern const char *ALL_CXXFLAGS;
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents:
diff changeset
36 extern const char *ALL_FFLAGS;
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents:
diff changeset
37 extern const char *ALL_LDFLAGS;
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents:
diff changeset
38 extern const char *AMD_CPPFLAGS;
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents:
diff changeset
39 extern const char *AMD_LDFLAGS;
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents:
diff changeset
40 extern const char *AMD_LIBS;
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents:
diff changeset
41 extern const char *ARFLAGS;
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents:
diff changeset
42 extern const char *AR;
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents:
diff changeset
43 extern const char *ARPACK_CPPFLAGS;
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents:
diff changeset
44 extern const char *ARPACK_LDFLAGS;
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents:
diff changeset
45 extern const char *ARPACK_LIBS;
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents:
diff changeset
46 extern const char *BLAS_LIBS;
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents:
diff changeset
47 extern const char *CAMD_CPPFLAGS;
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents:
diff changeset
48 extern const char *CAMD_LDFLAGS;
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents:
diff changeset
49 extern const char *CAMD_LIBS;
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents:
diff changeset
50 extern const char *CARBON_LIBS;
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents:
diff changeset
51 extern const char *CC;
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents:
diff changeset
52 extern const char *CCOLAMD_CPPFLAGS;
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents:
diff changeset
53 extern const char *CCOLAMD_LDFLAGS;
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents:
diff changeset
54 extern const char *CCOLAMD_LIBS;
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents:
diff changeset
55 extern const char *CFLAGS;
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents:
diff changeset
56 extern const char *CHOLMOD_CPPFLAGS;
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents:
diff changeset
57 extern const char *CHOLMOD_LDFLAGS;
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents:
diff changeset
58 extern const char *CHOLMOD_LIBS;
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents:
diff changeset
59 extern const char *COLAMD_CPPFLAGS;
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents:
diff changeset
60 extern const char *COLAMD_LDFLAGS;
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents:
diff changeset
61 extern const char *COLAMD_LIBS;
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents:
diff changeset
62 extern const char *CPICFLAG;
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents:
diff changeset
63 extern const char *CPPFLAGS;
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents:
diff changeset
64 extern const char *CURL_CPPFLAGS;
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents:
diff changeset
65 extern const char *CURL_LDFLAGS;
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents:
diff changeset
66 extern const char *CURL_LIBS;
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents:
diff changeset
67 extern const char *CXSPARSE_CPPFLAGS;
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents:
diff changeset
68 extern const char *CXSPARSE_LDFLAGS;
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents:
diff changeset
69 extern const char *CXSPARSE_LIBS;
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents:
diff changeset
70 extern const char *CXXCPP;
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents:
diff changeset
71 extern const char *CXXFLAGS;
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents:
diff changeset
72 extern const char *CXXPICFLAG;
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents:
diff changeset
73 extern const char *CXX;
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents:
diff changeset
74 extern const char *DEFAULT_PAGER;
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents:
diff changeset
75 extern const char *DEFS;
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents:
diff changeset
76 extern const char *DL_LD;
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents:
diff changeset
77 extern const char *DL_LDFLAGS;
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents:
diff changeset
78 extern const char *DL_LIBS;
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents:
diff changeset
79 extern const char *EXEEXT;
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents:
diff changeset
80 extern const char *GCC_VERSION;
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents:
diff changeset
81 extern const char *GXX_VERSION;
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents:
diff changeset
82 extern const char *F77;
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents:
diff changeset
83 extern const char *F77_FLOAT_STORE_FLAG;
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents:
diff changeset
84 extern const char *F77_INTEGER_8_FLAG;
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents:
diff changeset
85 extern const char *FFLAGS;
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents:
diff changeset
86 extern const char *FFTW3_CPPFLAGS;
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents:
diff changeset
87 extern const char *FFTW3_LDFLAGS;
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents:
diff changeset
88 extern const char *FFTW3_LIBS;
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents:
diff changeset
89 extern const char *FFTW3F_CPPFLAGS;
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents:
diff changeset
90 extern const char *FFTW3F_LDFLAGS;
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents:
diff changeset
91 extern const char *FFTW3F_LIBS;
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents:
diff changeset
92 extern const char *FLIBS;
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents:
diff changeset
93 extern const char *FLTK_CPPFLAGS;
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents:
diff changeset
94 extern const char *FLTK_LDFLAGS;
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents:
diff changeset
95 extern const char *FLTK_LIBS;
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents:
diff changeset
96 extern const char *FONTCONFIG_CPPFLAGS;
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents:
diff changeset
97 extern const char *FONTCONFIG_LIBS;
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents:
diff changeset
98 extern const char *FPICFLAG;
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents:
diff changeset
99 extern const char *FT2_CPPFLAGS;
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents:
diff changeset
100 extern const char *FT2_LIBS;
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents:
diff changeset
101 extern const char *GLPK_CPPFLAGS;
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents:
diff changeset
102 extern const char *GLPK_LDFLAGS;
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents:
diff changeset
103 extern const char *GLPK_LIBS;
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents:
diff changeset
104 extern const char *GNUPLOT;
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents:
diff changeset
105 extern const char *HDF5_CPPFLAGS;
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents:
diff changeset
106 extern const char *HDF5_LDFLAGS;
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents:
diff changeset
107 extern const char *HDF5_LIBS;
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents:
diff changeset
108 extern const char *INCLUDEDIR;
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents:
diff changeset
109 extern const char *LAPACK_LIBS;
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents:
diff changeset
110 extern const char *LDFLAGS;
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents:
diff changeset
111 extern const char *LD_CXX;
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents:
diff changeset
112 extern const char *LD_STATIC_FLAG;
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents:
diff changeset
113 extern const char *LEXLIB;
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents:
diff changeset
114 extern const char *LEX;
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents:
diff changeset
115 extern const char *LFLAGS;
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents:
diff changeset
116 extern const char *LIBEXT;
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents:
diff changeset
117 extern const char *LIBFLAGS;
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents:
diff changeset
118 extern const char *LIBOCTAVE;
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents:
diff changeset
119 extern const char *LIBOCTINTERP;
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents:
diff changeset
120 extern const char *LIBS;
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents:
diff changeset
121 extern const char *LN_S;
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents:
diff changeset
122 extern const char *MAGICK_CPPFLAGS;
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents:
diff changeset
123 extern const char *MAGICK_LDFLAGS;
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents:
diff changeset
124 extern const char *MAGICK_LIBS;
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents:
diff changeset
125 extern const char *LLVM_CPPFLAGS;
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents:
diff changeset
126 extern const char *LLVM_LDFLAGS;
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents:
diff changeset
127 extern const char *LLVM_LIBS;
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents:
diff changeset
128 extern const char *MKOCTFILE_DL_LDFLAGS;
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents:
diff changeset
129 extern const char *OCTAVE_LINK_DEPS;
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents:
diff changeset
130 extern const char *OCTAVE_LINK_OPTS;
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents:
diff changeset
131 extern const char *OCTINCLUDEDIR;
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents:
diff changeset
132 extern const char *OCTLIBDIR;
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents:
diff changeset
133 extern const char *OCT_LINK_DEPS;
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents:
diff changeset
134 extern const char *OCT_LINK_OPTS;
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents:
diff changeset
135 extern const char *OPENGL_LIBS;
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents:
diff changeset
136 extern const char *OSMESA_CPPFLAGS;
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents:
diff changeset
137 extern const char *OSMESA_LDFLAGS;
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents:
diff changeset
138 extern const char *OSMESA_LIBS;
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents:
diff changeset
139 extern const char *PCRE_CPPFLAGS;
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents:
diff changeset
140 extern const char *PCRE_LIBS;
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents:
diff changeset
141 extern const char *PREFIX;
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents:
diff changeset
142 extern const char *PTHREAD_CFLAGS;
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents:
diff changeset
143 extern const char *PTHREAD_LIBS;
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents:
diff changeset
144 extern const char *QHULL_CPPFLAGS;
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents:
diff changeset
145 extern const char *QHULL_LDFLAGS;
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents:
diff changeset
146 extern const char *QHULL_LIBS;
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents:
diff changeset
147 extern const char *QRUPDATE_CPPFLAGS;
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents:
diff changeset
148 extern const char *QRUPDATE_LDFLAGS;
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents:
diff changeset
149 extern const char *QRUPDATE_LIBS;
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents:
diff changeset
150 extern const char *QT_CPPFLAGS;
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents:
diff changeset
151 extern const char *QT_LDFLAGS;
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents:
diff changeset
152 extern const char *QT_LIBS;
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents:
diff changeset
153 extern const char *RANLIB;
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents:
diff changeset
154 extern const char *RDYNAMIC_FLAG;
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents:
diff changeset
155 extern const char *READLINE_LIBS;
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents:
diff changeset
156 extern const char *SED;
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents:
diff changeset
157 extern const char *SHARED_LIBS;
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents:
diff changeset
158 extern const char *SHLEXT;
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents:
diff changeset
159 extern const char *SHLEXT_VER;
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents:
diff changeset
160 extern const char *SH_LD;
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents:
diff changeset
161 extern const char *SH_LDFLAGS;
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents:
diff changeset
162 extern const char *SONAME_FLAGS;
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents:
diff changeset
163 extern const char *STATIC_LIBS;
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents:
diff changeset
164 extern const char *TERM_LIBS;
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents:
diff changeset
165 extern const char *UMFPACK_CPPFLAGS;
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents:
diff changeset
166 extern const char *UMFPACK_LDFLAGS;
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents:
diff changeset
167 extern const char *UMFPACK_LIBS;
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents:
diff changeset
168 extern const char *WARN_CFLAGS;
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents:
diff changeset
169 extern const char *WARN_CXXFLAGS;
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents:
diff changeset
170 extern const char *X11_INCFLAGS;
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents:
diff changeset
171 extern const char *X11_LIBS;
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents:
diff changeset
172 extern const char *XTRA_CFLAGS;
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents:
diff changeset
173 extern const char *XTRA_CXXFLAGS;
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents:
diff changeset
174 extern const char *YACC;
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents:
diff changeset
175 extern const char *YFLAGS;
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents:
diff changeset
176 extern const char *Z_CPPFLAGS;
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents:
diff changeset
177 extern const char *Z_LDFLAGS;
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents:
diff changeset
178 extern const char *Z_LIBS;
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents:
diff changeset
179 extern const char *config_opts;
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents:
diff changeset
180 };
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents:
diff changeset
181 };
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents:
diff changeset
182
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents:
diff changeset
183 #endif