forked from Flatlander57/TheImaginedServer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
configure.ac
325 lines (281 loc) · 10.3 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
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
AC_PREREQ([2.50])
AC_INIT([TheForgottenServer], [0.3.7])
AM_INIT_AUTOMAKE([1.10 foreign silent-rules])
AC_CONFIG_SRCDIR([account.h])
AM_CONFIG_HEADER([config.h])
m4_ifdef([AM_SILENT_RULES],[AM_SILENT_RULES([yes])])
AC_PROG_CXX
AC_LANG(C++)
OPTIONAL_FLAGS=""
# Config for 32Bits
DEBUG_FLAGS="-O0 -march=native -fomit-frame-pointer"
#DEBUG_FLAGS="-O3 -march=native -fomit-frame-pointer"
# Config for 64Bits
#DEBUG_FLAGS="-O0 -march=core2 -fomit-frame-pointer"
#DEBUG_FLAGS="-O3 -march=core2 -fomit-frame-pointer"
# check if we want server diag enabled
serverDiag=no
AC_ARG_ENABLE(server-diag, [ --enable-server-diag enable server diagnostic],
[OPTIONAL_FLAGS="$OPTIONAL_FLAGS -D__ENABLE_SERVER_DIAGNOSTIC__"]
serverDiag=yes
)
# check if we want login server mode
AM_CONDITIONAL(LOGIN_SERVER, false)
loginServer=no
AC_ARG_ENABLE(login-server, [ --enable-login-server enable login server mode],
[OPTIONAL_FLAGS="$OPTIONAL_FLAGS -D__LOGIN_SERVER__"]
AM_CONDITIONAL(LOGIN_SERVER, true)
loginServer=yes
)
# check if we want OTAdmin protocol
AM_CONDITIONAL(OT_ADMIN, false)
otAdmin=no
AC_ARG_ENABLE(ot-admin, [ --enable-ot-admin enable OTAdmin protocol],
[OPTIONAL_FLAGS="$OPTIONAL_FLAGS -D__OTADMIN__"]
AM_CONDITIONAL(OT_ADMIN, true)
otAdmin=yes
)
# check if we want otserv allocator enabled
otservAllocator=no
AC_ARG_ENABLE(otserv-allocator, [ --enable-otserv-allocator enable otserv custom allocator],
[OPTIONAL_FLAGS="$OPTIONAL_FLAGS -D__OTSERV_ALLOCATOR__"]
otservAllocator=yes
)
# check if we want homedir conf enabled
homedirConf=no
AC_ARG_ENABLE(homedir-conf, [ --enable-homedir-conf enable home directory configuration],
[OPTIONAL_FLAGS="$OPTIONAL_FLAGS -D__HOMEDIR_CONF__"]
homedirConf=yes
)
# check do we want to allow running on root user
rootPermission=no
AC_ARG_ENABLE(root-permission, [ --enable-root-permission enable running on root user],
[OPTIONAL_FLAGS="$OPTIONAL_FLAGS -D__ROOT_PERMISSION__"]
rootPermission=yes
)
# check if we want to use luajit instead of lua
luaJIT=no
AC_ARG_ENABLE(luajit, [ --enable-luajit enable luajit instead of lua],
[OPTIONAL_FLAGS="$OPTIONAL_FLAGS -D__LUAJIT__"]
luaJIT=yes
)
# check if we want to cache ground items
groundCache=no
AC_ARG_ENABLE(groundcache, [ --enable-groundcache enable caching of ground items],
[OPTIONAL_FLAGS="$OPTIONAL_FLAGS -D__GROUND_CACHE__"]
groundCache=yes
)
# check if we want a debug build
debugBuild=no
AC_ARG_ENABLE(debug, [ --enable-debug enable debuging],
[DEBUG_FLAGS="-D__DEBUG__ -D__DEBUG_MOVESYS__ -D__DEBUG_CHAT__ -D__DEBUG_HOUSES__ -D__DEBUG_LUASCRIPTS__ -D__DEBUG_MAILBOX__ -D__DEBUG_NET__ -D__DEBUG_NET_DETAIL__ -D__DEBUG_RAID__ -D__DEBUG_SCHEDULER__ -D__DEBUG_SPAWN__ -D__SQL_QUERY_DEBUG__ -O0 -g3"]
debugBuild=yes
)
AC_SUBST(DEBUG_FLAGS)
AM_CONDITIONAL(USE_MYSQL, false)
useMySQL=no
AM_CONDITIONAL(USE_MYSQLPP, false)
useMySQLpp=no
AM_CONDITIONAL(USE_PGSQL, false)
usePostgreSQL=no
AM_CONDITIONAL(USE_SQLITE, false)
useSQLite=no
# check if we want mysql enabled
AC_ARG_ENABLE(mysql, [ --enable-mysql enable MySQL support], [
AM_CONDITIONAL(USE_MYSQL, true)
MYSQL_FLAGS=-D__USE_MYSQL__
AC_SUBST(MYSQL_FLAGS)
useMySQL=yes
])
# check if we want mysql++ enabled
AC_ARG_ENABLE(mysqlpp, [ --enable-mysqlpp enable MySQL++Connector support], [
AM_CONDITIONAL(USE_MYSQLPP, true)
MYSQLPP_FLAGS=-D__USE_MYSQLPP__
AC_SUBST(MYSQLPP_FLAGS)
useMySQLpp=yes
])
# check if we want postgresql enabled
AC_ARG_ENABLE(pgsql, [ --enable-pgsql enable PostgreSQL support], [
AM_CONDITIONAL(USE_PGSQL, true)
PGSQL_FLAGS="-D__USE_PGSQL__ -I`pg_config --includedir`"
AC_SUBST(PGSQL_FLAGS)
usePostgreSQL=yes
])
# check if we want sqlite enabled
AC_ARG_ENABLE(sqlite, [ --enable-sqlite enable SQLite support], [
AM_CONDITIONAL(USE_SQLITE, true)
SQLITE_FLAGS=-D__USE_SQLITE__
AC_SUBST(SQLITE_FLAGS)
useSQLite=yes
])
# check if we want the profiler
AC_ARG_ENABLE(profiler, [ --enable-profiler enable profiler support], [PROFILER_FLAGS=-pg])
AC_SUBST(PROFILER_FLAGS)
# Checks for header files.
AC_HEADER_STDC
AC_CHECK_HEADERS([arpa/inet.h netdb.h netinet/in.h stddef.h stdint.h stdlib.h sys/socket.h sys/timeb.h])
# Checks for typedefs, structures, and compiler characteristics.
AC_HEADER_STDBOOL
AC_C_CONST
AC_C_INLINE
AC_TYPE_INT16_T
AC_TYPE_INT32_T
AC_TYPE_INT64_T
AC_TYPE_SIZE_T
AC_STRUCT_TM
AC_TYPE_UINT16_T
AC_TYPE_UINT32_T
AC_TYPE_UINT64_T
AC_TYPE_UINT8_T
AC_CHECK_TYPES([ptrdiff_t])
# Checks for library functions.
AC_FUNC_MALLOC
AC_FUNC_MEMCMP
AC_FUNC_REALLOC
AC_CHECK_FUNCS([ceil floor ftime gethostbyname gethostname memset pow sqrt strcasecmp strncasecmp strstr strtol])
# check for xml2
AM_PATH_XML2(2.6.5, , AC_MSG_ERROR([You need libxml2 >= 2.6.5 to compile theforgottenserver!]))
LIBS="$LIBS $XML_LIBS"
# check for zlib
AC_CHECK_HEADERS([zlib.h], ,[AC_MSG_ERROR("zlib header not found.")])
AC_CHECK_LIB(z, main, ,[AC_MSG_ERROR("Linking against zlib library failed.")])
# check for pthread
AC_CHECK_HEADERS([pthread.h], ,[AC_MSG_ERROR("pthread header not found.")])
AC_CHECK_LIB(pthread, main, ,[AC_MSG_ERROR("Linking against pthread library failed)])
# check for OpenSSL
AC_CHECK_HEADERS([openssl/rsa.h openssl/bn.h openssl/err.h openssl/sha.h openssl/md5.h], , [AC_MSG_ERROR("Required OpenSSL headers not found.")])
AC_CHECK_LIB(crypto, main, , [AC_MSG_ERROR("Linking against OpenSSL library failed")])
# check for boost
AC_CHECK_LIB(boost_thread-gcc-mt, main, , [
AC_CHECK_LIB(boost_thread-mt, main, , [
AC_CHECK_LIB(boost_thread, main, , [
AC_MSG_ERROR("Linking against boost::thread library failed.")
])
])
])
AC_CHECK_LIB(boost_regex-gcc-mt, main, , [
AC_CHECK_LIB(boost_regex-mt, main, , [
AC_CHECK_LIB(boost_regex, main, , [
AC_MSG_ERROR("Linking against boost::regex library failed.")
])
])
])
AC_CHECK_LIB(boost_system-gcc-mt, main, , [
AC_CHECK_LIB(boost_system-mt, main, , [
AC_CHECK_LIB(boost_system, main, , [
AC_MSG_ERROR("Linking against boost::system library failed.")
])
])
])
AC_CHECK_LIB(boost_date_time-gcc-mt, main, , [
AC_CHECK_LIB(boost_date_time-mt, main, , [
AC_CHECK_LIB(boost_date_time, main, , [
AC_MSG_ERROR("Linking against boost::date-time library failed.")
])
])
])
AC_CHECK_LIB(boost_filesystem-gcc-mt, main, , [
AC_CHECK_LIB(boost_filesystem-mt, main, , [
AC_CHECK_LIB(boost_filesystem, main, , [
AC_MSG_ERROR("Linking against boost::filesystem library failed.")
])
])
])
# check for boost::unordered_set (should only check if gnu compiler version is below 4)
# AC_CHECK_HEADERS([boost/tr1/unordered_set.hpp], , [AC_MSG_ERROR("boost::unordered_set header not found. Please update your boost to at least 1.40.")])
# check for Lua
if test "$luaJIT" = "yes" ; then
PKG_CHECK_MODULES(LUA, luajit, , [
AC_CHECK_HEADERS([luajit-2.0/lua.hpp], ,[AC_MSG_ERROR("LuaJIT header not found.")])
AC_CHECK_LIB(luajit, main, , [
AC_CHECK_LIB(luajit-5.1, main, , [AC_MSG_ERROR("Linking against LuaJIT library failed.")])
])
])
else
PKG_CHECK_MODULES(LUA, lua5.1 >= 5.1, , [
AC_CHECK_HEADERS([lua.h], , [
OPTIONAL_FLAGS="$OPTIONAL_FLAGS -D__ALT_LUA_PATH__"
AC_CHECK_HEADERS([lua5.1/lua.h], , [AC_MSG_ERROR("Lua header not found.")])
])
AC_CHECK_LIB(lua, main, , [
AC_CHECK_LIB(lua5.1, main, , [AC_MSG_ERROR("Linking against Lua library failed.")])
])
])
fi
AC_SUBST(OPTIONAL_FLAGS)
AC_SUBST(LUA_CFLAGS)
AC_SUBST(LUA_LIBS)
if test "$useMySQL" = "no" ; then
if test "$useMySQLpp" = "no" ; then
if test "$useSQLite" = "no" ; then
if test "$usePostgreSQL" = "no" ; then
AM_CONDITIONAL(USE_SQLITE, true)
SQLITE_FLAGS=-D__USE_SQLITE__
AC_SUBST(SQLITE_FLAGS)
useSQLite=yes
echo WARNING: Any of available database drivers was enabled, using SQLite as default. To enable a database driver, configure with --enable-\<driver\> \(example: --enable-mysqlpp\)
echo
fi
fi
fi
fi
# check for mysql if it is enabled
if test -n "$MYSQL_FLAGS"; then
AC_CHECK_HEADERS([mysql/mysql.h],[MYSQL_LIBS=-lmysqlclient],[AC_MSG_ERROR("MySQL headers missing.")])
AC_CHECK_LIB(mysqlclient, main,[],[
if test -d /usr/lib64/mysql ; then
echo "NOTICE -- Copying mysqlclient files into the /usr/lib64 directory."
echo "NOTICE -- If mysqlclient is not found, please re-run the configure script."
cp -Rsf /usr/lib64/mysql/libmysqlclient* /usr/lib64
AC_CHECK_LIB(mysqlclient, main,[], [AC_MSG_ERROR("Linking against mysqlclient failed.")])
elif test -d /usr/lib/mysql ; then
echo "NOTICE -- Copying mysqlclient files into the /usr/lib directory."
echo "NOTICE -- If mysqlclient is not found, please re-run the configure script."
cp -Rsf /usr/lib/mysql/libmysqlclient* /usr/lib
AC_CHECK_LIB(mysqlclient, main,[], [AC_MSG_ERROR("Linking against mysqlclient failed.")])
else
AC_MSG_ERROR("Linking against mysql-client failed.")
fi
])
AC_SUBST(MYSQL_LIBS)
fi
# check for mysqlcppconn if it is enabled
if test -n "$MYSQLPP_FLAGS"; then
AC_CHECK_HEADERS([cppconn/config.h],[MYSQLPP_LIBS=-lmysqlcppconn],[AC_MSG_ERROR("MySQL++Connector headers missing.")])
AC_CHECK_LIB(mysqlcppconn, main,[],[AC_MSG_ERROR("Linking against libmysqlcppconn failed.")])
AC_SUBST(MYSQLPP_LIBS)
fi
# check for postgresql if it is enabled
if test -n "$PGSQL_FLAGS"; then
AC_CHECK_HEADERS([`pg_config --includedir`/libpq-fe.h],[PGSQL_LIBS=-lpg],[AC_MSG_ERROR("PostgreSQL headers missing.")])
AC_CHECK_LIB(pq, main,[],[AC_MSG_ERROR("Linking against libpq failed.")])
AC_SUBST(PGSQL_LIBS)
fi
# check for sqlite if it is enabled
if test -n "$SQLITE_FLAGS"; then
AC_CHECK_HEADERS([sqlite3.h],[SQLITE_LIBS=-lsqlite3],[AC_MSG_ERROR("SQLite3 headers missing.")])
AC_CHECK_LIB(sqlite3, main,[],[AC_MSG_ERROR("Linking against sqlite3 failed.")])
AC_SUBST(SQLITE_LIBS)
fi
AC_CONFIG_FILES([Makefile])
AC_OUTPUT
echo
#echo The Forgotten Server 0.3.7
echo $PACKAGE $VERSION
echo
echo Using LuaJIT................ : $luaJIT
echo Using ground cache.......... : $groundCache
echo Server diagnostics.......... : $serverDiag
echo Home-directory configuration : $homedirConf
echo Root run permission......... : $rootPermission
echo Login server mode........... : $loginServer
echo OTAdmin protocol............ : $otAdmin
echo OTServ custom allocator..... : $otservAllocator
echo Debug build................. : $debugBuild
echo
echo Build with MySQL............ : $useMySQL
echo Build with MySQL++Connector. : $useMySQLpp
echo Build with SQLite........... : $useSQLite
echo Build with PostgreSQL....... : $usePostgreSQL
echo
echo Configure complete, now you may type \'./build.sh\'.