Mercurial > hg > early-roguelike
annotate urogue/configure.ac @ 287:0b3d1b38998f
Remove version numbers from docdir paths.
Most Unix systems prefer to omit the versions.
author | John "Elwin" Edwards |
---|---|
date | Mon, 16 Oct 2017 19:53:38 -0400 |
parents | 6376b514a30b |
children | b8919055c2fc |
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 test "x$SCOREFILE" != "x" ; then | |
75 AC_DEFINE_UNQUOTED([SCOREFILE], ["$SCOREFILE"], [Define to file to use for scoreboard]) | |
76 AC_MSG_RESULT([$SCOREFILE]) | |
77 else | |
78 AC_MSG_RESULT([disabled]) | |
79 fi | |
80 | |
81 AC_SUBST(SCOREFILE) | |
82 | |
83 AC_ARG_ENABLE([logfile],[AC_HELP_STRING([--enable-logfile=LOGFILE], [enable logfile with given filename])],[],[]) | |
84 AC_MSG_CHECKING([for log file]) | |
85 if test "x$enable_logfile" = "xno" ; then | |
86 LOGFILE= | |
87 elif test "x$enable_logfile" = "xyes" ; then | |
88 LOGFILE=$progname.log | |
89 elif test "x$enable_logfile" = "x" ; then | |
90 LOGFILE=$progname.log | |
91 else | |
92 LOGFILE=$enable_logfile | |
93 fi | |