File: config.h.in

package info (click to toggle)
gretl 2019a-1
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 53,708 kB
  • sloc: ansic: 367,137; sh: 4,416; makefile: 2,636; cpp: 2,499; xml: 580; perl: 364
file content (184 lines) | stat: -rw-r--r-- 4,003 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
/* Configuration header file.
   Copyright (C) 1995, 1996, 1997, 1998 Free Software Foundation, Inc.

This file is part of gretl.

This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or
(at your option) any later version.

This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
GNU General Public License for more details.

You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.  */

#ifndef CONFIG_H
#define CONFIG_H

/* for NLS use */
#define PACKAGE gretl

/* Native language support? */
#undef ENABLE_NLS

/* Location of shared gretl files */
#define GRETL_PREFIX "/usr/local"

/* Building a relocatable package (Windows, OS X)? */
#undef PKGBUILD

/* Gnulot can do interactive 3D plots (not aquaterm) */
#undef GNUPLOT3D

/* Using libcurl for http? */
#undef USE_CURL

/* Are we using openmp? */
#undef OPENMP_BUILD

/* Are we using OpenBLAS? */
#undef OPENBLAS_BUILD

/* Are we supporting MPI? */
#undef HAVE_MPI

/* X-12-ARIMA support? */
#undef HAVE_X12A

/* TRAMO/SEATS support? */
#undef HAVE_TRAMO

/* Define if you want GNU readline support */
#undef HAVE_READLINE

/* Define for GNU readline version >= 4.2 */
#undef NEW_READLINE

/* Define if readline provides extern int rl_done */
#undef HAVE_RL_DONE

/* Define if zlib is available */
#undef HAVE_ZLIB

/* Define if using libgsf (>= 1.14.31) for zip/unzip */
#undef USE_GSF

/* Is LaTeX available? */
#undef HAVE_LATEX

/* using gtk+ 3 */
#undef USE_GTK3

/* Using gtksourceview-2.0? */
#undef USE_GTKSOURCEVIEW_2

/* Is gtksourceview-2.0 version >= 2.10? */
#undef HAVE_GTKSOURCEVIEW_210

/* Using gtksourceview-3.0? */
#undef USE_GTKSOURCEVIEW_3

/* Does unistd.h have getdomainname? */
#undef GETDOMAINNAME

/* Do we have stdint.h */
#undef HAVE_STDINT_H

/* Do we have unistd.h */
#undef HAVE_UNISTD_H

/* Do we have dirent.h */
#undef HAVE_DIRENT_H

/* Do we have fnmatch.h */
#undef HAVE_FNMATCH_H

/* Do we have fenv.h */
#undef HAVE_FENV_H

/* Do we have sys/wait.h */
#undef HAVE_SYS_WAIT_H

/* Do we have sys/times.h */
#undef HAVE_SYS_TIMES_H

/* Do we have byteswap.h */
#undef HAVE_BYTESWAP_H

/* Do we have libproc.h */
#undef HAVE_LIBPROC_H

/* Do we have sys/proc_info.h */
#undef HAVE_SYS_PROC_INFO_H

/* Do we have mmap */
#undef HAVE_MMAP

/* Do we have vasprintf */
#undef HAVE_VASPRINTF

/* Do we have posix_memalign */
#undef HAVE_POSIX_MEMALIGN

/* Do we have the stuff needed for SMTP? */
#undef HAVE_SYS_SOCKET_H
#undef HAVE_NETDB_H
#undef ENABLE_MAILER
#undef HAVE_SOCKADDR_IN
#undef HAVE_IN_ADDR

/* Define if the 'long double' type works.  */
#undef HAVE_LONG_DOUBLE

/* Define as the return type of signal handlers (int or void).  */
#undef RETSIGTYPE

/* Define if you have the ANSI C header files.  */
#undef STDC_HEADERS

/* Define if your processor stores words with the most significant
   byte first (like Motorola and SPARC, unlike Intel and VAX).  */
#undef WORDS_BIGENDIAN

/* The number of bytes in a int.  */
#undef SIZEOF_INT

/* Define if you have the <string.h> header file.  */
#undef HAVE_STRING_H

/* Define to use SSE2 instrinsics. */
#undef USE_SSE2

/* Define to use AVX instrinsics. */
#undef USE_AVX

/* Do we have immintrin.h? */
#undef HAVE_IMMINTRIN_H

/* Have Jacobi SVD in Lapack 3.2 or higher */
#undef HAVE_LAPACK_3_2

/* Have clock_getttime in libc or librt */
#undef HAVE_CLOCK_GETTIME

/* Use the GNU R shared library */
#undef USE_RLIB

/* Location of R shared library */
#undef RLIBPATH

/* Building for Mac OS X? */
#undef OS_OSX

/* On Mac, using quartz GTK? */
#undef MAC_NATIVE

/* On Mac, using GTK themes? */
#undef HAVE_MAC_THEMES

#endif /* CONFIG_H */