forked from hengband/hengband
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfigure.ac
203 lines (177 loc) · 7.56 KB
/
configure.ac
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
dnl Process this file with autoconf to produce a configure script.
AC_INIT(hengband, 3.0.1.25-Beta)
AC_CONFIG_MACRO_DIRS([m4])
AC_CONFIG_HEADERS(src/autoconf.h)
AC_CONFIG_SRCDIR(src/main.cpp)
AM_INIT_AUTOMAKE(tar-pax)
AC_ARG_WITH(setgid,
[ --with-setgid=NAME install hengband as group NAME],
[case "${withval}" in
no) GAMEGROUP="";;
yes) AC_MSG_ERROR(missing argument for --with-setgid);;
*) GAMEGROUP="$withval";;
esac])
AC_SUBST(GAMEGROUP)
AM_CONDITIONAL(SET_GID, test "$GAMEGROUP" != "")
dnl generate the installation path for the ./lib/ folder
if test "$GAMEGROUP" != ""; then
MY_EXPAND_DIR(game_libpath, "$datarootdir/games/$PACKAGE/lib/")
else
MY_EXPAND_DIR(game_libpath, "./lib/")
bindir="`pwd`"
fi
dnl overwrite the path with an user-specified value
AC_ARG_WITH(libpath,
[ --with-libpath=path specify the path to the Hengband lib folder],
[game_libpath="$withval"])
AC_ARG_WITH(varpath,
[ --with-varpath=path specify the path to the Hengband var folder],
[game_varpath="$withval"],
[game_varpath="$game_libpath"])
AC_DEFINE_UNQUOTED(DEFAULT_LIB_PATH, "$game_libpath", [Path to the Hengband lib folder])
DEFAULT_LIB_PATH="$game_libpath"
AC_SUBST(DEFAULT_LIB_PATH)
AC_DEFINE_UNQUOTED(DEFAULT_VAR_PATH, "$game_varpath", [Path to the Hengband var folder])
DEFAULT_VAR_PATH="$game_varpath"
AC_SUBST(DEFAULT_VAR_PATH)
dnl Checks for programs.
AC_LANG(C++)
AC_PROG_CXX
dnl Note that the -std= option for Objective-C++ is hardwired in
dnl src/Makefile.am so that should be changed if this is.
AX_CXX_COMPILE_STDCXX(20, [noext], [mandatory])
PKG_PROG_PKG_CONFIG
AC_ARG_ENABLE(japanese,
[ --disable-japanese build english version], use_japanese=no, [AC_DEFINE(JP, 1, [Enable Japanese]) AC_DEFINE(EUC, 1, [Use Extended Unix Code])])
AC_ARG_ENABLE(xim,
[ --disable-xim disable xim support], use_xim=no, use_xim=yes)
AC_ARG_ENABLE(fontset,
[ --disable-fontset disable fontset support], use_fontset=no, use_fontset=yes)
AC_ARG_ENABLE([xft],
AS_HELP_STRING([--enable-xft], [Enable xft support]))
AC_ARG_ENABLE(net,
[ --disable-net disable networking support], use_net=no)
AC_ARG_ENABLE(worldscore,
[ --disable-worldscore disable worldscore support], worldscore=no)
AC_ARG_ENABLE([pch],
[ --disable-pch disable use of precompiled headers],
enable_pch=no, enable_pch=yes)
AM_CONDITIONAL([PCH], [test x$enable_pch = xyes])
AC_ARG_ENABLE([cocoa],
[ --enable-cocoa enable a Cocoa user interface (OS X only)],
[AC_DEFINE([MACH_O_COCOA], [1], [Use a Cocoa interface (OS X only)])], [])
AM_CONDITIONAL([COCOA], [test x$enable_cocoa = xyes])
dnl Since AC_PROG_OBJCXX has the side effect of setting this conditional,
dnl guarantee that is is always set, regardless of what happens in the if
dnl statement.
AM_CONDITIONAL([am__fastdepOBJCXX], false)
if test x"$enable_cocoa" = xyes ; then
dnl Use AC_LANG_PUSH and AC_LANG_POP to try to get back to the state that
dnl AC_LANG_C set in case there are side effects.
AC_LANG_PUSH([Objective C++])
AC_PROG_OBJCXX
AC_LANG_POP([Objective C++])
AC_DEFINE(SAFE_DIRECTORY, 1, [Mark var directory with version string])
AC_DEFINE(VERSION_STRING, "3.0.0", [Version string to use for var directory])
fi
dnl Set minimum targeted version of macOS.
AC_ARG_VAR([MACOS_MIN], [minimum version number of macOS to target; default is 10.15 which is the oldest version that the source code can handle])
if test x"$MACOS_MIN" = x ; then
AC_SUBST(MACOS_MIN_INTERNAL, 10.15)
else
AC_SUBST(MACOS_MIN_INTERNAL, $MACOS_MIN)
fi
dnl Checks for libraries.
dnl Replace `main' with a function in -lncurses:
if test x"$enable_cocoa" != xyes ; then
AC_CHECK_LIB(ncursesw, initscr, [AC_DEFINE(USE_GCU, 1, [Allow -mGCU environment]) AC_DEFINE(USE_NCURSES, 1, [Use ncurses]) LIBS="$LIBS -lncursesw"])
if test "$ac_cv_lib_ncursesw_initscr" != yes; then
AC_CHECK_LIB(ncurses, initscr, [AC_DEFINE(USE_GCU, 1, [Allow -mGCU environment]) AC_DEFINE(USE_NCURSES, 1, [Use ncurses]) LIBS="$LIBS -lncurses"])
if test "$ac_cv_lib_ncurses_initscr" != yes; then
AC_CHECK_LIB(curses, initscr, [AC_DEFINE(USE_GCU, 1, [Allow -mGCU environment]) LIBS="$LIBS -lcurses"])
if test "$ac_cv_lib_curses_initscr" != yes; then
AC_CHECK_LIB(termcap, tgetent, [AC_DEFINE(USE_CAP, 1, [Allow -mCAP environment]) LIBS="$LIBS -ltermcap"])
fi
fi
fi
fi
AC_CHECK_LIB(iconv, iconv_open)
if test "$use_net" = no; then
AC_DEFINE(DISABLE_NET, 1, [Disable networking support])
worldscore=no;
else
PKG_CHECK_MODULES(libcurl, [libcurl], , [AC_CHECK_LIB([curl], [curl_global_init], [libcurl_LIBS=-lcurl], [AC_MSG_ERROR([Could not find libcurl for networking support])])])
fi
dnl The world score server is currently only available in Japanese.
if test "$use_japanese" = no; then
worldscore=no
fi
if test "$worldscore" != no; then
AC_DEFINE(WORLD_SCORE, 1, [Allow the game to send scores to the score server])
fi
dnl Checks for header files.
dnl AC_PATH_XTRA has side effects on CPP which are beneficial on Mac OS X.
dnl Removing it or conditionally executing it will likely lead to warnings
dnl on that platform about the preprocessor disagreeing with the compiler on
dnl the tests in AC_CHECK_HEADERS.
AC_PATH_XTRA
AS_IF([test "$have_x" = yes && test x"$enable_cocoa" != xyes], [
LIBS="$LIBS -lX11"
AC_DEFINE(USE_X11, 1, [Allow -mX11 environment])
CXXFLAGS="$X_CFLAGS $CXXFLAGS"
LDFLAGS="$X_LIBS $LDFLAGS"
if test "$use_fontset" = yes; then
AC_DEFINE(USE_FONTSET, 1, [Use FontSet])
else
if test "$use_japanese" != no; then
AC_DEFINE(USE_JP_FONTSTRUCT, 1, [Use Kanji without FontSet])
fi
fi
if test "$use_xim" = yes; then
AC_DEFINE(USE_XIM, 1, [Use X Imput Method])
fi
if test "$use_fontset" = yes || test "$use_xim" = yes; then
AC_DEFINE(USE_LOCALE, 1, [Support Locale])
if test "$use_japanese" != no; then
AC_DEFINE(DEFAULT_LOCALE, "ja_JP.eucJP", Default Japanese Locale)
fi
AC_CHECK_LIB(X11, _Xsetlocale, AC_DEFINE(X_LOCALE, 1, [Use XLocale]))
AC_CHECK_LIB(xpg4, setlocale, LIBS="$LIBS -lxpg4")
fi
AS_IF([test "x$enable_xft" = "xyes"], [
PKG_CHECK_MODULES(XFT, [xft],
[AC_DEFINE([USE_XFT], [1], [Use XFT])])
])
])
if test "$use_japanese" != no; then
AC_CHECK_PROG(NKF, nkf, yes)
if test x"$NKF" != x"yes"; then
AC_MSG_ERROR([nkf is not found. Please install nkf.])
fi
fi
if test "$enable_pch" != no; then
dnl md5sum, sha224sum, sha256sum, sha384sum, sha512sum and b2sum are
dnl frequently available on Linux. md5 is available on macOS and OpenBSD.
dnl sha1, sha256, and sha512 are available on OpenBSD.
AC_PATH_PROGS(PCH_CHECKSUMMER, [md5sum md5 sha1sum sha1 sha224sum sha256sum sha256 sha384sum sha512sum sha512 b2sum], [none])
AC_ARG_VAR([PCH_CHECKSUMMER], [full path to a utility to compute the checksum for the precompiled header; checksum is for ccache's pch_external_checksum])
fi
AC_CHECK_HEADERS(fcntl.h sys/file.h sys/ioctl.h sys/time.h termio.h unistd.h stdint.h)
dnl Checks for typedefs, structures, and compiler characteristics.
AC_C_CONST
AC_TYPE_PID_T
AC_TYPE_SIZE_T
AC_STRUCT_TM
dnl Checks for library functions.
AC_FUNC_MEMCMP
AC_FUNC_STRFTIME
AC_FUNC_VPRINTF
AC_CHECK_FUNCS(gethostname mkdir select socket strtol mkstemp usleep)
AC_CONFIG_FILES(Makefile src/Makefile lib/Makefile lib/apex/Makefile \
lib/bone/Makefile lib/data/Makefile \
lib/edit/Makefile lib/edit/quests/Makefile lib/edit/towns/Makefile \
lib/file/Makefile lib/file/books/Makefile lib/help/Makefile \
lib/info/Makefile lib/pref/Makefile lib/save/Makefile \
lib/script/Makefile lib/user/Makefile lib/xtra/Makefile \
lib/xtra/graf/Makefile lib/xtra/music/Makefile lib/xtra/sound/Makefile)
AC_OUTPUT()