annotate libinterp/build-env.h @ 27923:bd51beb6205e

update formatting of copyright notices * Use <https://octave.org/copyright/> instead of <https://octave.org/COPYRIGHT.html/>. * For consistency with other comments in the Octave sources, use C++-style comments for copyright blocks in C and C++ files. * Use delimiters above and below copyright blocks that are appropriate for the language used in the file. * Eliminate extra spacing inside copyright blocks. * lex.ll (looks_like_copyright): Also allow newlines and carriage returns before the word "Copyright". * scripts/mk-doc.pl (gethelp): Also skip empty comment lines. * bp-table.cc, type.m: Adjust tests.
author John W. Eaton <jwe@octave.org>
date Wed, 08 Jan 2020 11:59:41 -0500
parents 1891570abac8
children d16d73a050b2 0a5b15007766
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
27923
bd51beb6205e update formatting of copyright notices
John W. Eaton <jwe@octave.org>
parents: 27919
diff changeset
1 ////////////////////////////////////////////////////////////////////////
bd51beb6205e update formatting of copyright notices
John W. Eaton <jwe@octave.org>
parents: 27919
diff changeset
2 //
bd51beb6205e update formatting of copyright notices
John W. Eaton <jwe@octave.org>
parents: 27919
diff changeset
3 // Copyright (C) 1996-2020 The Octave Project Developers
bd51beb6205e update formatting of copyright notices
John W. Eaton <jwe@octave.org>
parents: 27919
diff changeset
4 //
bd51beb6205e update formatting of copyright notices
John W. Eaton <jwe@octave.org>
parents: 27919
diff changeset
5 // 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
6 // distribution or <https://octave.org/copyright/>.
bd51beb6205e update formatting of copyright notices
John W. Eaton <jwe@octave.org>
parents: 27919
diff changeset
7 //
bd51beb6205e update formatting of copyright notices
John W. Eaton <jwe@octave.org>
parents: 27919
diff changeset
8 // This file is part of Octave.
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 // 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
11 // 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
12 // 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
13 // (at your option) any later version.
bd51beb6205e update formatting of copyright notices
John W. Eaton <jwe@octave.org>
parents: 27919
diff changeset
14 //
bd51beb6205e update formatting of copyright notices
John W. Eaton <jwe@octave.org>
parents: 27919
diff changeset
15 // 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
16 // 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
17 // 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
18 // GNU General Public License for more details.
bd51beb6205e update formatting of copyright notices
John W. Eaton <jwe@octave.org>
parents: 27919
diff changeset
19 //
bd51beb6205e update formatting of copyright notices
John W. Eaton <jwe@octave.org>
parents: 27919
diff changeset
20 // 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
21 // 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
22 // <https://www.gnu.org/licenses/>.
bd51beb6205e update formatting of copyright notices
John W. Eaton <jwe@octave.org>
parents: 27919
diff changeset
23 //
bd51beb6205e update formatting of copyright notices
John W. Eaton <jwe@octave.org>
parents: 27919
diff changeset
24 ////////////////////////////////////////////////////////////////////////
21181
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents:
diff changeset
25
21220
d78e45987d6a rename octave::build_env namespace from octave::config
John W. Eaton <jwe@octave.org>
parents: 21213
diff changeset
26 #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
27 #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
28
21244
1473547f50f5 include octave-config.h in public header files
John W. Eaton <jwe@octave.org>
parents: 21220
diff changeset
29 #include "octave-config.h"
1473547f50f5 include octave-config.h in public header files
John W. Eaton <jwe@octave.org>
parents: 21220
diff changeset
30
21220
d78e45987d6a rename octave::build_env namespace from octave::config
John W. Eaton <jwe@octave.org>
parents: 21213
diff changeset
31 #include "oct-map.h"
21181
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents:
diff changeset
32
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents:
diff changeset
33 namespace octave
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents:
diff changeset
34 {
21220
d78e45987d6a rename octave::build_env namespace from octave::config
John W. Eaton <jwe@octave.org>
parents: 21213
diff changeset
35 namespace build_env
21181
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents:
diff changeset
36 {
21220
d78e45987d6a rename octave::build_env namespace from octave::config
John W. Eaton <jwe@octave.org>
parents: 21213
diff changeset
37 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
38
21181
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents:
diff changeset
39 extern const char *AMD_CPPFLAGS;
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents:
diff changeset
40 extern const char *AMD_LDFLAGS;
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents:
diff changeset
41 extern const char *AMD_LIBS;
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents:
diff changeset
42 extern const char *ARFLAGS;
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents:
diff changeset
43 extern const char *AR;
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents:
diff changeset
44 extern const char *ARPACK_CPPFLAGS;
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents:
diff changeset
45 extern const char *ARPACK_LDFLAGS;
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents:
diff changeset
46 extern const char *ARPACK_LIBS;
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents:
diff changeset
47 extern const char *BLAS_LIBS;
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents:
diff changeset
48 extern const char *CAMD_CPPFLAGS;
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents:
diff changeset
49 extern const char *CAMD_LDFLAGS;
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents:
diff changeset
50 extern const char *CAMD_LIBS;
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents:
diff changeset
51 extern const char *CARBON_LIBS;
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents:
diff changeset
52 extern const char *CC;
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents:
diff changeset
53 extern const char *CCOLAMD_CPPFLAGS;
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents:
diff changeset
54 extern const char *CCOLAMD_LDFLAGS;
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents:
diff changeset
55 extern const char *CCOLAMD_LIBS;
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents:
diff changeset
56 extern const char *CFLAGS;
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents:
diff changeset
57 extern const char *CHOLMOD_CPPFLAGS;
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents:
diff changeset
58 extern const char *CHOLMOD_LDFLAGS;
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents:
diff changeset
59 extern const char *CHOLMOD_LIBS;
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents:
diff changeset
60 extern const char *COLAMD_CPPFLAGS;
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents:
diff changeset
61 extern const char *COLAMD_LDFLAGS;
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents:
diff changeset
62 extern const char *COLAMD_LIBS;
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents:
diff changeset
63 extern const char *CPICFLAG;
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents:
diff changeset
64 extern const char *CPPFLAGS;
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents:
diff changeset
65 extern const char *CURL_CPPFLAGS;
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents:
diff changeset
66 extern const char *CURL_LDFLAGS;
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents:
diff changeset
67 extern const char *CURL_LIBS;
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents:
diff changeset
68 extern const char *CXSPARSE_CPPFLAGS;
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents:
diff changeset
69 extern const char *CXSPARSE_LDFLAGS;
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents:
diff changeset
70 extern const char *CXSPARSE_LIBS;
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents:
diff changeset
71 extern const char *CXXCPP;
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents:
diff changeset
72 extern const char *CXXFLAGS;
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents:
diff changeset
73 extern const char *CXXPICFLAG;
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents:
diff changeset
74 extern const char *CXX;
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents:
diff changeset
75 extern const char *DEFAULT_PAGER;
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents:
diff changeset
76 extern const char *DEFS;
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 *EXEEXT;
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents:
diff changeset
79 extern const char *GCC_VERSION;
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents:
diff changeset
80 extern const char *GXX_VERSION;
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents:
diff changeset
81 extern const char *F77;
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents:
diff changeset
82 extern const char *F77_FLOAT_STORE_FLAG;
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents:
diff changeset
83 extern const char *F77_INTEGER_8_FLAG;
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents:
diff changeset
84 extern const char *FFLAGS;
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents:
diff changeset
85 extern const char *FFTW3_CPPFLAGS;
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents:
diff changeset
86 extern const char *FFTW3_LDFLAGS;
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents:
diff changeset
87 extern const char *FFTW3_LIBS;
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents:
diff changeset
88 extern const char *FFTW3F_CPPFLAGS;
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents:
diff changeset
89 extern const char *FFTW3F_LDFLAGS;
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents:
diff changeset
90 extern const char *FFTW3F_LIBS;
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents:
diff changeset
91 extern const char *FLIBS;
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents:
diff changeset
92 extern const char *FLTK_CPPFLAGS;
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents:
diff changeset
93 extern const char *FLTK_LDFLAGS;
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents:
diff changeset
94 extern const char *FLTK_LIBS;
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents:
diff changeset
95 extern const char *FONTCONFIG_CPPFLAGS;
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents:
diff changeset
96 extern const char *FONTCONFIG_LIBS;
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents:
diff changeset
97 extern const char *FPICFLAG;
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents:
diff changeset
98 extern const char *FT2_CPPFLAGS;
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents:
diff changeset
99 extern const char *FT2_LIBS;
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents:
diff changeset
100 extern const char *GLPK_CPPFLAGS;
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents:
diff changeset
101 extern const char *GLPK_LDFLAGS;
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents:
diff changeset
102 extern const char *GLPK_LIBS;
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents:
diff changeset
103 extern const char *GNUPLOT;
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents:
diff changeset
104 extern const char *HDF5_CPPFLAGS;
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents:
diff changeset
105 extern const char *HDF5_LDFLAGS;
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents:
diff changeset
106 extern const char *HDF5_LIBS;
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents:
diff changeset
107 extern const char *INCLUDEDIR;
22899
31bd8a50d44c Add Sundials library support
Francesco Faccio <francesco.faccio@mail.polimi.it>
parents: 22755
diff changeset
108 extern const char *KLU_CPPFLAGS;
31bd8a50d44c Add Sundials library support
Francesco Faccio <francesco.faccio@mail.polimi.it>
parents: 22755
diff changeset
109 extern const char *KLU_LDFLAGS;
31bd8a50d44c Add Sundials library support
Francesco Faccio <francesco.faccio@mail.polimi.it>
parents: 22755
diff changeset
110 extern const char *KLU_LIBS;
21181
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents:
diff changeset
111 extern const char *LAPACK_LIBS;
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents:
diff changeset
112 extern const char *LDFLAGS;
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents:
diff changeset
113 extern const char *LD_STATIC_FLAG;
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents:
diff changeset
114 extern const char *LEXLIB;
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents:
diff changeset
115 extern const char *LEX;
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents:
diff changeset
116 extern const char *LFLAGS;
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents:
diff changeset
117 extern const char *LIBOCTAVE;
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents:
diff changeset
118 extern const char *LIBOCTINTERP;
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents:
diff changeset
119 extern const char *LIBS;
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents:
diff changeset
120 extern const char *LN_S;
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents:
diff changeset
121 extern const char *MAGICK_CPPFLAGS;
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents:
diff changeset
122 extern const char *MAGICK_LDFLAGS;
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents:
diff changeset
123 extern const char *MAGICK_LIBS;
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents:
diff changeset
124 extern const char *LLVM_CPPFLAGS;
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents:
diff changeset
125 extern const char *LLVM_LDFLAGS;
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents:
diff changeset
126 extern const char *LLVM_LIBS;
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents:
diff changeset
127 extern const char *MKOCTFILE_DL_LDFLAGS;
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents:
diff changeset
128 extern const char *OCTAVE_LINK_DEPS;
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents:
diff changeset
129 extern const char *OCTAVE_LINK_OPTS;
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents:
diff changeset
130 extern const char *OCTINCLUDEDIR;
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents:
diff changeset
131 extern const char *OCTLIBDIR;
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents:
diff changeset
132 extern const char *OCT_LINK_DEPS;
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents:
diff changeset
133 extern const char *OCT_LINK_OPTS;
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents:
diff changeset
134 extern const char *OPENGL_LIBS;
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents:
diff changeset
135 extern const char *PCRE_CPPFLAGS;
23005
8e9dd0d6e337 update check for pcre library to use pkg-config (bug #49993)
John W. Eaton <jwe@octave.org>
parents: 22899
diff changeset
136 extern const char *PCRE_LDFLAGS;
21181
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents:
diff changeset
137 extern const char *PCRE_LIBS;
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents:
diff changeset
138 extern const char *PREFIX;
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents:
diff changeset
139 extern const char *PTHREAD_CFLAGS;
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents:
diff changeset
140 extern const char *PTHREAD_LIBS;
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents:
diff changeset
141 extern const char *QHULL_CPPFLAGS;
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents:
diff changeset
142 extern const char *QHULL_LDFLAGS;
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents:
diff changeset
143 extern const char *QHULL_LIBS;
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents:
diff changeset
144 extern const char *QRUPDATE_CPPFLAGS;
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents:
diff changeset
145 extern const char *QRUPDATE_LDFLAGS;
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents:
diff changeset
146 extern const char *QRUPDATE_LIBS;
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents:
diff changeset
147 extern const char *QT_CPPFLAGS;
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents:
diff changeset
148 extern const char *QT_LDFLAGS;
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents:
diff changeset
149 extern const char *QT_LIBS;
25931
332be8be16eb dynamically load qt graphics
John W. Eaton <jwe@octave.org>
parents: 25054
diff changeset
150 extern const char *QT_OPENGL_LIBS;
21181
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents:
diff changeset
151 extern const char *RANLIB;
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents:
diff changeset
152 extern const char *RDYNAMIC_FLAG;
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents:
diff changeset
153 extern const char *READLINE_LIBS;
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents:
diff changeset
154 extern const char *SHARED_LIBS;
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents:
diff changeset
155 extern const char *SH_LDFLAGS;
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents:
diff changeset
156 extern const char *STATIC_LIBS;
23990
6f56efc098bd check for suitesparse config library before other suitesparse libraries
John W. Eaton <jwe@octave.org>
parents: 23220
diff changeset
157 extern const char *SUITESPARSECONFIG_LIBS;
22899
31bd8a50d44c Add Sundials library support
Francesco Faccio <francesco.faccio@mail.polimi.it>
parents: 22755
diff changeset
158 extern const char *SUNDIALS_IDA_CPPFLAGS;
31bd8a50d44c Add Sundials library support
Francesco Faccio <francesco.faccio@mail.polimi.it>
parents: 22755
diff changeset
159 extern const char *SUNDIALS_IDA_LDFLAGS;
31bd8a50d44c Add Sundials library support
Francesco Faccio <francesco.faccio@mail.polimi.it>
parents: 22755
diff changeset
160 extern const char *SUNDIALS_IDA_LIBS;
31bd8a50d44c Add Sundials library support
Francesco Faccio <francesco.faccio@mail.polimi.it>
parents: 22755
diff changeset
161 extern const char *SUNDIALS_NVECSERIAL_CPPFLAGS;
31bd8a50d44c Add Sundials library support
Francesco Faccio <francesco.faccio@mail.polimi.it>
parents: 22755
diff changeset
162 extern const char *SUNDIALS_NVECSERIAL_LDFLAGS;
31bd8a50d44c Add Sundials library support
Francesco Faccio <francesco.faccio@mail.polimi.it>
parents: 22755
diff changeset
163 extern const char *SUNDIALS_NVECSERIAL_LIBS;
26910
075c4d3bf1de use OCTAVE_CHECK_LIB to check for sundials_sunlinsolklu library
John W. Eaton <jwe@octave.org>
parents: 26603
diff changeset
164 extern const char *SUNDIALS_SUNLINSOLKLU_CPPFLAGS;
075c4d3bf1de use OCTAVE_CHECK_LIB to check for sundials_sunlinsolklu library
John W. Eaton <jwe@octave.org>
parents: 26603
diff changeset
165 extern const char *SUNDIALS_SUNLINSOLKLU_LDFLAGS;
075c4d3bf1de use OCTAVE_CHECK_LIB to check for sundials_sunlinsolklu library
John W. Eaton <jwe@octave.org>
parents: 26603
diff changeset
166 extern const char *SUNDIALS_SUNLINSOLKLU_LIBS;
21181
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents:
diff changeset
167 extern const char *TERM_LIBS;
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents:
diff changeset
168 extern const char *UMFPACK_CPPFLAGS;
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents:
diff changeset
169 extern const char *UMFPACK_LDFLAGS;
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents:
diff changeset
170 extern const char *UMFPACK_LIBS;
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents:
diff changeset
171 extern const char *WARN_CFLAGS;
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents:
diff changeset
172 extern const char *WARN_CXXFLAGS;
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents:
diff changeset
173 extern const char *X11_INCFLAGS;
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents:
diff changeset
174 extern const char *X11_LIBS;
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents:
diff changeset
175 extern const char *XTRA_CFLAGS;
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents:
diff changeset
176 extern const char *XTRA_CXXFLAGS;
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents:
diff changeset
177 extern const char *YACC;
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents:
diff changeset
178 extern const char *YFLAGS;
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents:
diff changeset
179 extern const char *Z_CPPFLAGS;
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents:
diff changeset
180 extern const char *Z_LDFLAGS;
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents:
diff changeset
181 extern const char *Z_LIBS;
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents:
diff changeset
182 extern const char *config_opts;
22413
8758addcf265 maint: Remove ';' at end of namespace declaration.
Rik <rik@octave.org>
parents: 22407
diff changeset
183 }
8758addcf265 maint: Remove ';' at end of namespace declaration.
Rik <rik@octave.org>
parents: 22407
diff changeset
184 }
21181
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents:
diff changeset
185
a65b906e25bc revamp oct-conf.h
John W. Eaton <jwe@octave.org>
parents:
diff changeset
186 #endif