-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathconfigure.ac
More file actions
475 lines (411 loc) · 15.3 KB
/
Copy pathconfigure.ac
File metadata and controls
475 lines (411 loc) · 15.3 KB
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
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
dnl Process this file with autoconf to produce a configure script
dnl Need autoconf 2.50 or later for AC_ARG_VAR. 2.59 has been around for
dnl long enough, that we might as well just require that.
AC_PREREQ(2.59)
AC_INIT([survex], [1.4.22], [https://trac.survex.com/])
AM_INIT_AUTOMAKE([1.14 gnu -Wall -Wportability -Werror])
RELEASE=1
AC_SUBST(RELEASE)
AC_CONFIG_HEADERS([config.h])
AC_CONFIG_SRCDIR([src/aven.cc])
COPYRIGHT_MSG="Copyright (C) 1990-2026 Olly Betts"
AVEN_COPYRIGHT_MSG="Copyright (C) 1999-2003,2005,2006 Mark R. Shinwell"
AC_DEFINE_UNQUOTED(COPYRIGHT_MSG, ["$COPYRIGHT_MSG"], [Copyright Message])
AC_DEFINE_UNQUOTED(AVEN_COPYRIGHT_MSG, ["$AVEN_COPYRIGHT_MSG"],
[Copyright Message for Aven])
AC_SUBST(COPYRIGHT_MSG)
AC_SUBST(AVEN_COPYRIGHT_MSG)
COPYRIGHT_MSG_UTF8=`echo "$COPYRIGHT_MSG"|sed 's/(C)/©/'`
AVEN_COPYRIGHT_MSG_UTF8=`echo "$AVEN_COPYRIGHT_MSG"|sed 's/(C)/©/'`
AC_DEFINE_UNQUOTED(COPYRIGHT_MSG_UTF8, ["$COPYRIGHT_MSG_UTF8"],
[Copyright Message in UTF-8])
AC_DEFINE_UNQUOTED(AVEN_COPYRIGHT_MSG_UTF8, ["$AVEN_COPYRIGHT_MSG_UTF8"],
[Copyright Message for Aven in UTF-8])
dnl set PRETTYPACKAGE to PACKAGE with the first character capitalised
PRETTYPACKAGE=`echo "$PACKAGE"|cut -b1|tr a-z A-Z``echo "$PACKAGE"|cut -b2-`
AC_DEFINE_UNQUOTED(PRETTYPACKAGE, "$PRETTYPACKAGE",
[Name of package (capitalised)])
AC_SUBST(PRETTYPACKAGE)
dnl set COMMAVERSION to VERSION with the dots replaced by commas -
dnl e.g. "0,99" or "1,0,22"
COMMAVERSION=`echo "$VERSION"|tr '.' ','`
AC_DEFINE_UNQUOTED(COMMAVERSION, $COMMAVERSION,
[Version number of package (comma-separated)])
AC_SUBST(COMMAVERSION)
PKGDOCDIR='${prefix}/share/doc/${PACKAGE}'
AC_ARG_ENABLE(docdir,
[ --enable-docdir=DIR Set directory for installing documentation to DIR],
[case $enableval in
yes|no)
AC_MSG_ERROR([configure: Syntax: configure --enable-docdir=DIR]) ;;
esac
PKGDOCDIR="$enableval"
]
)
PKGDOCDIR_EXPANDED=`
test NONE = "$prefix" && prefix="$ac_default_prefix"
test NONE = "$exec_prefix" && exec_prefix="$prefix"
eval echo "$PKGDOCDIR"
`
AC_SUBST(PKGDOCDIR)
AC_SUBST(PKGDOCDIR_EXPANDED)
AC_CANONICAL_HOST
dnl Checks for programs.
AC_PROG_CC
AC_PROG_CPP
AC_PROG_CXX
AC_PROG_CXXCPP
dnl Probe for any options needed to enable C++11 support.
AX_CXX_COMPILE_STDCXX_11
AC_LANG([C])
AC_EXEEXT
AC_OBJEXT
mswindows=no
macos=no
case $host_os in
darwin*) macos=yes ;;
*mingw*|*cygwin*|windows*) mswindows=yes ;;
esac
AC_C_BIGENDIAN
AC_ARG_VAR(STRIP, [Command for discarding symbols from object files])
AC_PATH_TOOL(STRIP, strip, [echo "not stripping "])
AC_CHECK_LIB(m, sqrt)
dnl x86 has excess precision issues with 387 FP instructions, which are
dnl avoided by using SSE instructions instead. By default we require SSE2
dnl which for Intel means a Pentium 4 which was launched in 2000; Pentium
dnl 3 was finally discontinued in 2007.
AC_ARG_ENABLE([sse],
[AS_HELP_STRING([--disable-sse],
[disable use of SSE FP instructions on x86])]
[AS_HELP_STRING([[--enable-sse[=sse|sse2]]],
[set which SSE FP instructions to use on x86 (default: sse2)])],
[case ${enableval} in
sse|sse2|yes|no) ;;
*) AC_MSG_ERROR([bad value ${enableval} for --enable-sse or --disable-sse]) ;;
esac],
[enable_sse=yes])
AC_MSG_CHECKING([whether to use SSE instructions on x86])
case $host_cpu in
i*86)
if test "$enable_sse" = no ; then
AC_MSG_RESULT([no - WARNING: Testsuite will probably fail])
else
dnl Default to sse2.
test "$enable_sse" != yes || enable_sse=sse2
if test yes = "$GXX"; then
AC_MSG_RESULT([yes (configure with --disable-sse to disable)])
dnl We can unconditionally use -mtune=generic as it was added in GCC
dnl 4.2, and supported at least as far back as clang 3.0.
AM_CXXFLAGS="$AM_CXXFLAGS -mfpmath=sse -m$enable_sse -mtune=generic"
else
AC_MSG_RESULT([don't know how to for compiler $CXX])
fi
fi
;;
*)
AC_MSG_RESULT([non-x86 arch ($host_cpu)]) ;;
esac
dnl The wxWidgets libraries we need:
wx_libs="core,gl"
AC_ARG_VAR(WXCONFIG, [Old name for WX_CONFIG, accepted for compatibility])
AC_ARG_VAR(WX_CONFIG, [wxWidgets configuration script to use to build Aven])
: ${WX_CONFIG="$WXCONFIG"}
AM_CONDITIONAL(WIN32, [test yes = "$mswindows"])
AM_CONDITIONAL(MACOS, [test yes = "$macos"])
if test -n "$WX_CONFIG" ; then
dnl WX_CONFIG specified - sanity check the value
dnl don't check for --ldflags - older wx-config didn't do that
if (exec >&5 2>&5;$WX_CONFIG --libs --cflags --cxxflags "$wx_libs";exit $?) then
:
else
AC_MSG_ERROR(['$WX_CONFIG --libs --cflags --cxxflags "$wx_libs"' does not work, bailing out])
fi
else
if test yes = "$macos" ; then
wxdef=__WXMAC__
elif test yes = "$mswindows" ; then
wxdef=__WXMSW__
else
wxdef=__WXGTK__
fi
dnl See if wx-config exists and is for the correct version.
dnl Fedora seem to install as wx-config-3.2 with a symlink from wx-config, so
dnl look for the versioned name in preference.
dnl
dnl Arch Linux uses wx-config-gtk3.
AC_PATH_PROGS(WX_CONFIG, [wx-config-3.2 wx-config-gtk3 wx-config])
if test -n "$WX_CONFIG" ; then
if (exec >&5 2>&5;$WX_CONFIG --cflags "$wx_libs"|grep -e -D"$wxdef";exit $?) then
:
else
AC_MSG_ERROR([wxWidgets not for the right toolkit. Run ./configure WX_CONFIG=/path/to/wx-config])
fi
else
AC_MSG_ERROR([wxWidgets not found. Run ./configure WX_CONFIG=/path/to/wx-config])
fi
fi
dnl Unless the user has explicitly specified a --unicode setting, prefer
dnl --unicode=yes if we can get it.
case $WX_CONFIG in
*--unicode=*) ;;
*)
if (exec >&5 2>&5;$WX_CONFIG --unicode=yes --version "$wx_libs";exit $?) ; then
WX_CONFIG="$WX_CONFIG --unicode=yes"
elif (exec >&5 2>&5;$WX_CONFIG --unicode=no --version "$wx_libs";exit $?) ; then
WX_CONFIG="$WX_CONFIG --unicode=no"
fi ;;
esac
WX_LIBS=`$WX_CONFIG --libs "$wx_libs"`
dnl Needed for nvidia drivers on linux (for some setups anyway).
AC_CHECK_LIB(Xxf86vm, XF86VidModeQueryVersion, [WX_LIBS="$WX_LIBS -lXxf86vm"], [], [$WX_LIBS])
save_LIBS=$LIBS
dnl Check if we need a library for OpenGL functions. Usually it's the "GL"
dnl library, but it's called opengl32 on Microsoft Windows).
AC_SEARCH_LIBS([glPushMatrix], [GL opengl32], [WX_LIBS="$WX_LIBS $ac_cv_search_glPushMatrix"], [], [$WX_LIBS])
dnl Check if we need a library for GLU functions. Usually it's the "GLU"
dnl library, but it's called glu32 on Microsoft Windows).
AC_SEARCH_LIBS([gluProject], [GLU glu32], [WX_LIBS="$WX_LIBS $ac_cv_search_gluProject"], [], [$WX_LIBS])
LIBS=$save_LIBS
AC_SUBST(WX_LIBS)
dnl macOS has OpenGL/gl.h and OpenGL/glu.h.
AC_CHECK_HEADERS([GL/gl.h OpenGL/gl.h], [], [], [ ])
AC_CHECK_HEADERS([GL/glu.h OpenGL/glu.h], [], [], [ ])
dnl Older Debian mingw-w64 packages lacked GL/glext.h; macOS has OpenGL/glext.h.
dnl Requires an explicit include of gl.h first.
AC_CHECK_HEADERS([GL/glext.h OpenGL/glext.h], [], [], [
#ifdef HAVE_GL_GL_H
# include <GL/gl.h>
#elif defined HAVE_OPENGL_GL_H
# include <OpenGL/gl.h>
#endif
])
WX_CFLAGS=`$WX_CONFIG --cflags "$wx_libs"`
AC_SUBST(WX_CFLAGS)
WX_CXXFLAGS=`$WX_CONFIG --cxxflags "$wx_libs"`
AC_SUBST(WX_CXXFLAGS)
AC_LANG([C])
save_CFLAGS=$CFLAGS
CFLAGS="$CFLAGS $WX_CFLAGS"
AC_CHECK_SIZEOF([wxChar], [], [
#include <wx/defs.h>
#include <wx/chartype.h>
])
CFLAGS=$save_CFLAGS
dnl Check for FFmpeg libraries.
PKG_CHECK_MODULES([FFMPEG], [libavcodec >= 57 libavformat libswscale libavutil], [
AC_DEFINE([WITH_FFMPEG], [1], [Use FFmpeg for movie export])
save_CXXFLAGS=$CXXFLAGS
save_LIBS=$LIBS
CFLAGS="$CFLAGS $FFMPEG_CFLAGS"
LIBS="$LIBS $FFMPEG_LIBS"
AC_CHECK_FUNCS([av_guess_format avio_open avio_close avformat_write_header avcodec_encode_video2 avcodec_free_frame avcodec_open2 avformat_new_stream av_frame_alloc av_frame_free])
AC_CHECK_DECLS([AVMEDIA_TYPE_VIDEO], [], [], [#include <libavcodec/avcodec.h>])
AC_CHECK_DECLS([AV_CODEC_ID_NONE], [], [], [#include <libavcodec/avcodec.h>])
AC_CHECK_DECLS([AV_PIX_FMT_RGB24], [], [], [#include <libavutil/pixfmt.h>])
AC_CHECK_DECLS([AV_PIX_FMT_YUV420P], [], [], [#include <libavutil/pixfmt.h>])
CXXFLAGS=$save_CXXFLAGS
LIBS=$save_LIBS
], [
dnl Build without movie export feature.
])
AC_SUBST([FFMPEG_LIBS])
AC_SUBST([FFMPEG_CFLAGS])
dnl Check for PROJ.
PKG_CHECK_MODULES([PROJ], [proj >= 6.2.0], [
], [
dnl pkg-config support in proj seems quite new, so probe directly if not
dnl found. We need proj_create_crs_to_crs_from_pj() which was added in
dnl 6.2.0.
AC_CHECK_LIB([proj], [proj_create_crs_to_crs_from_pj], [
PROJ_LIBS=-lproj
PROJ_CFLAGS=
], [
AC_MSG_ERROR([PROJ required for coordinate transformations])
])
])
AC_SUBST([PROJ_LIBS])
AC_SUBST([PROJ_CFLAGS])
dnl Check for GDAL.
PKG_CHECK_MODULES([GDAL], [gdal >= 2.3], [
AC_DEFINE([HAVE_GDAL], [1], [Define to 1 if you have the 'GDAL' library.])
], [
if test "$mswindows" = no ; then
AC_MSG_ERROR([GDAL required for geodata handling])
else
AC_MSG_WARN([GDAL required for geodata handling])
fi
])
AC_SUBST([GDAL_LIBS])
AC_SUBST([GDAL_CFLAGS])
dnl Checks for header files.
AC_CHECK_HEADERS(string.h)
AC_CHECK_FUNCS([popen hypot mmap strdup])
dnl We don't access a FILE* from multiple threads and using the unlocked
dnl versions has significantly less overhead, especially when reading/writing
dnl byte-by-byte. These are specified by POSIX:
AC_CHECK_FUNCS([getc_unlocked putc_unlocked putchar_unlocked])
dnl These are GNU extensions in glibc:
AC_CHECK_FUNCS([feof_unlocked ferror_unlocked fread_unlocked fwrite_unlocked])
dnl Microsoft extensions:
AC_CHECK_FUNCS([_getc_nolock _putc_nolock _putchar_nolock _fread_nolock _fwrite_nolock])
AC_CHECK_FUNCS([setenv unsetenv])
AC_CHECK_FUNCS([fmemopen])
dnl Microsoft-specific functions which support positional argument specifiers.
AC_CHECK_FUNCS([_vfprintf_p _vsprintf_p])
AC_PATH_PROG([SPHINX_BUILD], [sphinx-build], [$MISSING sphinx-build])
AC_ARG_VAR([SPHINX_BUILD], [sphinx-build from python3-sphinx])
AC_PATH_PROG([MSGFMT], [msgfmt], [$MISSING msgfmt])
AC_ARG_VAR([MSGFMT], [msgfmt from gettext])
AC_ARG_ENABLE([werror],
[AS_HELP_STRING([--enable-werror], [enable treating compiler warnings as errors [default=no]])],
[case ${enableval} in
yes|no) ;;
*) AC_MSG_ERROR([bad value ${enableval} for --enable-werror]) ;;
esac],
[enable_werror=no])
dnl Put -Werror or equivalent in its own make variable so that it can easily
dnl be overridden by `make WERROR=` if needed during development (e.g. if
dnl you want to get a full list of compile warnings to fix rather than
dnl stopping at the first file with warnings).
WERROR=
AC_SUBST([WERROR])
dnl extra warning flags for building with GCC
if test yes = "$GCC"; then
WERROR=-Werror
if test yes = "$cross_compiling"; then
dnl AM_CFLAGS="$AM_CFLAGS -Werror -Wall -Wunused -Wpointer-arith\
dnl -Wwrite-strings -Wcast-align"
dnl -Wsign-compare causes a warning with the mingw FD_SET macro, so we have
dnl to disable it for mingw builds.
AM_CFLAGS="$AM_CFLAGS -Wall -Wunused -Wpointer-arith\
-Wwrite-strings -Wcast-align"
AM_CXXFLAGS="$AM_CXXFLAGS -Wall -Wunused -Wpointer-arith\
-Wwrite-strings -Wcast-align -Wno-sign-compare"
else
AM_CFLAGS="$AM_CFLAGS -Wall -W -Wunused -Wshadow -Wpointer-arith\
-Wmissing-prototypes -Wwrite-strings -Wredundant-decls -Wnested-externs\
-Wcast-align"
AM_CXXFLAGS="$AM_CXXFLAGS -Wall -W -Wunused -Wshadow -Wpointer-arith\
-Wwrite-strings -Wcast-align"
fi
dnl too many complaints from headers, etc: -Wconversion
fi
AC_SUBST(AM_CFLAGS)
AC_SUBST(AM_CXXFLAGS)
if test x$enable_werror != xyes; then
WERROR=
fi
dnl See if large file support is available. Survex is unlikely to need to
dnl process files > 2GB in size, but LFS is also needed for stat() to work
dnl on filing systems which return 64 bit inode values, such as CIFS mounts.
AC_SYS_LARGEFILE
AC_ARG_ENABLE(profiling,
[ --enable-profiling Build binaries to generate profiling information],
[case $enableval in
yes) AM_CXXFLAGS="$AM_CXXFLAGS -pg"
AM_CFLAGS="$AM_CFLAGS -pg"
AC_MSG_RESULT(building binaries to generate profiling information);;
no) ;;
*) AC_MSG_ERROR(bad value $enableval for --enable-profiling) ;;
esac])
EXTRA_TEXT="AUTHORS COPYING NEWS TODO ChangeLog"
AC_SUBST(EXTRA_TEXT)
AC_SUBST_FILE(DESC)
DESC=desc.txt
AC_SUBST_FILE(AVENDESC)
AVENDESC=desc-aven.txt
dnl Don't define DATADIR if building for MS Windows - it won't be used, and
dnl can conflict with the DATADIR typedef in objidl.h
if test no = "$mswindows"; then
AC_DEFINE_DIR(DATADIR, datadir, [Location of platform independent support files])
fi
AH_BOTTOM(
[/* Use _unlocked() variants of stdio functions where available, since they are
* faster, and we don't multithread file accesses.
*/
#ifdef HAVE_FEOF_UNLOCKED
# define FEOF(F) feof_unlocked(F)
#else
# define FEOF(F) feof(F)
#endif
#ifdef HAVE_FERROR_UNLOCKED
# define FERROR(F) ferror_unlocked(F)
#else
# define FERROR(F) ferror(F)
#endif
#ifdef HAVE_FREAD_UNLOCKED
# define FREAD(P, S, N, F) fread_unlocked(P, S, N, F)
#elif defined HAVE__FREAD_NOLOCK
# define FREAD(P, S, N, F) _fread_nolock(P, S, N, F)
#else
# define FREAD(P, S, N, F) fread(P, S, N, F)
#endif
/* If we call this FWRITE() then macos errors out on uses with:
* error: called object type 'int' is not a function or function pointer
* Unclear what's going on - a conditional `#undef FWRITE` before defining
* doesn't help.
*/
#ifdef HAVE_FWRITE_UNLOCKED
# define FWRITE_(P, S, N, F) fwrite_unlocked(P, S, N, F)
#elif defined HAVE__FWRITE_NOLOCK
# define FWRITE_(P, S, N, F) _fwrite_nolock(P, S, N, F)
#else
# define FWRITE_(P, S, N, F) fwrite(P, S, N, F)
#endif
#ifdef HAVE_GETC_UNLOCKED
# define GETC(F) getc_unlocked(F)
#elif defined HAVE__GETC_NOLOCK
# define GETC(F) _getc_nolock(F)
#else
# define GETC(F) getc(F)
#endif
#ifdef HAVE_PUTC_UNLOCKED
# define PUTC(C, F) putc_unlocked(C, F)
#elif defined HAVE__PUTC_NOLOCK
# define PUTC(C, F) _putc_nolock(C, F)
#else
# define PUTC(C, F) putc(C, F)
#endif
#ifdef HAVE_PUTC_UNLOCKED
# define PUTCHAR(C) putchar_unlocked(C)
#elif defined HAVE__PUTCHAR_NOLOCK
# define PUTCHAR(C) _putchar_nolock(C)
#else
# define PUTCHAR(C) putchar(C)
#endif
#ifndef __cplusplus
/* C23 added bool, false and true as keywords - let's emulate that and
* avoid every C file which uses these needing to include <stdbool.h>.
*/
# include <stdbool.h>
/* C23 made static_assert() available by default - let's emulate that. */
# if __STDC_VERSION__ >= 202311L
// Available by default.
# elif __STDC_VERSION__ >= 201112L
# include <assert.h>
# elif defined __COUNTER__
// As a fallback for < C11, use a typedef for an array type where the size
// is negative if the assertion fails. Prior to C11 redefining a typedef was
// not allowed so we need to generate unique typedef names (within a single
// compilation). __COUNTER__ provides an way to do this - it is a non-standard
// extension, but supported by at least GCC, clang and MSVC.
//
// Using the standardised __LINE__ instead of __COUNTER__ here would fail if
// two headers (or a header and the source file) happen to use static_assert()
// on the same line number.
# define STATICASSERTTYPEDEFNAME(N) staticassert_##N
# define static_assert(CONDITION, MESSAGE) \
typedef int STATICASSERTTYPEDEFNAME(__COUNTER__)[(CONDITION) ? 1 : -1]
# else
// We don't check static_assert for pre-C11 compilers without __COUNTER__.
# define static_assert(...)
# endif
#endif
])
AC_CONFIG_FILES([
Makefile src/Makefile doc/Makefile lib/Makefile lib/icons/Makefile
lib/images/Makefile
tests/Makefile vim/Makefile survex.iss doc/index.htm
lib/Info.plist
])
AC_OUTPUT