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
|
# Filename: configure.in
AC_INIT(src/pracrod.cc)
AM_INIT_AUTOMAKE( pracrod, 0.0.1 )
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 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 >= 0.20)
dnl ======================
dnl Check for libconfig++
dnl ======================
PKG_CHECK_MODULES(CONFIG, libconfig++ >= 1.0.1)
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/Makefile)
|