Mercurial > hg > early-roguelike
annotate urogue/configure.ac @ 288:b8919055c2fc
UltraRogue: compile out the built-in memory checking.
Functions in memory.c tracked and instrumented memory allocation. This
mechanism logged information to a text file and also added a 16KB guard
area to every allocation. Neither of these are desirable in a multi-
user environment, so the whole memory tracking subsystem has been
disabled.
The behavior can be enabled with a configure flag, but it would be a
better idea to use Valgrind to deal with memory bugs.
| author | John "Elwin" Edwards |
|---|---|
| date | Fri, 24 Nov 2017 13:22:26 -0500 |
| parents | 0b3d1b38998f |
| children | fe6b7a1a6dfc |
| rev | line source |
|---|---|
| 273 | 1 # -*- Autoconf -*- |
| 2 # Process this file with autoconf to produce a configure script. | |
| 3 | |
| 4 AC_PREREQ(2.56) | |
|
287
0b3d1b38998f
Remove version numbers from docdir paths.
John "Elwin" Edwards
parents:
284
diff
changeset
|
5 AC_INIT([UltraRogue],[1.07], [yendor@rogueforge.net], [urogue]) |
| 273 | 6 AC_CONFIG_HEADERS([config.h]) |
| 7 AC_CONFIG_FILES([Makefile]) | |
| 8 | |
| 9 # Checks for programs. | |
| 10 AC_PROG_CC | |
| 11 # Checks for libraries. | |
| 12 MP_WITH_CURSES | |
| 13 # Checks for header files. | |
| 14 AC_HEADER_STDC | |
| 284 | 15 AC_CHECK_HEADERS([pwd.h errno.h fcntl.h limits.h nlist.h stdlib.h string.h sys/ioctl.h termios.h unistd.h utmp.h utmpx.h term.h ncurses/term.h process.h arpa/inet.h]) |
| 273 | 16 |
| 17 # Checks for typedefs, structures, and compiler characteristics. | |
| 18 AC_TYPE_UID_T | |
| 19 AC_TYPE_SIZE_T | |
| 20 AC_STRUCT_TM | |
| 21 # Checks for library functions. | |
| 22 AC_FUNC_FORK | |
| 23 AC_PROG_GCC_TRADITIONAL | |
| 24 AC_FUNC_LSTAT | |
| 25 AC_FUNC_LSTAT_FOLLOWS_SLASHED_SYMLINK | |
| 26 AC_TYPE_SIGNAL | |
| 27 AC_FUNC_STAT | |
| 28 AC_FUNC_VPRINTF | |
| 29 AC_CHECK_FUNCS([erasechar killchar alarm getpass memset setenv strchr nlist _spawnl spawnl getpwuid loadav getloadavg strerror setgid setuid getuid getgid]) | |
| 30 AC_PROG_INSTALL | |
| 31 | |
| 32 # Programs to process the documentation | |
|
275
aa0eefcd7df6
UltraRogue: build and install documentation in the Makefile.
John "Elwin" Edwards
parents:
273
diff
changeset
|
33 AC_CHECK_PROG([NROFF], [nroff], [nroff],) |
|
aa0eefcd7df6
UltraRogue: build and install documentation in the Makefile.
John "Elwin" Edwards
parents:
273
diff
changeset
|
34 AC_CHECK_PROG([GROFF], [groff], [groff],) |
|
aa0eefcd7df6
UltraRogue: build and install documentation in the Makefile.
John "Elwin" Edwards
parents:
273
diff
changeset
|
35 AC_CHECK_PROG([COLCRT], [colcrt], [colcrt],) |
| 273 | 36 |
| 37 AC_ARG_WITH(program-name, AC_HELP_STRING([--with-program-name=NAME],[alternate executable name]),[progname="$withval" ], [progname="urogue"] ) | |
| 38 PROGRAM=$progname | |
| 39 AC_SUBST(PROGRAM) | |
| 40 | |
| 41 AC_ARG_ENABLE(setgid, AC_HELP_STRING([--enable-setgid=NAME],[install executable as setgid with group ownership of NAME @<:@default=no@:>@]),[],[]) | |
| 42 AC_MSG_CHECKING([if using setgid execute bit]) | |
| 43 if test "x$enable_setgid" = "xno" ; then | |
| 44 GROUPOWNER= | |
| 45 elif test "x$enable_setgid" = "xyes" ; then | |
| 46 GROUPOWNER=games | |
| 47 elif test "x$enable_setgid" = "x" ; then | |
| 48 GROUPOWNER= | |
| 49 else | |
| 50 GROUPOWNER=$enable_setgid | |
| 51 fi | |
| 52 | |
| 53 if test "x$GROUPOWNER" != "x" ; then | |
| 54 AC_DEFINE_UNQUOTED([GROUPOWNER],[$GROUPOWNER], [Define to group owner of setgid executable]) | |
| 55 AC_MSG_RESULT([$GROUPOWNER]) | |
| 56 else | |
| 57 AC_MSG_RESULT([no]) | |
| 58 fi | |
| 59 | |
| 60 AC_SUBST(GROUPOWNER) | |
| 61 | |
| 62 AC_ARG_ENABLE([scorefile],[AC_HELP_STRING([--enable-scorefile=SCOREFILE], [enable scoreboard with given filename])],[],[]) | |
| 63 AC_MSG_CHECKING([for scoreboard file]) | |
| 64 if test "x$enable_scorefile" = "xno" ; then | |
| 65 SCOREFILE= | |
| 66 elif test "x$enable_scorefile" = "xyes" ; then | |
| 67 SCOREFILE=$progname.scr | |
| 68 elif test "x$enable_scorefile" = "x" ; then | |
| 69 SCOREFILE=$progname.scr | |
| 70 else | |
| 71 SCOREFILE=$enable_scorefile | |
| 72 fi | |
| 73 | |
| 74 if |
