author | Michael Krelin <hacker@klever.net> | 2007-10-01 13:25:32 (UTC) |
---|---|---|
committer | Michael Krelin <hacker@klever.net> | 2007-10-01 13:25:32 (UTC) |
commit | a4c2f2e18459bc8f97860362cbde9070f51993d8 (patch) (unidiff) | |
tree | a84f9f296c64b22c0891f94a40dfbad68e5f2292 | |
parent | 1e329b6fcb1f6d2df9b3337c574bbcd7e66c27ea (diff) | |
download | libopkele-a4c2f2e18459bc8f97860362cbde9070f51993d8.zip libopkele-a4c2f2e18459bc8f97860362cbde9070f51993d8.tar.gz libopkele-a4c2f2e18459bc8f97860362cbde9070f51993d8.tar.bz2 |
don't be smart about pkgconfig dir
Signed-off-by: Michael Krelin <hacker@klever.net>
-rw-r--r-- | Makefile.am | 5 | ||||
-rw-r--r-- | acinclude.m4 | 45 | ||||
-rw-r--r-- | configure.ac | 2 |
3 files changed, 2 insertions, 50 deletions
diff --git a/Makefile.am b/Makefile.am index 741d585..638d6af 100644 --- a/Makefile.am +++ b/Makefile.am | |||
@@ -1,23 +1,20 @@ | |||
1 | 1 | ||
2 | SUBDIRS=include lib test | 2 | SUBDIRS=include lib test |
3 | EXTRA_DIST= NEWS NEWS.xml NEWS.xsl | 3 | EXTRA_DIST= NEWS NEWS.xml NEWS.xsl |
4 | 4 | ||
5 | DISTCHECK_CONFIGURE_FLAGS=--with-pkgconfigdir=$${dc_install_base}/lib/pkgconfig | 5 | pkgconfigdir=${libdir}/pkgconfig |
6 | if HAVE_PKGCONFIG | ||
7 | pkgconfigdir=@PKGCONFIG_DIR@ | ||
8 | pkgconfig_DATA=libopkele.pc | 6 | pkgconfig_DATA=libopkele.pc |
9 | endif | ||
10 | 7 | ||
11 | all-local: NEWS | 8 | all-local: NEWS |
12 | if HAVE_DOXYGEN | 9 | if HAVE_DOXYGEN |
13 | clean-local: | 10 | clean-local: |
14 | rm -rf doxydox | 11 | rm -rf doxydox |
15 | endif | 12 | endif |
16 | 13 | ||
17 | NEWS: NEWS.xsl NEWS.xml | 14 | NEWS: NEWS.xsl NEWS.xml |
18 | ${XSLTPROC} -o $@ NEWS.xsl NEWS.xml | 15 | ${XSLTPROC} -o $@ NEWS.xsl NEWS.xml |
19 | 16 | ||
20 | if HAVE_DOXYGEN | 17 | if HAVE_DOXYGEN |
21 | dox: Doxyfile | 18 | dox: Doxyfile |
22 | ${DOXYGEN} | 19 | ${DOXYGEN} |
23 | endif | 20 | endif |
diff --git a/acinclude.m4 b/acinclude.m4 index 532f978..80defc7 100644 --- a/acinclude.m4 +++ b/acinclude.m4 | |||
@@ -1,211 +1,166 @@ | |||
1 | dnl AC_WITH_PKGCONFIG([ACTION-IF-FOUND[,ACTION-IF-NOT-FOUND]]) | ||
2 | dnl Outputs: | ||
3 | dnl AC_SUBST: PKGCONFIG_PKGCONFIG PKGCONFIG_DIR | ||
4 | dnl AM_CONDTIONAL: HAVE_PKGCONFIG | ||
5 | AC_DEFUN([AC_WITH_PKGCONFIG],[ | ||
6 | PKGCONFIG_PKGCONFIG="" | ||
7 | PKGCONFIG_DIR="" | ||
8 | HAVE_PKGCONFIG="no" | ||
9 | EXPLICIT_PKGCONFIGDIR="no" | ||
10 | test -z "${WANT_PKGCONFIG}" && WANT_PKGCONFIG="" | ||
11 | AC_PATH_PROG([PKGCONFIG_PKGCONFIG],[pkg-config],[false]) | ||
12 | if test "${PKGCONFIG_PKGCONFIG}" != "false" ; then | ||
13 | AC_ARG_WITH([pkgconfigdir], | ||
14 | AC_HELP_STRING([--with-pkgconfigdir=dir],[Specify pkgconfig directory]), | ||
15 | [ | ||
16 | if test "${withval}" = "no" ; then | ||
17 | WANT_PKGCONFIG="no" | ||
18 | else | ||
19 | PKGCONFIG_DIR="${withval}" | ||
20 | EXPLICIT_PKGCONFIGDIR="yes" | ||
21 | fi | ||
22 | ],[ | ||
23 | AC_MSG_CHECKING([for pkgconfig directory]) | ||
24 | PKGCONFIG_DIR="`${PKGCONFIG_PKGCONFIG} --debug 2>&1 | grep '^Scanning'| head -n 1 | cut -d\' -f2-|cut -d\' -f1`" | ||
25 | AC_MSG_RESULT([${PKGCONFIG_DIR}]) | ||
26 | ] | ||
27 | ) | ||
28 | if test -d "${PKGCONFIG_DIR}" ; then | ||
29 | HAVE_PKGCONFIG=yes | ||
30 | AC_SUBST([PKGCONFIG_PKGCONFIG]) | ||
31 | AC_SUBST([PKGCONFIG_DIR]) | ||
32 | else | ||
33 | AC_MSG_NOTICE([unexistent pkgconfig directory: ${PKGCONFIG_DIR}]) | ||
34 | if test "${EXPLICIT_PKGCONFIGDIR}" = "yes" ; then | ||
35 | HAVE_PKGCONFIG=yes | ||
36 | AC_SUBST([PKGCONFIG_PKGCONFIG]) | ||
37 | AC_SUBST([PKGCONFIG_DIR]) | ||
38 | else | ||
39 | ifelse([$2], , :, [$2]) | ||
40 | fi | ||
41 | fi | ||
42 | fi | ||
43 | AM_CONDITIONAL([HAVE_PKGCONFIG],[test "${HAVE_PKGCONFIG}" = "yes"]) | ||
44 | ]) | ||
45 | |||
46 | dnl AC_WITH_DOXYGEN([ACTION-IF-FOUND[,ACTION-IF-NOT-FOUND]]) | 1 | dnl AC_WITH_DOXYGEN([ACTION-IF-FOUND[,ACTION-IF-NOT-FOUND]]) |
47 | dnl Outputs: | 2 | dnl Outputs: |
48 | dnl AC_SUBST: DOXYGEN HAVE_DOXYGEN | 3 | dnl AC_SUBST: DOXYGEN HAVE_DOXYGEN |
49 | dnl AM_CONDTIONAL: HAVE_DOXYGEN | 4 | dnl AM_CONDTIONAL: HAVE_DOXYGEN |
50 | AC_DEFUN([AC_WITH_DOXYGEN],[ | 5 | AC_DEFUN([AC_WITH_DOXYGEN],[ |
51 | HAVE_DOXYGEN="no" | 6 | HAVE_DOXYGEN="no" |
52 | AC_PATH_PROG([DOXYGEN],[doxygen],[false]) | 7 | AC_PATH_PROG([DOXYGEN],[doxygen],[false]) |
53 | if test "${DOXYGEN}" = "false" ; then | 8 | if test "${DOXYGEN}" = "false" ; then |
54 | ifelse([$2], , :, [$2]) | 9 | ifelse([$2], , :, [$2]) |
55 | else | 10 | else |
56 | HAVE_DOXYGEN="yes" | 11 | HAVE_DOXYGEN="yes" |
57 | AC_SUBST([DOXYGEN]) | 12 | AC_SUBST([DOXYGEN]) |
58 | $1 | 13 | $1 |
59 | fi | 14 | fi |
60 | AC_SUBST([HAVE_DOXYGEN]) | 15 | AC_SUBST([HAVE_DOXYGEN]) |
61 | AM_CONDITIONAL([HAVE_DOXYGEN],[test "${HAVE_DOXYGEN}" = "yes"]) | 16 | AM_CONDITIONAL([HAVE_DOXYGEN],[test "${HAVE_DOXYGEN}" = "yes"]) |
62 | ]) | 17 | ]) |
63 | 18 | ||
64 | dnl AC_WITH_DOT([ACTION-IF-FOUND[,ACTION-IF-NOT-FOUND]]) | 19 | dnl AC_WITH_DOT([ACTION-IF-FOUND[,ACTION-IF-NOT-FOUND]]) |
65 | dnl Outputs: | 20 | dnl Outputs: |
66 | dnl AC_SUBST: DOT HAVE_DOT | 21 | dnl AC_SUBST: DOT HAVE_DOT |
67 | dnl AM_CONDITIONAL: HAVE_DOT | 22 | dnl AM_CONDITIONAL: HAVE_DOT |
68 | AC_DEFUN([AC_WITH_DOT],[ | 23 | AC_DEFUN([AC_WITH_DOT],[ |
69 | HAVE_DOT="no" | 24 | HAVE_DOT="no" |
70 | AC_PATH_PROG([DOT],[dot],[false]) | 25 | AC_PATH_PROG([DOT],[dot],[false]) |
71 | if test "${DOT}" = "false" ; then | 26 | if test "${DOT}" = "false" ; then |
72 | ifelse([$2], , :, [$2]) | 27 | ifelse([$2], , :, [$2]) |
73 | else | 28 | else |
74 | HAVE_DOT="yes" | 29 | HAVE_DOT="yes" |
75 | AC_SUBST([DOT]) | 30 | AC_SUBST([DOT]) |
76 | $1 | 31 | $1 |
77 | fi | 32 | fi |
78 | AC_SUBST([HAVE_DOT]) | 33 | AC_SUBST([HAVE_DOT]) |
79 | AM_CONDITIONAL([HAVE_DOT],[test "${HAVE_DOT}" = "yes"]) | 34 | AM_CONDITIONAL([HAVE_DOT],[test "${HAVE_DOT}" = "yes"]) |
80 | ]) | 35 | ]) |
81 | 36 | ||
82 | dnl AC_WITH_PCRE([ACTION-IF-FOUND[,ACTION-IF-NOT-FOUND]]) | 37 | dnl AC_WITH_PCRE([ACTION-IF-FOUND[,ACTION-IF-NOT-FOUND]]) |
83 | dnl Outputs: | 38 | dnl Outputs: |
84 | dnl AC_SUBST: PCRE_CONFIG PCRE_PREFIX PCRE_EXEC_PREFIX | 39 | dnl AC_SUBST: PCRE_CONFIG PCRE_PREFIX PCRE_EXEC_PREFIX |
85 | dnl PCRE_VERSION PCRE_CFLAGS PCRE_LIBS | 40 | dnl PCRE_VERSION PCRE_CFLAGS PCRE_LIBS |
86 | dnl PCRE_LIBS_POSIX PCRE_CFLAGS_POSIX | 41 | dnl PCRE_LIBS_POSIX PCRE_CFLAGS_POSIX |
87 | dnl AC_DEFINE: HAVE_PCRE PCRE_VERSION | 42 | dnl AC_DEFINE: HAVE_PCRE PCRE_VERSION |
88 | dnl env: HAVE_PCRE=yes|no | 43 | dnl env: HAVE_PCRE=yes|no |
89 | AC_DEFUN([AC_WITH_PCRE],[ | 44 | AC_DEFUN([AC_WITH_PCRE],[ |
90 | HAVE_PCRE="no" | 45 | HAVE_PCRE="no" |
91 | PCRE_CONFIG="" | 46 | PCRE_CONFIG="" |
92 | PCRE_PREFIX="" | 47 | PCRE_PREFIX="" |
93 | PCRE_EXEC_PREFIX="" | 48 | PCRE_EXEC_PREFIX="" |
94 | PCRE_VERSION="" | 49 | PCRE_VERSION="" |
95 | PCRE_CFLAGS="" | 50 | PCRE_CFLAGS="" |
96 | PCRE_LIBS="" | 51 | PCRE_LIBS="" |
97 | PCRE_LOCATIONS="${PATH}:/usr/local/bin:/usr/bin" | 52 | PCRE_LOCATIONS="${PATH}:/usr/local/bin:/usr/bin" |
98 | test -z "$WANT_PCRE" && WANT_PCRE="" | 53 | test -z "$WANT_PCRE" && WANT_PCRE="" |
99 | AC_ARG_WITH([pcre], | 54 | AC_ARG_WITH([pcre], |
100 | AC_HELP_STRING([--with-pcre=location],[Look for pcre in specified locations]), | 55 | AC_HELP_STRING([--with-pcre=location],[Look for pcre in specified locations]), |
101 | [ | 56 | [ |
102 | if test "${withval}" = "no" ; then | 57 | if test "${withval}" = "no" ; then |
103 | WANT_PCRE="no" | 58 | WANT_PCRE="no" |
104 | else | 59 | else |
105 | if test -x "${withval}" ; then | 60 | if test -x "${withval}" ; then |
106 | PCRE_CONFIG="${withval}" | 61 | PCRE_CONFIG="${withval}" |
107 | elif test -x "${withval}/pcre-config" ; then | 62 | elif test -x "${withval}/pcre-config" ; then |
108 | PCRE_CONFIG="${withval}/pcre-config" | 63 | PCRE_CONFIG="${withval}/pcre-config" |
109 | elif test -x "${withval}/bin/pcre-config" ; then | 64 | elif test -x "${withval}/bin/pcre-config" ; then |
110 | PCRE_CONFIG="${withval}/bin/pcre-config" | 65 | PCRE_CONFIG="${withval}/bin/pcre-config" |
111 | fi | 66 | fi |
112 | fi | 67 | fi |
113 | ] | 68 | ] |
114 | ) | 69 | ) |
115 | if test "${WANT_PCRE}" = "no" ; then | 70 | if test "${WANT_PCRE}" = "no" ; then |
116 | ifelse([$2], , :, [$2]) | 71 | ifelse([$2], , :, [$2]) |
117 | else | 72 | else |
118 | if test -z "${PCRE_CONFIG}" ; then | 73 | if test -z "${PCRE_CONFIG}" ; then |
119 | AC_PATH_PROG(PCRE_CONFIG,[pcre-config],false,[${PCRE_LOCATIONS}]) | 74 | AC_PATH_PROG(PCRE_CONFIG,[pcre-config],false,[${PCRE_LOCATIONS}]) |
120 | if test "${PCRE_CONFIG}" = "false" ; then | 75 | if test "${PCRE_CONFIG}" = "false" ; then |
121 | ifelse([$2], , :, [$2]) | 76 | ifelse([$2], , :, [$2]) |
122 | else | 77 | else |
123 | HAVE_PCRE="yes" | 78 | HAVE_PCRE="yes" |
124 | PCRE_PREFIX="`${PCRE_CONFIG} --prefix`" | 79 | PCRE_PREFIX="`${PCRE_CONFIG} --prefix`" |
125 | PCRE_EXEC_PREFIX="`${PCRE_CONFIG} --exec-prefix`" | 80 | PCRE_EXEC_PREFIX="`${PCRE_CONFIG} --exec-prefix`" |
126 | PCRE_VERSION="`${PCRE_CONFIG} --version`" | 81 | PCRE_VERSION="`${PCRE_CONFIG} --version`" |
127 | PCRE_CFLAGS="`${PCRE_CONFIG} --cflags`" | 82 | PCRE_CFLAGS="`${PCRE_CONFIG} --cflags`" |
128 | PCRE_LIBS="`${PCRE_CONFIG} --libs`" | 83 | PCRE_LIBS="`${PCRE_CONFIG} --libs`" |
129 | PCRE_CFLAGS_POSIX="`${PCRE_CONFIG} --cflags-posix`" | 84 | PCRE_CFLAGS_POSIX="`${PCRE_CONFIG} --cflags-posix`" |
130 | PCRE_LIBS_POSIX="`${PCRE_CONFIG} --libs-posix`" | 85 | PCRE_LIBS_POSIX="`${PCRE_CONFIG} --libs-posix`" |
131 | AC_SUBST([PCRE_CONFIG]) | 86 | AC_SUBST([PCRE_CONFIG]) |
132 | AC_SUBST([PCRE_PREFIX]) | 87 | AC_SUBST([PCRE_PREFIX]) |
133 | AC_SUBST([PCRE_EXEC_PREFIX]) | 88 | AC_SUBST([PCRE_EXEC_PREFIX]) |
134 | AC_SUBST([PCRE_VERSION]) | 89 | AC_SUBST([PCRE_VERSION]) |
135 | AC_SUBST([PCRE_CFLAGS]) | 90 | AC_SUBST([PCRE_CFLAGS]) |
136 | AC_SUBST([PCRE_LIBS]) | 91 | AC_SUBST([PCRE_LIBS]) |
137 | AC_SUBST([PCRE_CFLAGS_POSIX]) | 92 | AC_SUBST([PCRE_CFLAGS_POSIX]) |
138 | AC_SUBST([PCRE_LIBS_POSIX]) | 93 | AC_SUBST([PCRE_LIBS_POSIX]) |
139 | AC_DEFINE([HAVE_PCRE],,[pcre support]) | 94 | AC_DEFINE([HAVE_PCRE],,[pcre support]) |
140 | AC_DEFINE_UNQUOTED([PCRE_VERSION],["${PCRE_VERSION}"],[pcre version]) | 95 | AC_DEFINE_UNQUOTED([PCRE_VERSION],["${PCRE_VERSION}"],[pcre version]) |
141 | $1 | 96 | $1 |
142 | fi | 97 | fi |
143 | fi | 98 | fi |
144 | fi | 99 | fi |
145 | ]) | 100 | ]) |
146 | 101 | ||
147 | dnl AC_WITH_PCREPP([ACTION-IF-FOUND[,ACTION-IF-NOT-FOUND]]) | 102 | dnl AC_WITH_PCREPP([ACTION-IF-FOUND[,ACTION-IF-NOT-FOUND]]) |
148 | dnl Outputs: | 103 | dnl Outputs: |
149 | dnl AC_SUBST: PCREPP_CONFIG PCREPP_PREFIX PCREPP_EXEC_PREFIX | 104 | dnl AC_SUBST: PCREPP_CONFIG PCREPP_PREFIX PCREPP_EXEC_PREFIX |
150 | dnl PCREPP_VERSION PCREPP_CFLAGS PCREPP_LIBS | 105 | dnl PCREPP_VERSION PCREPP_CFLAGS PCREPP_LIBS |
151 | dnl AC_DEFINE: HAVE_PCREPP PCREPP_VERSION | 106 | dnl AC_DEFINE: HAVE_PCREPP PCREPP_VERSION |
152 | dnl env: HAVE_PCREPP=yes|no | 107 | dnl env: HAVE_PCREPP=yes|no |
153 | AC_DEFUN([AC_WITH_PCREPP],[ | 108 | AC_DEFUN([AC_WITH_PCREPP],[ |
154 | HAVE_PCREPP="no" | 109 | HAVE_PCREPP="no" |
155 | PCREPP_CONFIG="" | 110 | PCREPP_CONFIG="" |
156 | PCREPP_PREFIX="" | 111 | PCREPP_PREFIX="" |
157 | PCREPP_EXEC_PREFIX="" | 112 | PCREPP_EXEC_PREFIX="" |
158 | PCREPP_VERSION="" | 113 | PCREPP_VERSION="" |
159 | PCREPP_CFLAGS="" | 114 | PCREPP_CFLAGS="" |
160 | PCREPP_LIBS="" | 115 | PCREPP_LIBS="" |
161 | PCREPP_LOCATIONS="${PATH}:/usr/local/bin:/usr/bin" | 116 | PCREPP_LOCATIONS="${PATH}:/usr/local/bin:/usr/bin" |
162 | test -z "$WANT_PCREPP" && WANT_PCREPP="" | 117 | test -z "$WANT_PCREPP" && WANT_PCREPP="" |
163 | AC_ARG_WITH([pcrepp], | 118 | AC_ARG_WITH([pcrepp], |
164 | AC_HELP_STRING([--with-pcrepp=location],[Look for pcre++ in specified locations]), | 119 | AC_HELP_STRING([--with-pcrepp=location],[Look for pcre++ in specified locations]), |
165 | [ | 120 | [ |
166 | if test "${withval}" = "no" ; then | 121 | if test "${withval}" = "no" ; then |
167 | WANT_PCREPP="no" | 122 | WANT_PCREPP="no" |
168 | else | 123 | else |
169 | if test -x "${withval}" ; then | 124 | if test -x "${withval}" ; then |
170 | PCREPP_CONFIG="${withval}" | 125 | PCREPP_CONFIG="${withval}" |
171 | elif test -x "${withval}/pcre++-config" ; then | 126 | elif test -x "${withval}/pcre++-config" ; then |
172 | PCREPP_CONFIG="${withval}/pcre++-config" | 127 | PCREPP_CONFIG="${withval}/pcre++-config" |
173 | elif test -x "${withval}/bin/pcre++-config" ; then | 128 | elif test -x "${withval}/bin/pcre++-config" ; then |
174 | PCREPP_CONFIG="${withval}/bin/pcre++-config" | 129 | PCREPP_CONFIG="${withval}/bin/pcre++-config" |
175 | fi | 130 | fi |
176 | fi | 131 | fi |
177 | ] | 132 | ] |
178 | ) | 133 | ) |
179 | if test "${WANT_PCREPP}" = "no" ; then | 134 | if test "${WANT_PCREPP}" = "no" ; then |
180 | ifelse([$2], , :, [$2]) | 135 | ifelse([$2], , :, [$2]) |
181 | else | 136 | else |
182 | if test "${HAVE_PCRE}" != "yes" ; then | 137 | if test "${HAVE_PCRE}" != "yes" ; then |
183 | ifelse([$2], , :, [$2]) | 138 | ifelse([$2], , :, [$2]) |
184 | else | 139 | else |
185 | if test -z "${PCREPP_CONFIG}" ; then | 140 | if test -z "${PCREPP_CONFIG}" ; then |
186 | AC_PATH_PROG([PCREPP_CONFIG],[pcre++-config],false,[${PCREPP_LOCATIONS}]) | 141 | AC_PATH_PROG([PCREPP_CONFIG],[pcre++-config],false,[${PCREPP_LOCATIONS}]) |
187 | if test "${PCREPP_CONFIG}" = "false" ; then | 142 | if test "${PCREPP_CONFIG}" = "false" ; then |
188 | ifelse([$2], , :, [$2]) | 143 | ifelse([$2], , :, [$2]) |
189 | else | 144 | else |
190 | HAVE_PCREPP="yes" | 145 | HAVE_PCREPP="yes" |
191 | PCREPP_PREFIX="`${PCREPP_CONFIG} --prefix`" | 146 | PCREPP_PREFIX="`${PCREPP_CONFIG} --prefix`" |
192 | PCREPP_EXEC_PREFIX="`${PCREPP_CONFIG} --exec-prefix`" | 147 | PCREPP_EXEC_PREFIX="`${PCREPP_CONFIG} --exec-prefix`" |
193 | PCREPP_VERSION="`${PCREPP_CONFIG} --version`" | 148 | PCREPP_VERSION="`${PCREPP_CONFIG} --version`" |
194 | PCREPP_CFLAGS="`${PCREPP_CONFIG} --cflags` ${PCRE_CFLAGS}" | 149 | PCREPP_CFLAGS="`${PCREPP_CONFIG} --cflags` ${PCRE_CFLAGS}" |
195 | PCREPP_LIBS="`${PCREPP_CONFIG} --libs` ${PCRE_LIBS}" | 150 | PCREPP_LIBS="`${PCREPP_CONFIG} --libs` ${PCRE_LIBS}" |
196 | AC_SUBST([PCREPP_CONFIG]) | 151 | AC_SUBST([PCREPP_CONFIG]) |
197 | AC_SUBST([PCREPP_PREFIX]) | 152 | AC_SUBST([PCREPP_PREFIX]) |
198 | AC_SUBST([PCREPP_EXEC_PREFIX]) | 153 | AC_SUBST([PCREPP_EXEC_PREFIX]) |
199 | AC_SUBST([PCREPP_VERSION]) | 154 | AC_SUBST([PCREPP_VERSION]) |
200 | AC_SUBST([PCREPP_CFLAGS]) | 155 | AC_SUBST([PCREPP_CFLAGS]) |
201 | AC_SUBST([PCREPP_LIBS]) | 156 | AC_SUBST([PCREPP_LIBS]) |
202 | AC_DEFINE([HAVE_PCREPP],,[pcre++ support]) | 157 | AC_DEFINE([HAVE_PCREPP],,[pcre++ support]) |
203 | AC_DEFINE_UNQUOTED([PCREPP_VERSION],["${PCREPP_VERSION}"],[pcre++ version]) | 158 | AC_DEFINE_UNQUOTED([PCREPP_VERSION],["${PCREPP_VERSION}"],[pcre++ version]) |
204 | $1 | 159 | $1 |
205 | fi | 160 | fi |
206 | fi | 161 | fi |
207 | fi | 162 | fi |
208 | fi | 163 | fi |
209 | ]) | 164 | ]) |
210 | 165 | ||
211 | m4_include([acinclude.d/libcurl.m4]) | 166 | m4_include([acinclude.d/libcurl.m4]) |
diff --git a/configure.ac b/configure.ac index 53e22ba..4f9b6c2 100644 --- a/configure.ac +++ b/configure.ac | |||
@@ -1,91 +1,91 @@ | |||
1 | AC_INIT([libopkele], [0.3], [libopkele-bugs@klever.net]) | 1 | AC_INIT([libopkele], [0.3], [libopkele-bugs@klever.net]) |
2 | AC_CONFIG_SRCDIR([include/opkele/opkele-config.h]) | 2 | AC_CONFIG_SRCDIR([include/opkele/opkele-config.h]) |
3 | AC_CONFIG_HEADERS([config.h include/opkele/acconfig.h]) | 3 | AC_CONFIG_HEADERS([config.h include/opkele/acconfig.h]) |
4 | AM_INIT_AUTOMAKE([dist-bzip2]) | 4 | AM_INIT_AUTOMAKE([dist-bzip2]) |
5 | 5 | ||
6 | AC_PROG_INSTALL | 6 | AC_PROG_INSTALL |
7 | AC_PROG_CXX | 7 | AC_PROG_CXX |
8 | AC_PROG_CC | 8 | AC_PROG_CC |
9 | AC_PROG_LIBTOOL | 9 | AC_PROG_LIBTOOL |
10 | PKG_PROG_PKG_CONFIG | ||
10 | 11 | ||
11 | AC_HEADER_STDC | 12 | AC_HEADER_STDC |
12 | 13 | ||
13 | AC_PATH_PROG([XSLTPROC],[xsltproc],[true]) | 14 | AC_PATH_PROG([XSLTPROC],[xsltproc],[true]) |
14 | AC_WITH_PKGCONFIG | ||
15 | 15 | ||
16 | PKG_CHECK_MODULES([OPENSSL],[openssl],,[ | 16 | PKG_CHECK_MODULES([OPENSSL],[openssl],,[ |
17 | AC_MSG_ERROR([no openssl library found. get one from http://www.openssl.org/]) | 17 | AC_MSG_ERROR([no openssl library found. get one from http://www.openssl.org/]) |
18 | ]) | 18 | ]) |
19 | 19 | ||
20 | WANT_KONFORKA="yes" | 20 | WANT_KONFORKA="yes" |
21 | AC_ARG_ENABLE([konforka], | 21 | AC_ARG_ENABLE([konforka], |
22 | AC_HELP_STRING([--disable-konforka],[do not use konforka library (default: use if found)]), | 22 | AC_HELP_STRING([--disable-konforka],[do not use konforka library (default: use if found)]), |
23 | [ | 23 | [ |
24 | test "${enableval}" = "no" && WANT_KONFORKA="no" | 24 | test "${enableval}" = "no" && WANT_KONFORKA="no" |
25 | ] | 25 | ] |
26 | ) | 26 | ) |
27 | if test "${WANT_KONFORKA}" = "yes" ; then | 27 | if test "${WANT_KONFORKA}" = "yes" ; then |
28 | PKG_CHECK_MODULES([KONFORKA],[konforka],[ | 28 | PKG_CHECK_MODULES([KONFORKA],[konforka],[ |
29 | AC_SUBST([KONFORKA_CFLAGS]) | 29 | AC_SUBST([KONFORKA_CFLAGS]) |
30 | AC_SUBST([KONFORKA_LIBS]) | 30 | AC_SUBST([KONFORKA_LIBS]) |
31 | AC_DEFINE([HAVE_KONFORKA],,[defined in presence of konforka library]) | 31 | AC_DEFINE([HAVE_KONFORKA],,[defined in presence of konforka library]) |
32 | AC_DEFINE([OPKELE_HAVE_KONFORKA],,[defined in presence of konforka library]) | 32 | AC_DEFINE([OPKELE_HAVE_KONFORKA],,[defined in presence of konforka library]) |
33 | AC_SUBST([KONFORKA_KONFORKA],[konforka]) | 33 | AC_SUBST([KONFORKA_KONFORKA],[konforka]) |
34 | ],[true]) | 34 | ],[true]) |
35 | fi | 35 | fi |
36 | 36 | ||
37 | WANT_DOXYGEN="yes" | 37 | WANT_DOXYGEN="yes" |
38 | AC_ARG_ENABLE([doxygen], | 38 | AC_ARG_ENABLE([doxygen], |
39 | AC_HELP_STRING([--disable-doxygen],[do not generate documentation]), | 39 | AC_HELP_STRING([--disable-doxygen],[do not generate documentation]), |
40 | [ | 40 | [ |
41 | test "${enableval}" = "no" && WANT_DOXYGEN="no" | 41 | test "${enableval}" = "no" && WANT_DOXYGEN="no" |
42 | ] | 42 | ] |
43 | ) | 43 | ) |
44 | if test "${WANT_DOXYGEN}" = "yes" ; then | 44 | if test "${WANT_DOXYGEN}" = "yes" ; then |
45 | AC_WITH_DOXYGEN | 45 | AC_WITH_DOXYGEN |
46 | AC_WITH_DOT | 46 | AC_WITH_DOT |
47 | else | 47 | else |
48 | AM_CONDITIONAL([HAVE_DOXYGEN],[false]) | 48 | AM_CONDITIONAL([HAVE_DOXYGEN],[false]) |
49 | AM_CONDITIONAL([HAVE_DOT],[false]) | 49 | AM_CONDITIONAL([HAVE_DOT],[false]) |
50 | fi | 50 | fi |
51 | 51 | ||
52 | LIBCURL_CHECK_CONFIG(,,,[ | 52 | LIBCURL_CHECK_CONFIG(,,,[ |
53 | AC_MSG_ERROR([no required libcurl library. get one from http://curl.haxx.se/]) | 53 | AC_MSG_ERROR([no required libcurl library. get one from http://curl.haxx.se/]) |
54 | ]) | 54 | ]) |
55 | 55 | ||
56 | PKG_CHECK_MODULES([PCRE],[libpcre],,[ | 56 | PKG_CHECK_MODULES([PCRE],[libpcre],,[ |
57 | AC_MSG_ERROR([no libpcre found, go get it at http://www.pcre.org/]) | 57 | AC_MSG_ERROR([no libpcre found, go get it at http://www.pcre.org/]) |
58 | ]) | 58 | ]) |
59 | 59 | ||
60 | curl_ssl_verify_host="true" | 60 | curl_ssl_verify_host="true" |
61 | AC_ARG_ENABLE([ssl-verify-host], | 61 | AC_ARG_ENABLE([ssl-verify-host], |
62 | AC_HELP_STRING([--disable-ssl-verify-host],[disable cURL cert/host relationships verification]), | 62 | AC_HELP_STRING([--disable-ssl-verify-host],[disable cURL cert/host relationships verification]), |
63 | [ test "${enableval}" = "no" && curl_ssl_verify_host="false" ] | 63 | [ test "${enableval}" = "no" && curl_ssl_verify_host="false" ] |
64 | ) | 64 | ) |
65 | ${curl_ssl_verify_host} || AC_DEFINE([DISABLE_CURL_SSL_VERIFYHOST],,[defined if cURL is not to verify cert/host]) | 65 | ${curl_ssl_verify_host} || AC_DEFINE([DISABLE_CURL_SSL_VERIFYHOST],,[defined if cURL is not to verify cert/host]) |
66 | 66 | ||
67 | curl_ssl_verify_peer="true" | 67 | curl_ssl_verify_peer="true" |
68 | AC_ARG_ENABLE([ssl-verify-peer], | 68 | AC_ARG_ENABLE([ssl-verify-peer], |
69 | AC_HELP_STRING([--disable-ssl-verify-peer],[disable cURL cert validity verification]), | 69 | AC_HELP_STRING([--disable-ssl-verify-peer],[disable cURL cert validity verification]), |
70 | [ test "${enableval}" = "no" && curl_ssl_verify_peer="false" ] | 70 | [ test "${enableval}" = "no" && curl_ssl_verify_peer="false" ] |
71 | ) | 71 | ) |
72 | ${curl_ssl_verify_peer} || AC_DEFINE([DISABLE_CURL_SSL_VERIFYPEER],,[defined if cURL is not to verify cert validity]) | 72 | ${curl_ssl_verify_peer} || AC_DEFINE([DISABLE_CURL_SSL_VERIFYPEER],,[defined if cURL is not to verify cert validity]) |
73 | 73 | ||
74 | postels_law=true | 74 | postels_law=true |
75 | AC_ARG_ENABLE([postels-law], | 75 | AC_ARG_ENABLE([postels-law], |
76 | AC_HELP_STRING([--disable-postels-law],[Be strict, do not adhere to Postel's Law ("be conservative in what you do, be liberal in what you accept from others", RFC 793)]), | 76 | AC_HELP_STRING([--disable-postels-law],[Be strict, do not adhere to Postel's Law ("be conservative in what you do, be liberal in what you accept from others", RFC 793)]), |
77 | [ test "${enableval}" = "no" && postels_law=false ] | 77 | [ test "${enableval}" = "no" && postels_law=false ] |
78 | ) | 78 | ) |
79 | $postels_law && AC_DEFINE([POSTELS_LAW],,[defined if we want to adhere to Postel's Law]) | 79 | $postels_law && AC_DEFINE([POSTELS_LAW],,[defined if we want to adhere to Postel's Law]) |
80 | 80 | ||
81 | AC_DEFINE_UNQUOTED([OPKELE_SRC_DIR],["$PWD"],[source directory]) | 81 | AC_DEFINE_UNQUOTED([OPKELE_SRC_DIR],["$PWD"],[source directory]) |
82 | 82 | ||
83 | AC_CONFIG_FILES([ | 83 | AC_CONFIG_FILES([ |
84 | Makefile | 84 | Makefile |
85 | libopkele.pc | 85 | libopkele.pc |
86 | Doxyfile | 86 | Doxyfile |
87 | include/Makefile | 87 | include/Makefile |
88 | lib/Makefile | 88 | lib/Makefile |
89 | test/Makefile | 89 | test/Makefile |
90 | ]) | 90 | ]) |
91 | AC_OUTPUT | 91 | AC_OUTPUT |