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