source: git/configure.in @ 608f9cc

RELEASE/1.0
Last change on this file since 608f9cc was a3abbf1, checked in by Olly Betts <olly@…>, 18 years ago

Bump version to 1.0.39.

git-svn-id: file:///home/survex-svn/survex/trunk@3158 4b37db11-9a0c-4f06-9ece-9ab7cdaee568

  • Property mode set to 100644
File size: 11.1 KB
RevLine 
[c746b4d]1dnl Process this file with autoconf to produce a configure script
[483ac4e]2
[d5bd3a7]3dnl CFLAGS=-DDEFAULTLANG=fr to build with French as the default language.
4
[f030a088]5dnl Need autoconf 2.13 or later for 3 argument version of AC_DEFINE
[c746b4d]6dnl Need autoconf 2.50 or later for AC_ARG_VAR
7AC_PREREQ(2.50)
[d8846a5]8AC_INIT(src/cavern.c)
[79b37a4c]9
[168df28]10dnl next line is for make_release
[a3abbf1]11CHANGELOG_FROM_TAG=v1_0_38
12AM_INIT_AUTOMAKE(survex, 1.0.39)
[191536f]13RELEASE=1
[79b37a4c]14
[5636835]15AC_SUBST(RELEASE)
[96cc0ab]16AM_CONFIG_HEADER(config.h)
17
[99f252b]18dnl don't reformat the next line, miniam.pl pulls out the value
[a3abbf1]19COPYRIGHT_MSG="Copyright (C) 1990-2006 Olly Betts"
[55302e3]20
[168df28]21AVEN_COPYRIGHT_MSG="Copyright (C) 1999-2002 Mark R. Shinwell"
[99f252b]22
[168df28]23AC_DEFINE_UNQUOTED(COPYRIGHT_MSG, ["$COPYRIGHT_MSG"], [Copyright Message])
24AC_DEFINE_UNQUOTED(AVEN_COPYRIGHT_MSG, ["$AVEN_COPYRIGHT_MSG"],
[99f252b]25                   [Copyright Message for Aven])
26
27AC_SUBST(COPYRIGHT_MSG)
28AC_SUBST(AVEN_COPYRIGHT_MSG)
[706b033]29
[1d43ee5]30dnl set PRETTYPACKAGE to PACKAGE with the first character capitalised
[3449c6f]31PRETTYPACKAGE=`echo "$PACKAGE"|cut -b1|tr a-z A-Z``echo "$PACKAGE"|cut -b2-`
[82afbc4]32AC_DEFINE_UNQUOTED(PRETTYPACKAGE, "$PRETTYPACKAGE",
[99f252b]33                   [Name of package (capitalised)])
[aa931b2]34AC_SUBST(PRETTYPACKAGE)
35
[e2546c0]36dnl set COMMAVERSION to VERSION with the dots replaced by commas -
37dnl e.g. "0,99" or "1,0,22"
[3449c6f]38COMMAVERSION=`echo "$VERSION"|tr '.' ','`
[e2546c0]39AC_DEFINE_UNQUOTED(COMMAVERSION, $COMMAVERSION,
[51b01b2]40                   [Version number of package (comma-separated)])
[e2546c0]41AC_SUBST(COMMAVERSION)
42
[9b579156]43PKGDOCDIR='${prefix}/doc/${PACKAGE}'
[4b4bd47]44AC_ARG_ENABLE(docdir,
45[  --enable-docdir=DIR Set directory for installing documentation to DIR],
[3449c6f]46[case $enableval in
[4b4bd47]47 yes|no)
48  AC_MSG_ERROR([configure: Syntax: configure --enable-docdir=DIR]) ;;
49esac
[ab27074]50PKGDOCDIR="$enableval"
[4b4bd47]51]
52)
[3449c6f]53PKGDOCDIR_EXPANDED=`(
54 test NONE = "$prefix" && prefix="$ac_default_prefix"
55 test NONE = "$exec_prefix" && exec_prefix="$prefix"
56 eval echo "$PKGDOCDIR"
57)`
[4b4bd47]58AC_SUBST(PKGDOCDIR)
[9b579156]59AC_SUBST(PKGDOCDIR_EXPANDED)
[4b4bd47]60
[d80db60]61DEFAULTLANG=en
62AC_ARG_ENABLE(defaultlang,
63[  --enable-defaultlang=LANG Set the default language for messages to LANG],
[3449c6f]64[case $enableval in
[d80db60]65 yes|no) # until we support Norwegian...
66  AC_MSG_ERROR([configure: Syntax: configure --enable-defaultlang=LANGUAGE]) ;;
67esac
[ab27074]68DEFAULTLANG="$enableval"
[81bb5980]69AC_DEFINE_UNQUOTED(DEFAULTLANG, [$enableval], [Default language for messages])
[d80db60]70]
71)
72AC_SUBST(DEFAULTLANG)
[51b01b2]73
[984f49e]74AC_ARG_ENABLE(testprogs,
[9ca0c47]75[  --enable-testprogs Enable building of various test harness programs],
[3449c6f]76[case $enableval in
[984f49e]77 yes) TESTPROGS="dump3d printxbm" ;;
78 no) TESTPROGS= ;;
[ab27074]79 *) AC_MSG_ERROR(bad value $enableval for --enable-testprogs) ;;
[984f49e]80esac
81]
82AC_SUBST(TESTPROGS)
83)
84
[24a8011]85AC_CANONICAL_HOST
86
[55302e3]87dnl Checks for programs.
88AC_PROG_CC
[f78ad72]89AC_PROG_CPP
[5809313]90
[1c01375]91AVEN='aven$(EXEEXT)'
[5809313]92AC_ARG_ENABLE(aven,
[17ea10a]93[  --disable-aven Don't try to build Aven cave viewer],
[3449c6f]94[case $enableval in
[039fb01]95  yes) ;;
[5809313]96  no) AVEN= ;;
[ab27074]97  *) AC_MSG_ERROR(bad value $enableval for --enable-aven) ;;
[5809313]98esac])
[0fd7598]99
[039fb01]100if test -n "$AVEN" ; then
101  AC_PROG_CXX
102  AC_PROG_CXXCPP
[c89cacf]103else
104  dnl We don't want to fail to build Survex just because there's no C++
105  dnl compiler installed, so we need to invoke AC_PROG_CXX conditionally.
106  dnl This bodge is required in order to do that...
107  am__fastdepCXX_TRUE='#'
108  am__fastdepCXX_FALSE=
[039fb01]109fi
110
[0fd7598]111AC_LANG_C
[55302e3]112
[96cc0ab]113AC_PROG_MAKE_SET
114
115AC_EXEEXT
116AC_OBJEXT
117
[3449c6f]118case $host_os in
[24a8011]119*mingw*|*cygwin*|windows*) mswindows=yes ;;
[6d316f1]120*) mswindows=no ;;
121esac
[c3dce5e]122
[3449c6f]123case $host in
[7de388f]124powerpc-*-darwin*) macosx=yes ;; # wxWindows uses this to detect MacOS X
125*) macosx=no ;;
126esac
127
[ab5d6a5]128AC_C_BIGENDIAN
[bd63572]129
[c746b4d]130AC_ARG_VAR(STRIP, [Command for discarding symbols from object files])
[4a6f8f6]131AC_PATH_TOOL(STRIP, strip, [echo "not stripping "])
[55302e3]132
[647407d]133AC_CHECK_LIB(m, sqrt)
134
[55302e3]135AC_PATH_XTRA
136
[696066c]137WINPROGS=
[ab27074]138if test yes = "$mswindows"; then
[696066c]139  WINPROGS='printwin$(EXEEXT) editwrap$(EXEEXT)'
140  AC_MSG_RESULT(building printwin and editwrap)
[55b7334]141fi
[696066c]142AC_SUBST(WINPROGS)
[55b7334]143
[bd9730c]144AC_ARG_VAR(WXCONFIG, [wxWindows configuration script to use to build Aven])
145
[ab27074]146if test yes = "$no_x"; then
[b9bd864]147  AC_MSG_RESULT([not building xcaverot (X libraries not found or disabled)])
[ab27074]148  if test -z "$WXCONFIG" && test no = "$mswindows"; then
[384b11f]149    AC_MSG_RESULT([not building aven (X libraries not found or disabled)])
150    AVEN=
151  fi
[e0652c7]152else
153  AC_CHECK_LIB(Xext, XdbeQueryExtension, X_EXTRA_LIBS="-lXext $X_EXTRA_LIBS", ,
154               $X_LIBS $X_PRE_LIBS -lX11 -lXext $X_EXTRA_LIBS)
155  CAVEROT=xcaverot ${CAVEROT}
156  AC_MSG_RESULT(building xcaverot)
[e4e2959]157fi
[788ed2e]158
[ab27074]159AM_CONDITIONAL(WIN32, [test yes = "$mswindows"])
[7de388f]160AM_CONDITIONAL(MACOSX, [test yes = "$macosx"])
[b9bd864]161
162if test -n "$AVEN"; then
163  if test -n "$WXCONFIG" ; then
[c746b4d]164    dnl WXCONFIG specified - sanity check the value
[d4cc4e2]165    dnl don't check for --ldflags - older wx-config didn't do that
166    if (exec >&5 2>&5;$WXCONFIG --libs --cflags --cxxflags;exit $?) then
[b9bd864]167      :
[498c347]168    else
[3449c6f]169      AC_MSG_ERROR(['$WXCONFIG --libs --cflags --cxxflags' doesn't work, bailing out])
[b9bd864]170    fi
171  else
[51b01b2]172    # prefer wx2.6 (or wx2.5) - a few things work better with it.
[7de388f]173    if test yes = "$macosx" ; then
[51b01b2]174      AC_PATH_PROGS(WXCONFIG, [wxmac-2.6-config wxmac-2.5-config wxmac-2.4-config wxmac-config])
[7de388f]175      wxdef=__WXMAC__
[51b01b2]176    elif test yes = "$mswindows" ; then
177      AC_PATH_PROGS(WXCONFIG, [wxmsw-2.6-config wxmsw-2.5-config wxmsw-2.4-config wxmsw-config])
178      wxdef=__WXMSW__
[7de388f]179    else
[51b01b2]180      AC_PATH_PROGS(WXCONFIG, [wxgtk-2.6-config wxgtk-2.5-config wxgtk-2.4-config wxgtk-config])
[7de388f]181      wxdef=__WXGTK__
182    fi
[b9bd864]183    if test -z "$WXCONFIG" ; then
[7de388f]184      dnl see if wx-config exists and is for the correct version
[c746b4d]185      AC_PATH_PROGS(WXCONFIG, [wx-config])
186      if test -n "$WXCONFIG" ; then
[51b01b2]187        if (exec >&5 2>&5;$WXCONFIG --cflags|grep -e -D"$wxdef";exit $?) then
188          :
[c746b4d]189        else
190          WXCONFIG=
[51b01b2]191        fi
[b9bd864]192      fi
193    fi
194    if test -z "$WXCONFIG" ; then
195      AC_MSG_RESULT([not building aven (wxWindows not found)])
[498c347]196      AVEN=
197    fi
[039fb01]198  fi
[b9bd864]199
[dcfeeda]200  if test -n "$AVEN"; then
[3449c6f]201    WX_LIBS=`$WXCONFIG --libs`
[b9bd864]202    AC_SUBST(WX_LIBS)
[d4cc4e2]203    dnl older wx-config didn't support this - error goes to stderr, with
204    dnl nothing to stdout, so just ignore stderr
[3449c6f]205    WX_LDFLAGS=`$WXCONFIG --ldflags 2> /dev/null`
[cc93864]206    AC_SUBST(WX_LDFLAGS)
[3449c6f]207    WX_CFLAGS=`$WXCONFIG --cflags`
[b9bd864]208    AC_SUBST(WX_CFLAGS)
[3449c6f]209    WX_CXXFLAGS=`$WXCONFIG --cxxflags`
[0f24469]210    AC_SUBST(WX_CXXFLAGS)
[b9bd864]211    AC_MSG_RESULT(building aven)
212  fi
[5809313]213fi
[0fd7598]214
[fad11a6]215AM_CONDITIONAL(AVEN, [test -n "$AVEN"])
216
[647407d]217AC_LANG_C
[0fd7598]218
[55302e3]219AC_SUBST(CAVEROT)
[788ed2e]220AC_SUBST(AVEN)
[55302e3]221
[73bdbe8]222dnl only build extra man pages on Unix - the ".exe" messes us up otherwise
223dnl FIXME: probably no point building man pages except on Unix
[ab27074]224if test -z "$ac_exeext" ; then
[5d3a463]225  dnl can't use \> as freebsd sed doesn't support it
[3449c6f]226  EXTRA_MANS=`echo "$CAVEROT $AVEN"|sed 's/\$(EXEEXT)//g;s/\([[^ ]]\) /\1.1 /g;s/\(.\)$/\1.1/'`
[73bdbe8]227else
228  EXTRA_MANS=
229fi
[88171f5]230AC_SUBST(EXTRA_MANS)
231
[55302e3]232dnl caverot libraries...
233AC_SUBST(CRLIB)
[96cc0ab]234dnl caverot platform specific sources...
[55302e3]235AC_SUBST(CROBJX)
236
[b6f16ea]237dnl Checks for header files.
[55302e3]238AC_HEADER_STDC
[f78ad72]239dnl don't use AC_CHECK_FUNCS for setjmp - mingw #define-s it to _setjmp
240AC_CHECK_HEADERS(limits.h string.h setjmp.h)
[55302e3]241
242dnl Checks for typedefs, structures, and compiler characteristics.
243AC_C_CONST
244AC_TYPE_SIZE_T
245AC_STRUCT_TM
246AC_TYPE_SIGNAL
247
[9736c93]248dnl check if CLOCKS_PER_SEC is defined by time.h (as ANSI says it should be)
249dnl if it isn't, assume it is 1000000, as it is on SunOS 4
250AC_TRY_COMPILE([#include <time.h>],[
251#ifndef CLOCKS_PER_SEC
252choke me
253#endif
254], , AC_DEFINE(CLOCKS_PER_SEC, 1000000, [For old systems which don't define it themselves]))
255
[647407d]256dnl Look for a signed 32 bit integer type
257AC_MSG_CHECKING(for 32 bit integer type)
[702aaa8]258AC_TRY_COMPILE(,[switch (0) { case (sizeof(int)==4): case 0: break; }],
[647407d]259INT32_T=int,
[702aaa8]260AC_TRY_COMPILE(,[switch (0) { case (sizeof(long)==4): case 0: break; }],
[647407d]261INT32_T=long,
[ddede0f]262AC_MSG_ERROR(not found)
[647407d]263)
264)
265AC_MSG_RESULT($INT32_T)
266AC_DEFINE_UNQUOTED(INT32_T,$INT32_T,[signed 32 bit integer type])
267
268dnl Look for a signed 16 bit integer type
269AC_MSG_CHECKING(for 16 bit integer type)
[702aaa8]270AC_TRY_COMPILE(,[switch (0) { case (sizeof(short)==2): case 0: break; }],
[647407d]271INT16_T=short,
[702aaa8]272AC_TRY_COMPILE(,[switch (0) { case (sizeof(int)==2): case 0: break; }],
[647407d]273INT16_T=int,
[ddede0f]274AC_MSG_ERROR(not found)
[647407d]275)
276)
277AC_MSG_RESULT($INT16_T)
278AC_DEFINE_UNQUOTED(INT16_T,$INT16_T,[signed 16 bit integer type])
279
[55302e3]280dnl Checks for library functions.
281AC_FUNC_STRFTIME
[ab27074]282if test yes != "$ac_cv_func_strftime"; then
[ad4eaf3f]283  AC_LIBOBJ(strftime)
[f017df0]284fi
[55302e3]285AC_FUNC_VPRINTF
[ad4eaf3f]286dnl check for strcasecmp here as well as below - this one is to get
287dnl HAVE_STRCASECMP defined if appropriate (for img.c)
[d88b52e]288AC_CHECK_FUNCS(popen signal getpwuid round strcasecmp hypot)
[f66c708]289
[55302e3]290dnl difftime seems to be an ANSI invention
[96cc0ab]291AC_CHECK_FUNCS(difftime)
[55302e3]292
293dnl try to find a case-insensitive compare
294
295strcasecmp=no
[b9bd864]296dnl The order of these tests is important.
[168df28]297AC_CHECK_FUNC(strcasecmp, [strcasecmp=strcasecmp])
[ab27074]298if test no = "$strcasecmp"; then
[168df28]299  AC_CHECK_FUNC(stricmp, [strcasecmp=stricmp])
[55302e3]300fi
[ab27074]301if test no = "$strcasecmp"; then
[168df28]302  AC_CHECK_FUNC(strcmpi, [strcasecmp=strcmpi])
[55302e3]303fi
[18f4759]304
[168df28]305AC_MSG_CHECKING([how to compare strings ignoring case])
[3449c6f]306case $strcasecmp in
[18f4759]307no)
[ad4eaf3f]308  AC_LIBOBJ(strcasecmp)
[168df28]309  AC_MSG_RESULT([using own implementation of strcasecmp]) ;;
310strcasecmp)
311  AC_MSG_RESULT([strcasecmp]) ;;
[18f4759]312*)
313  AC_DEFINE_UNQUOTED(strcasecmp, "$strcasecmp",
[168df28]314    [strcasecmp define for systems which call it something else])
315  AC_MSG_RESULT([$strcasecmp]) ;;
[18f4759]316esac
317
[091efc6]318AC_MSG_CHECKING(for sgmltools v2 or v3)
[3449c6f]319case `(exec 2>&5 ; sgmltools --version)` in
[340c3e6]320*" version 2"*)
321  sgmltools=sgmltools
322  AC_MSG_RESULT(yes) ;;
323*" version 3"*)
[06912e7]324  sgmltools=sgmltools
325  AC_MSG_RESULT(yes) ;;
[647407d]326*)
[a09aea8]327  sgmltools="$MISSING sgmltools"
[06912e7]328  AC_MSG_RESULT(no) ;;
[788ed2e]329esac
[06912e7]330AC_SUBST(sgmltools)
[788ed2e]331
[2dfd768]332dnl extra warning flags for building with GCC
[ab27074]333if test yes = "$GCC"; then
334  if test yes = "$cross_compiling"; then
[bc610ce]335    AM_CFLAGS="$AM_CFLAGS -Werror -Wall -Wunused -Wpointer-arith\
[95f2432]336      -Wwrite-strings -Wcast-align"
[bc610ce]337    AM_CXXFLAGS="$AM_CXXFLAGS -Werror -Wall -Wunused -Wpointer-arith\
[ecbc1273]338      -Wwrite-strings -Wcast-align"
[d5bd3a7]339  else
[ab27074]340    AM_CFLAGS="$AM_CFLAGS -Wall -W -Wunused -Wshadow -Wpointer-arith\
341      -Wmissing-prototypes -Wwrite-strings -Wredundant-decls -Wnested-externs\
[95f2432]342      -Wcast-align"
[994c6b65]343    dnl -W causes problems with wxWindows
344    AM_CXXFLAGS="$AM_CXXFLAGS -Wall -Wunused -Wshadow -Wpointer-arith\
[ecbc1273]345      -Wwrite-strings -Wcast-align"
[d5bd3a7]346  fi
[b9bd864]347  dnl too many complaints from headers, etc: -Wconversion
[96cc0ab]348fi
[2dfd768]349AC_SUBST(AM_CFLAGS)
350AC_SUBST(AM_CXXFLAGS)
[55302e3]351
[5341d94]352AC_ARG_ENABLE(profiling,
353[  --enable-profiling Build binaries to generate profiling information],
[3449c6f]354[case $enableval in
[984f49e]355  yes) AM_CXXFLAGS="$AM_CXXFLAGS -pg"
[5f3f804]356       AM_CFLAGS="$AM_CFLAGS -pg"
357       AC_MSG_RESULT(building binaries to generate profiling information);;
[5341d94]358  no) ;;
[ab27074]359  *) AC_MSG_ERROR(bad value $enableval for --enable-profiling) ;;
[5341d94]360esac])
361
[3b84919]362DOCS_OTHER="manual.rtf manual.txt manual.ps"
[a3e5460]363AC_SUBST(DOCS_OTHER)
364
[bb3a530]365HTMLFILES="AUTHORS.htm ChngeLog.htm GPL.htm HACKING.htm NEWS.htm OLDNEWS.htm TODO.htm index.htm 3dformat.htm"
[5636835]366AC_SUBST(HTMLFILES)
367
368EXTRA_TEXT="AUTHORS COPYING NEWS TODO ChangeLog"
369AC_SUBST(EXTRA_TEXT)
370
[96c5d34]371AC_SUBST_FILE(DESC)
372DESC=desc.txt
373AC_SUBST_FILE(AVENDESC)
374AVENDESC=desc-aven.txt
[4363ca4]375AC_SUBST_FILE(SVXEDITDESC)
376SVXEDITDESC=desc-svxedit.txt
[96c5d34]377
[168df28]378dnl Don't define DATADIR if building for MS Windows - it won't be used, and
379dnl can conflict with the DATADIR typedef in objidl.h
[5f3f804]380if test no = "$mswindows"; then
381  AC_DEFINE_DIR(DATADIR, datadir, [Location of platform independent support files])
382fi
[18f4759]383
[b82777e9]384AC_OUTPUT(Makefile src/Makefile doc/Makefile lib/Makefile lib/icons/Makefile
[6c7fbd5]385 tests/Makefile debian/Makefile survex.iss doc/index.htm doc/survex.1
[3449c6f]386 src/borlandc/config.h src/riscos/config.h src/msvc/config.h
[fa5201d]387 doc/version.ent debian/copyright survex.spec src/svxedit lib/survex.keys)
Note: See TracBrowser for help on using the repository browser.