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