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.17], [https://trac.survex.com/]) AM_INIT_AUTOMAKE([1.5 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-2025 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 AM_PROG_CC_C_O 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 #elif defined HAVE_OPENGL_GL_H # include #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 #include ]) CFLAGS=$save_CFLAGS dnl Check for FFmpeg libraries. PKG_CHECK_MODULES([FFMPEG], [libavcodec 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 ]) AC_CHECK_DECLS([AV_CODEC_ID_NONE], [], [], [#include ]) AC_CHECK_DECLS([AV_PIX_FMT_RGB24], [], [], [#include ]) AC_CHECK_DECLS([AV_PIX_FMT_YUV420P], [], [], [#include ]) 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]) 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) #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) #else # define FWRITE_(P, S, N, F) fwrite(P, S, N, F) #endif #ifdef HAVE_GETC_UNLOCKED # define GETC(F) getc_unlocked(F) #else # define GETC(F) getc(F) #endif #ifdef HAVE_PUTC_UNLOCKED # define PUTC(C, F) putc_unlocked(C, F) #else # define PUTC(C, F) putc(C, F) #endif #ifdef HAVE_PUTC_UNLOCKED # define PUTCHAR(C) putchar_unlocked(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 . */ # include #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 survex.spec lib/Info.plist ]) AC_OUTPUT