summaryrefslogtreecommitdiff
path: root/server/configure.in
blob: 9d6b80357024ae80c8b48de3f7a85dffccaa9ac5 (plain)
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
# Filename: configure.in

AC_INIT(src/pracrod.cc)
AM_INIT_AUTOMAKE( pracrod, 0.0.1 )

dnl ======================
dnl Compile with debug options
dnl ======================
AC_ARG_WITH(debug,
	[  --with-debug            build with debug support (default=no)],
	[with_debug=yes],
	[with_debug=no])
if test x$with_debug == xyes; then
    AC_MSG_WARN([*** Building with debug support!])
    CXXFLAGS="$CXXFLAGS -D_FORTIFY_SOURCE=2 -fstack-protector -Wall -Werror -g -O0"
fi 

dnl ======================
dnl Compile without pentominos support
dnl ======================
AC_ARG_WITH(pentominos,
	[  --with-pentominos       build with pentominos support (default=yes)],
	[],
	[with_pentominos=yes])
if test x$with_pentominos == xno; then
    AC_MSG_WARN([*** Building without pentominos support!])
    CXXFLAGS="$CXXFLAGS -DWITHOUT_PENTOMINOS"
fi 

dnl ======================
dnl Compile without uploadserver support
dnl ======================
AC_ARG_WITH(uploadserver,
	[  --with-uploadserver     build with uploadserver support (default=yes)],
	[],
	[with_uploadserver=yes])
if test x$with_uploadserver == xno; then
    AC_MSG_WARN([*** Building without uploadserver support!])
    CXXFLAGS="$CXXFLAGS -DWITHOUT_UPLOADSERVER"
fi 

dnl ======================
dnl Compile without db support
dnl ======================
AC_ARG_WITH(db,
	[  --with-db               build with db support (default=yes)],
	[],
	[with_db=yes])
if test x$with_db == xno; then
    AC_MSG_WARN([*** Building without db support!])
    CXXFLAGS="$CXXFLAGS -DWITHOUT_DB"
fi 

AC_PROG_CXX

AC_PROG_LIBTOOL
AM_PROG_LIBTOOL

AM_CONFIG_HEADER(config.h)
AC_STDC_HEADERS

dnl ======================
dnl Create the ETC var i config.h
dnl ======================
if echo "$prefix" | grep "NONE" > /dev/null
then
	MYPREFIX="/usr/local"
else
	MYPREFIX="${prefix}"
fi
AC_SUBST(MYPREFIX)
AC_DEFINE_UNQUOTED(ETC, "$MYPREFIX/etc", [The path to the config files])

dnl ======================
dnl Use efence in linking and includes
dnl ======================
AC_ARG_ENABLE(efence,
	[  --enable-efence         enable efence - for debugging only (no)],
	[], [ enable_efence=no])             
if test "x$enable_efence" = xno; then
	enable_efence=no
else
	LD_EFENCE="-lefence"
	AC_SUBST(LD_EFENCE)
	AC_DEFINE_UNQUOTED(USE_EFENCE, , [Use the efence includes])
fi

dnl ======================
dnl Use duma in linking and includes
dnl ======================
AC_ARG_ENABLE(duma,
	[  --enable-duma           enable duma - for debugging only (no)],
	[], [ enable_duma=no])             
if test "x$enable_duma" = xno; then
	enable_duma=no
else
	LD_EFENCE="-lduma"
	AC_SUBST(LD_DUMA)
	AC_DEFINE_UNQUOTED(USE_DUMA, , [Use the duma includes])
fi

dnl ======================
dnl Check for lua
dnl ======================
PKG_CHECK_MODULES(LUA, lua >= 5.1)

dnl ======================
dnl Create the XML var i config.h
dnl ======================
AC_DEFINE_UNQUOTED(XML, "$MYPREFIX/share/xml", [The path to the xml files])


dnl ======================
dnl Check for getopt
dnl ======================
AC_HAVE_HEADERS(getopt.h)


dnl ======================
dnl Check for libpqxx
dnl ======================
PKG_CHECK_MODULES(PQXX, libpqxx >= 2.6.8)


dnl ======================
dnl Check for libconfig++
dnl ======================
PKG_CHECK_MODULES(CONFIG, libconfig++ >= 1.0.1)

dnl ======================
dnl Check for eXpat library
dnl ======================
AC_CHECK_HEADER(expat.h, , AC_MSG_ERROR([*** eXpat header file not found!]))
AC_CHECK_LIB(expat, XML_ParserCreate, ,  AC_MSG_ERROR([*** eXpat library not found!]))


#dnl ======================
#dnl Check for xerces-x
#dnl ======================
#AC_ARG_WITH(xercescinc,
#        [  --with-xercescinc       Set the incude dir for xerces],
#        [if test -n ${with_xercescinc}; then
#            xercesc_inc=${with_xercescinc};
#            dcheck="$dcheck --with-xercescinc=${with_xercescinc} ";
#         else
#            xercesc_inc=${oldincludedir}/xercesc;
#         fi
#        ],
#        [xercesc_inc=${oldincludedir}/xercesc;]
#)
#AC_ARG_WITH(xercesclib,
#        [  --with-xercesclib       Set the lib dir for xerces],
#        [if test -n ${with_xercesclib}; then
#            xercesc_lib=${with_xercesclib};
#            dcheck="$dcheck --with-xercesclib=${with_xercesclib} "
#         else
#            xercesc_lib=${libdir};
#         fi
#        ],
#        [xercesc_lib=${libdir};]
#)
#CXXFLAGS="${CXXFLAGS} -I${xercesc_inc}"
#LIBS="${LIBS} -L${xercesc_lib} -lxerces-c"
#AC_SUBST(CXXFLAGS)
#AC_SUBST(LIBS)
#AC_CHECK_HEADER(xercesc/util/XercesVersion.hpp, ,
#  AC_MSG_ERROR([*** libxerces-c headers not found!]))
#AC_CHECK_LIB(xerces-c, main, , AC_MSG_ERROR([*** libxerces-c not found!]))

AC_SUBST(CFLAGS)
AC_SUBST(CPPFLAGS)
AC_SUBST(CXXFLAGS)
AC_SUBST(LDFLAGS)




# check for doxygen, mostly stolen from http://log4cpp.sourceforge.net/
# ----------------------------------------------------------------------------
AC_DEFUN([BB_ENABLE_DOXYGEN],
[
AC_ARG_ENABLE(doxygen,
	[  --enable-doxygen        enable documentation generation with doxygen (auto)])
AC_ARG_ENABLE(dot,
	[  --enable-dot            use 'dot' to generate graphs in doxygen (auto)])
AC_ARG_ENABLE(html-docs,
	[  --enable-html-docs      enable HTML generation with doxygen (no)],
	[], [ enable_html_docs=no])
AC_ARG_ENABLE(latex-docs,
	[  --enable-latex-docs     enable LaTeX documentation generation with doxygen (no)],
	[], [ enable_latex_docs=no])             
if test "x$enable_doxygen" = xno; then
	enable_doc=no
else
	AC_OUTPUT(doc/Makefile)
	DOC_DIR=doc
	AC_SUBST(DOC_DIR)
	AC_PATH_PROG(DOXYGEN, doxygen, , $PATH)
	if test x$DOXYGEN = x; then
		if test "x$enable_doxygen" = xyes; then
			AC_MSG_ERROR([could not find doxygen])
		fi
		enable_doc=no
	else
		enable_doc=yes
		AC_PATH_PROG(DOT, dot, , $PATH)
	fi
fi
AM_CONDITIONAL(DOC, test x$enable_doc = xyes)

if test x$DOT = x; then
	if test "x$enable_dot" = xyes; then
		AC_MSG_ERROR([could not find dot])
	fi
	enable_dot=no
else
	enable_dot=yes
fi
AM_CONDITIONAL(ENABLE_DOXYGEN, test x$enable_doc = xtrue)
AC_SUBST(enable_dot)
AC_SUBST(enable_html_docs)
AC_SUBST(enable_latex_docs)
])

# check for doxygen
# ----------------------------------------------------------------------------
BB_ENABLE_DOXYGEN

AC_OUTPUT(
	Makefile
	src/Makefile
	etc/Makefile
	man/Makefile
	xml/templates/Makefile
	xml/macros/Makefile
	xml/Makefile)