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
|
# Filename: configure.in
AC_INIT(src/pracrod.cc)
AM_INIT_AUTOMAKE( pracrod, 1.1.0 )
dnl ======================
dnl Compile with debug options
dnl ======================
AC_ARG_WITH(debug,
[ --with-debug build with debug support (default=no)],
[],
[with_debug=no])
if test x$with_debug == xyes; then
AC_MSG_WARN([*** Building with debug support!])
AC_DEFINE_UNQUOTED(WITH_DEBUG, , [The project is configured to use debug output])
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!])
AC_DEFINE_UNQUOTED(WITHOUT_PENTOMINOS, , [The project is configured not to use pentomimos])
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!])
AC_DEFINE_UNQUOTED(WITHOUT_UPLOADSERVER, , [The project is configured not to use the upload server])
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!])
AC_DEFINE_UNQUOTED(WITHOUT_DB, , [The project is configured not to use the db])
else
dnl ======================
dnl Check for libpqxx
dnl ======================
PKG_CHECK_MODULES(PQXX, libpqxx >= 2.6.8)
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 libconfig++
dnl ======================
PKG_CHECK_MODULES(CONFIG, libconfig++ >= 1.0.1)
dnl ======================
dnl Check for libartefact
dnl ======================
PKG_CHECK_MODULES(ATF, libartefact >= 0.1.0)
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!]))
AC_SUBST(CFLAGS)
AC_SUBST(CPPFLAGS)
AC_SUBST(CXXFLAGS)
AC_SUBST(LDFLAGS)
AC_OUTPUT(
Makefile
src/Makefile
etc/Makefile
man/Makefile
xml/templates/Makefile
xml/macros/Makefile
xml/Makefile)
|