-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfigure.ac
161 lines (141 loc) · 5.65 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
AC_INIT([minecraft-server-daemon], [1.0], [[email protected]])
AM_INIT_AUTOMAKE([-Wall -Werror foreign subdir-objects])
AC_PROG_CXX
AC_CONFIG_HEADERS([config.h])
AC_CONFIG_FILES(
[
Makefile
src/daemon/Makefile
src/client/Makefile
docs/Doxyfile
docs/Makefile
config/config.json
config/Makefile
]
)
AC_LANG_PUSH([C++])
# Check for dependencies
PKG_CHECK_MODULES([libevent],[libevent])
PKG_CHECK_MODULES([log4cpp],[log4cpp])
PKG_CHECK_MODULES([ncurses],[ncurses])
# Test for doxyen's existence. If true, define the HAVE_DOXYGEN variable.
AC_CHECK_PROGS([DOXYGEN], [doxygen])
if test -z "$DOXYGEN";
then AC_MSG_WARN([Doxygen not found - continuing without Doxygen support])
fi
AM_CONDITIONAL([HAVE_DOXYGEN],
[test -n "$DOXYGEN"])
# Add command line options for configuring doxygen output.
AC_ARG_ENABLE([doxygen_create_html],
[ --enable-doxygen_create_html Enable creation of HTML documentation by doxygen],
[case "${enableval}" in
yes) doxygen_create_html=true ;;
no) doxygen_create_html=false ;;
true) doxygen_create_html=true ;;
false) doxygen_create_html=false ;;
*) AC_MSG_ERROR([bad value ${enableval} for --enable-doxygen_create_html]) ;;
esac],
[doxygen_create_html=true]
)
AM_CONDITIONAL([DOXYGEN_CREATE_HTML], [test x$doxygen_create_html = xtrue])
AC_ARG_ENABLE([doxygen_create_latex],
[ --enable-doxygen_create_latex Enable creation of LaTeX documentation by doxygen],
[case "${enableval}" in
yes) doxygen_create_latex=true ;;
no) doxygen_create_latex=false ;;
true) doxygen_create_latex=true ;;
false) doxygen_create_latex=false ;;
*) AC_MSG_ERROR([bad value ${enableval} for --enable-doxygen_create_latex]) ;;
esac],
[doxygen_create_latex=false]
)
AM_CONDITIONAL([DOXYGEN_CREATE_LATEX], [test x$doxygen_create_latex = xtrue])
AC_ARG_ENABLE([doxygen_create_man],
[ --enable-doxygen_create_man Enable creation of Man documentation by doxygen],
[case "${enableval}" in
yes) doxygen_create_man=true ;;
no) doxygen_create_man=false ;;
true) doxygen_create_man=true ;;
false) doxygen_create_man=false ;;
*) AC_MSG_ERROR([bad value ${enableval} for --enable-doxygen_create_man]) ;;
esac],
[doxygen_create_man=true]
)
AM_CONDITIONAL([DOXYGEN_CREATE_MAN], [test x$doxygen_create_man = xtrue])
AC_ARG_ENABLE([doxygen_create_rtf],
[ --enable-doxygen_create_rtf Enable creation of RTF documentation by doxygen],
[case "${enableval}" in
yes) doxygen_create_rtf=true ;;
no) doxygen_create_rtf=false ;;
true) doxygen_create_rtf=true ;;
false) doxygen_create_rtf=false ;;
*) AC_MSG_ERROR([bad value ${enableval} for --enable-doxygen_create_rtf]) ;;
esac],
[doxygen_create_rtf=false]
)
AM_CONDITIONAL([DOXYGEN_CREATE_RTF], [test x$doxygen_create_rtf = xtrue])
AC_ARG_ENABLE([doxygen_create_xml],
[ --enable-doxygen_create_xml Enable creation of XML documentation by doxygen],
[case "${enableval}" in
yes) doxygen_create_xml=true ;;
no) doxygen_create_xml=false ;;
true) doxygen_create_xml=true ;;
false) doxygen_create_xml=false ;;
*) AC_MSG_ERROR([bad value ${enableval} for --enable-doxygen_create_xml]) ;;
esac],
[doxygen_create_xml=false]
)
AM_CONDITIONAL([DOXYGEN_CREATE_XML], [test x$doxygen_create_xml = xtrue])
AC_ARG_ENABLE([doxygen_create_docbook],
[ --enable-doxygen_create_docbook Enable creation of Docbook documentation by doxygen],
[case "${enableval}" in
yes) doxygen_create_docbook=true ;;
no) doxygen_create_docbook=false ;;
true) doxygen_create_docbook=true ;;
false) doxygen_create_docbook=false ;;
*) AC_MSG_ERROR([bad value ${enableval} for --enable-doxygen_create_docbook]) ;;
esac],
[doxygen_create_docbook=false]
)
AM_CONDITIONAL([DOXYGEN_CREATE_DOCBOOK], [test x$doxygen_create_docbook = xtrue])
#Add output variables allowing for configuration of hard coded program options
AC_ARG_VAR([LOG_DIR], [Directory logs will be put in.])
if test -z "$LOG_DIR";
then LOG_DIR="/var/log/minecraft" ; AC_MSG_NOTICE(LOG_DIR = $LOG_DIR)
else
AC_MSG_NOTICE(LOG_DIR = $LOG_DIR)
fi
AC_DEFINE_UNQUOTED([__LOG_DIR__], ["$LOG_DIR"], [Log directory path])
AC_ARG_VAR([CONFIG_DIR_NAME], [Name of configuration directory in sysconfdir.])
if test -z "$CONFIG_DIR_NAME";
then CONFIG_DIR_NAME="minecraft" ; AC_MSG_NOTICE(CONFIG_DIR_NAME = $CONFIG_DIR_NAME)
else
AC_MSG_NOTICE(CONFIG_DIR_NAME = $CONFIG_DIR_NAME)
fi
AC_ARG_VAR([CONFIG_FILE_NAME], [Absolute path of the daemon configuration file.])
if test -z "$CONFIG_FILE_NAME";
then CONFIG_FILE_NAME="/usr/local/etc/$CONFIG_DIR_NAME/config.json" ; AC_MSG_NOTICE(CONFIG_FILE_NAME = $CONFIG_FILE_NAME)
else
AC_MSG_NOTICE(CONFIG_FILE_NAME = $CONFIG_FILE_NAME)
fi
AC_DEFINE_UNQUOTED([__CONFIG_FILE_NAME__], ["$CONFIG_FILE_NAME"], [Config file path])
AC_ARG_VAR([DEFAULT_SERVER_DIR], [Default directory where servers are assumed to be located if an absolute path is not given in the config file.])
if test -z "$DEFAULT_SERVER_DIR";
then DEFAULT_SERVER_DIR="/usr/local/var/$CONFIG_DIR_NAME/servers/" ; AC_MSG_NOTICE(DEFAULT_SERVER_DIR = $DEFAULT_SERVER_DIR)
else
AC_MSG_NOTICE(DEFAULT_SERVER_DIR = $DEFAULT_SERVER_DIR)
fi
# Create --enable-debug option, allowing debugging to be switched on and off
AC_ARG_ENABLE([debug],
[ --enable-debug Turn on debugging],
[case "${enableval}" in
yes) debug=true; AC_DEFINE([__DEBUGGING__], [], [Debugging] ;;
no) debug=false; ;;
true) debug=true; AC_DEFINE([__DEBUGGING__], [], [Debugging] ;;
false) debug=false; ;;
*) AC_MSG_ERROR([bad value ${enableval} for --enable-debug]) ;;
esac],
[debug=false]
)
AM_CONDITIONAL([DEBUG], [test x$debug = xtrue])
AC_OUTPUT