summaryrefslogtreecommitdiffabout
authorMichael Krelin <hacker@klever.net>2009-04-26 15:42:55 (UTC)
committer Michael Krelin <hacker@klever.net>2009-04-26 15:42:55 (UTC)
commitbc9cda5ce7c146d77ffca803857649b8551bcbed (patch) (unidiff)
tree187fe741b5e62610dedc50d92d6ceef3faf9a20d
parent6dab4b79d66fa5ad5827b53d930f6508380b4f4a (diff)
downloadlibopkele-bc9cda5ce7c146d77ffca803857649b8551bcbed.zip
libopkele-bc9cda5ce7c146d77ffca803857649b8551bcbed.tar.gz
libopkele-bc9cda5ce7c146d77ffca803857649b8551bcbed.tar.bz2
configure: fix htmltidy detection
when making it detect tidy/tidy.h I seem to have broken non-subdired detection. Signed-off-by: Michael Krelin <hacker@klever.net>
Diffstat (more/less context) (ignore whitespace changes)
-rw-r--r--configure.ac4
1 files changed, 2 insertions, 2 deletions
diff --git a/configure.ac b/configure.ac
index 2ded490..9fc5c9d 100644
--- a/configure.ac
+++ b/configure.ac
@@ -60,202 +60,202 @@ case "$tr1_mem" in
60 *) 60 *)
61 AC_MSG_ERROR([no shared_ptr<> implementation found]) 61 AC_MSG_ERROR([no shared_ptr<> implementation found])
62 ;; 62 ;;
63esac 63esac
64AC_SUBST([OPKELE_TR1_MEM_NS]) 64AC_SUBST([OPKELE_TR1_MEM_NS])
65AC_SUBST([OPKELE_TR1_MEM_HEADER]) 65AC_SUBST([OPKELE_TR1_MEM_HEADER])
66 66
67AC_MSG_CHECKING([for deprecated attribute support]) 67AC_MSG_CHECKING([for deprecated attribute support])
68AC_COMPILE_IFELSE([ 68AC_COMPILE_IFELSE([
69 int __attribute__((deprecated)) deprecated_function(); 69 int __attribute__((deprecated)) deprecated_function();
70 ],[ 70 ],[
71 AC_MSG_RESULT([yes]) 71 AC_MSG_RESULT([yes])
72 AC_DEFINE([OPKELE_DEPRECATE],[__attribute__((deprecated))],[deprecated function attribute]) 72 AC_DEFINE([OPKELE_DEPRECATE],[__attribute__((deprecated))],[deprecated function attribute])
73 ],[ 73 ],[
74 AC_MSG_RESULT([no]) 74 AC_MSG_RESULT([no])
75 AC_DEFINE([OPKELE_DEPRECATE],,[deprecated function attribute]) 75 AC_DEFINE([OPKELE_DEPRECATE],,[deprecated function attribute])
76 ] 76 ]
77) 77)
78 78
79AC_LANG_PUSH([C++]) 79AC_LANG_PUSH([C++])
80AC_MSG_CHECKING([for abi::__cxa_demangle]) 80AC_MSG_CHECKING([for abi::__cxa_demangle])
81AC_COMPILE_IFELSE([ 81AC_COMPILE_IFELSE([
82 #include <typeinfo> 82 #include <typeinfo>
83 using namespace std; 83 using namespace std;
84 #include <cxxabi.h> 84 #include <cxxabi.h>
85 int main(int c,char **v) { 85 int main(int c,char **v) {
86 int dstat; 86 int dstat;
87 char *demangled = abi::__cxa_demangle(typeid(dstat).name(),0,0,&dstat); 87 char *demangled = abi::__cxa_demangle(typeid(dstat).name(),0,0,&dstat);
88 return 0; 88 return 0;
89 } 89 }
90 ],[ 90 ],[
91 AC_MSG_RESULT([yes]) 91 AC_MSG_RESULT([yes])
92 AC_DEFINE([HAVE_DEMANGLE],,[defined if abi::__cxa_demangle is available]) 92 AC_DEFINE([HAVE_DEMANGLE],,[defined if abi::__cxa_demangle is available])
93 ],[ 93 ],[
94 AC_MSG_RESULT([no]) 94 AC_MSG_RESULT([no])
95 ] 95 ]
96) 96)
97AC_LANG_POP([C++]) 97AC_LANG_POP([C++])
98 98
99 99
100 100
101 101
102PKG_CHECK_MODULES([OPENSSL],[openssl],,[ 102PKG_CHECK_MODULES([OPENSSL],[openssl],,[
103 AC_MSG_ERROR([no openssl library found. get one from http://www.openssl.org/]) 103 AC_MSG_ERROR([no openssl library found. get one from http://www.openssl.org/])
104]) 104])
105 105
106WANT_KONFORKA="yes" 106WANT_KONFORKA="yes"
107AC_ARG_ENABLE([konforka], 107AC_ARG_ENABLE([konforka],
108 AC_HELP_STRING([--disable-konforka],[do not use konforka library (default: use if found)]), 108 AC_HELP_STRING([--disable-konforka],[do not use konforka library (default: use if found)]),
109 [ 109 [
110 test "${enableval}" = "no" && WANT_KONFORKA="no" 110 test "${enableval}" = "no" && WANT_KONFORKA="no"
111 ] 111 ]
112) 112)
113if test "${WANT_KONFORKA}" = "yes" ; then 113if test "${WANT_KONFORKA}" = "yes" ; then
114 PKG_CHECK_MODULES([KONFORKA],[konforka],[ 114 PKG_CHECK_MODULES([KONFORKA],[konforka],[
115 AC_SUBST([KONFORKA_CFLAGS]) 115 AC_SUBST([KONFORKA_CFLAGS])
116 AC_SUBST([KONFORKA_LIBS]) 116 AC_SUBST([KONFORKA_LIBS])
117 AC_DEFINE([HAVE_KONFORKA],,[defined in presence of konforka library]) 117 AC_DEFINE([HAVE_KONFORKA],,[defined in presence of konforka library])
118 AC_DEFINE([OPKELE_HAVE_KONFORKA],,[defined in presence of konforka library]) 118 AC_DEFINE([OPKELE_HAVE_KONFORKA],,[defined in presence of konforka library])
119 AC_SUBST([KONFORKA_KONFORKA],[konforka]) 119 AC_SUBST([KONFORKA_KONFORKA],[konforka])
120 ],[true]) 120 ],[true])
121fi 121fi
122 122
123WANT_DOXYGEN="yes" 123WANT_DOXYGEN="yes"
124AC_ARG_ENABLE([doxygen], 124AC_ARG_ENABLE([doxygen],
125 AC_HELP_STRING([--disable-doxygen],[do not generate documentation]), 125 AC_HELP_STRING([--disable-doxygen],[do not generate documentation]),
126 [ 126 [
127 test "${enableval}" = "no" && WANT_DOXYGEN="no" 127 test "${enableval}" = "no" && WANT_DOXYGEN="no"
128 ] 128 ]
129) 129)
130if test "${WANT_DOXYGEN}" = "yes" ; then 130if test "${WANT_DOXYGEN}" = "yes" ; then
131 AC_WITH_DOXYGEN 131 AC_WITH_DOXYGEN
132 AC_WITH_DOT 132 AC_WITH_DOT
133else 133else
134 AM_CONDITIONAL([HAVE_DOXYGEN],[false]) 134 AM_CONDITIONAL([HAVE_DOXYGEN],[false])
135 AM_CONDITIONAL([HAVE_DOT],[false]) 135 AM_CONDITIONAL([HAVE_DOT],[false])
136fi 136fi
137 137
138LIBCURL_CHECK_CONFIG(,,,[ 138LIBCURL_CHECK_CONFIG(,,,[
139 AC_MSG_ERROR([no required libcurl library. get one from http://curl.haxx.se/]) 139 AC_MSG_ERROR([no required libcurl library. get one from http://curl.haxx.se/])
140]) 140])
141 141
142AC_CHECK_HEADER([expat.h],[ 142AC_CHECK_HEADER([expat.h],[
143 AC_CHECK_LIB([expat],[XML_ParserCreate],[ 143 AC_CHECK_LIB([expat],[XML_ParserCreate],[
144 EXPAT_LIBS=-lexpat 144 EXPAT_LIBS=-lexpat
145 EXPAT_CFLAGS= 145 EXPAT_CFLAGS=
146 AC_SUBST([EXPAT_LIBS]) 146 AC_SUBST([EXPAT_LIBS])
147 AC_SUBST([EXPAT_CFLAGS]) 147 AC_SUBST([EXPAT_CFLAGS])
148 ],[ 148 ],[
149 AC_MSG_ERROR([no required expat library. get one from http://expat.sourceforge.net/]) 149 AC_MSG_ERROR([no required expat library. get one from http://expat.sourceforge.net/])
150 ]) 150 ])
151],[ 151],[
152 AC_MSG_ERROR([no required expat library. get one from http://expat.sourceforge.net/]) 152 AC_MSG_ERROR([no required expat library. get one from http://expat.sourceforge.net/])
153]) 153])
154 154
155AC_CHECK_HEADERS([tidy.h tidy/tidy.h],[ 155AC_CHECK_HEADERS([tidy.h tidy/tidy.h],[
156 AC_CHECK_LIB([tidy],[tidyParseBuffer],[ 156 test -z "$TIDY_LIBS" && AC_CHECK_LIB([tidy],[tidyParseBuffer],[
157 TIDY_LIBS=-ltidy 157 TIDY_LIBS=-ltidy
158 TIDY_CFLAGS= 158 TIDY_CFLAGS=
159 AC_SUBST([TIDY_LIBS]) 159 AC_SUBST([TIDY_LIBS])
160 AC_SUBST([TIDY_CFLAGS]) 160 AC_SUBST([TIDY_CFLAGS])
161 ],[ 161 ],[
162 AC_MSG_ERROR([no required htmltidy library found. get one from http://tidy.sourceforge.net/]) 162 AC_MSG_ERROR([no required htmltidy library found. get one from http://tidy.sourceforge.net/])
163 ]) 163 ])
164],[ 164],[
165 test "$ac_header" = "tidy/tidy.h" \ 165 test -z "$TIDY_LIBS" -a "$ac_header" = "tidy/tidy.h" \
166 && AC_MSG_ERROR([no required htmltidy library found. get one from http://tidy.sourceforge.net/]) 166 && AC_MSG_ERROR([no required htmltidy library found. get one from http://tidy.sourceforge.net/])
167]) 167])
168 168
169if test -n "$PCRE_LIBS" -a -n "$PCRE_CFLAGS" ; then 169if test -n "$PCRE_LIBS" -a -n "$PCRE_CFLAGS" ; then
170 AC_SUBST([PCRE_CFLAGS]) 170 AC_SUBST([PCRE_CFLAGS])
171 AC_SUBST([PCRE_LIBS]) 171 AC_SUBST([PCRE_LIBS])
172 : 172 :
173else 173else
174 PKG_CHECK_MODULES([PCRE],[libpcre],,[ 174 PKG_CHECK_MODULES([PCRE],[libpcre],,[
175 AC_MSG_ERROR([no libpcre found, go get it at http://www.pcre.org/]) 175 AC_MSG_ERROR([no libpcre found, go get it at http://www.pcre.org/])
176 ]) 176 ])
177fi 177fi
178 178
179PKG_CHECK_MODULES([SQLITE3],[sqlite3],[have_sqlite3=true],[have_sqlite3=false]) 179PKG_CHECK_MODULES([SQLITE3],[sqlite3],[have_sqlite3=true],[have_sqlite3=false])
180AM_CONDITIONAL([HAVE_SQLITE3],[$have_sqlite3]) 180AM_CONDITIONAL([HAVE_SQLITE3],[$have_sqlite3])
181PKG_CHECK_MODULES([KINGATE],[kingate-plaincgi],[have_kingate=true],[have_kingate=false]) 181PKG_CHECK_MODULES([KINGATE],[kingate-plaincgi],[have_kingate=true],[have_kingate=false])
182AM_CONDITIONAL([HAVE_KINGATE],[$have_kingate]) 182AM_CONDITIONAL([HAVE_KINGATE],[$have_kingate])
183PKG_CHECK_MODULES([UUID],[uuid],[have_uuid=true],[have_uuid=false]) 183PKG_CHECK_MODULES([UUID],[uuid],[have_uuid=true],[have_uuid=false])
184AM_CONDITIONAL([HAVE_UUID],[$have_uuid]) 184AM_CONDITIONAL([HAVE_UUID],[$have_uuid])
185if $have_uuid ; then 185if $have_uuid ; then
186 AC_DEFINE([HAVE_LIBUUID],,[defined in presence of libuuid]) 186 AC_DEFINE([HAVE_LIBUUID],,[defined in presence of libuuid])
187 AC_SUBST([UUID_UUID],[uuid]) 187 AC_SUBST([UUID_UUID],[uuid])
188fi 188fi
189 189
190curl_ssl_verify_host="true" 190curl_ssl_verify_host="true"
191AC_ARG_ENABLE([ssl-verify-host], 191AC_ARG_ENABLE([ssl-verify-host],
192 AC_HELP_STRING([--disable-ssl-verify-host],[disable cURL cert/host relationships verification]), 192 AC_HELP_STRING([--disable-ssl-verify-host],[disable cURL cert/host relationships verification]),
193 [ test "${enableval}" = "no" && curl_ssl_verify_host="false" ] 193 [ test "${enableval}" = "no" && curl_ssl_verify_host="false" ]
194) 194)
195${curl_ssl_verify_host} || AC_DEFINE([DISABLE_CURL_SSL_VERIFYHOST],,[defined if cURL is not to verify cert/host]) 195${curl_ssl_verify_host} || AC_DEFINE([DISABLE_CURL_SSL_VERIFYHOST],,[defined if cURL is not to verify cert/host])
196 196
197curl_ssl_verify_peer="true" 197curl_ssl_verify_peer="true"
198AC_ARG_ENABLE([ssl-verify-peer], 198AC_ARG_ENABLE([ssl-verify-peer],
199 AC_HELP_STRING([--disable-ssl-verify-peer],[disable cURL cert validity verification]), 199 AC_HELP_STRING([--disable-ssl-verify-peer],[disable cURL cert validity verification]),
200 [ test "${enableval}" = "no" && curl_ssl_verify_peer="false" ] 200 [ test "${enableval}" = "no" && curl_ssl_verify_peer="false" ]
201) 201)
202${curl_ssl_verify_peer} || AC_DEFINE([DISABLE_CURL_SSL_VERIFYPEER],,[defined if cURL is not to verify cert validity]) 202${curl_ssl_verify_peer} || AC_DEFINE([DISABLE_CURL_SSL_VERIFYPEER],,[defined if cURL is not to verify cert validity])
203 203
204postels_law=true 204postels_law=true
205AC_ARG_ENABLE([postels-law], 205AC_ARG_ENABLE([postels-law],
206 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)]), 206 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)]),
207 [ test "${enableval}" = "no" && postels_law=false ] 207 [ test "${enableval}" = "no" && postels_law=false ]
208) 208)
209$postels_law && AC_DEFINE([POSTELS_LAW],,[defined if we want to adhere to Postel's Law]) 209$postels_law && AC_DEFINE([POSTELS_LAW],,[defined if we want to adhere to Postel's Law])
210 210
211AC_DEFINE_UNQUOTED([OPKELE_SRC_DIR],["$PWD"],[source directory]) 211AC_DEFINE_UNQUOTED([OPKELE_SRC_DIR],["$PWD"],[source directory])
212 212
213nitpick=false 213nitpick=false
214AC_ARG_ENABLE([nitpicking], 214AC_ARG_ENABLE([nitpicking],
215 AC_HELP_STRING([--enable-nitpicking],[make compiler somewhat overly fastidious about the code it deals with]), 215 AC_HELP_STRING([--enable-nitpicking],[make compiler somewhat overly fastidious about the code it deals with]),
216 [ test "$enableval" = "no" || nitpick=true ] 216 [ test "$enableval" = "no" || nitpick=true ]
217) 217)
218if $nitpick ; then 218if $nitpick ; then
219 CPP_NITPICK="-pedantic -Wall -Wextra -Wundef -Wshadow \ 219 CPP_NITPICK="-pedantic -Wall -Wextra -Wundef -Wshadow \
220 -Wunsafe-loop-optimizations -Wconversion -Wmissing-format-attribute \ 220 -Wunsafe-loop-optimizations -Wconversion -Wmissing-format-attribute \
221 -Wredundant-decls -ansi" 221 -Wredundant-decls -ansi"
222 # -Wlogical-op -Wmissing-noreturn 222 # -Wlogical-op -Wmissing-noreturn
223 C_NITPICK="$CPP_NITPICK" 223 C_NITPICK="$CPP_NITPICK"
224 CXX_NITPICK="$C_NITPICK" 224 CXX_NITPICK="$C_NITPICK"
225 225
226 CPPFLAGS="$CPPFLAGS $CPP_NITPICK" 226 CPPFLAGS="$CPPFLAGS $CPP_NITPICK"
227 CFLAGS="$CFLAGS $C_NITPICK" 227 CFLAGS="$CFLAGS $C_NITPICK"
228 CXXFLAGS="$CXXFLAGS $CXX_NITPICK" 228 CXXFLAGS="$CXXFLAGS $CXX_NITPICK"
229fi 229fi
230 230
231ndebug=true 231ndebug=true
232AC_ARG_ENABLE([debug], 232AC_ARG_ENABLE([debug],
233 AC_HELP_STRING([--enable-debug],[enable debugging code]), 233 AC_HELP_STRING([--enable-debug],[enable debugging code]),
234 [ test "$enableval" = "no" || ndebug=false ] 234 [ test "$enableval" = "no" || ndebug=false ]
235) 235)
236if $ndebug ; then 236if $ndebug ; then
237 CPPFLAGS_DEBUG="-DNDEBUG" 237 CPPFLAGS_DEBUG="-DNDEBUG"
238else 238else
239 CPPFLAGS_DEBUG="" 239 CPPFLAGS_DEBUG=""
240fi 240fi
241AC_SUBST([CPPFLAGS_DEBUG]) 241AC_SUBST([CPPFLAGS_DEBUG])
242 242
243xri_proxy_url="https://xri.net/" 243xri_proxy_url="https://xri.net/"
244AC_MSG_CHECKING([for XRI resolver proxy]) 244AC_MSG_CHECKING([for XRI resolver proxy])
245AC_ARG_ENABLE([xri-proxy], 245AC_ARG_ENABLE([xri-proxy],
246 AC_HELP_STRING([--with-xri-proxy=url],[set xri proxy for use when resolving xri identities, default is https://xri.net/]), 246 AC_HELP_STRING([--with-xri-proxy=url],[set xri proxy for use when resolving xri identities, default is https://xri.net/]),
247 [ xri_proxy_url="$withval" ] 247 [ xri_proxy_url="$withval" ]
248) 248)
249AC_MSG_RESULT([$xri_proxy_url]) 249AC_MSG_RESULT([$xri_proxy_url])
250AC_DEFINE_UNQUOTED([XRI_PROXY_URL],["$xri_proxy_url"],[XRI proxy resolver URL]) 250AC_DEFINE_UNQUOTED([XRI_PROXY_URL],["$xri_proxy_url"],[XRI proxy resolver URL])
251 251
252AC_CONFIG_FILES([ 252AC_CONFIG_FILES([
253 Makefile 253 Makefile
254 libopkele.pc 254 libopkele.pc
255 Doxyfile 255 Doxyfile
256 include/Makefile 256 include/Makefile
257 include/opkele/tr1-mem.h 257 include/opkele/tr1-mem.h
258 lib/Makefile 258 lib/Makefile
259 test/Makefile 259 test/Makefile
260]) 260])
261AC_OUTPUT 261AC_OUTPUT