e28a1dfe96e7fc1b46e20c8e9830fe2588c76969
[m6w6/ext-http] / config.m4
1 dnl config.m4 for pecl/http
2 dnl $Id$
3
4 PHP_ARG_ENABLE([http], [whether to enable extended HTTP support],
5 [ --enable-http Enable extended HTTP support])
6 PHP_ARG_WITH([http-curl-requests], [wheter to enable cURL HTTP requests],
7 [ --with-http-curl-requests[=CURLDIR]
8 With cURL HTTP request support])
9 PHP_ARG_WITH([http-mhash-etags], [whether to enable mhash ETag generator],
10 [ --with-http-mhash-etags[=MHASHDIR]
11 With mhash ETag generator support])
12 PHP_ARG_WITH([http-magic-mime], [whether to enable response content type guessing],
13 [ --with-http-magic-mime[=MAGICDIR]
14 With magic mime response content type guessing])
15
16 if test "$PHP_HTTP" != "no"; then
17
18 dnl -------
19 dnl NETDB.H
20 dnl -------
21 AC_MSG_CHECKING(for netdb.h)
22 if test -r /usr/include/netdb.h -o -r /usr/local/include/netdb.h; then
23 AC_DEFINE(HAVE_NETDB_H, 1, [Have netdb.h])
24 AC_MSG_RESULT(found in default path)
25 else
26 AC_MSG_RESULT(not found in default path)
27 fi
28
29 dnl ----
30 dnl CURL
31 dnl ----
32 if test "$PHP_HTTP_CURL_REQUESTS" != "no"; then
33
34 AC_MSG_CHECKING([for curl/curl.h])
35 CURL_DIR=
36 for i in "$PHP_HTTP_CURL_REQUESTS" /usr/local /usr /opt; do
37 if test -r "$i/include/curl/curl.h"; then
38 CURL_DIR=$i
39 break
40 fi
41 done
42 if test -z "$CURL_DIR"; then
43 AC_MSG_RESULT([not found])
44 AC_MSG_ERROR([could not find curl/curl.h])
45 else
46 AC_MSG_RESULT([found in $CURL_DIR])
47 fi
48
49 AC_MSG_CHECKING([for curl-config])
50 CURL_CONFIG=
51 for i in "$CURL_DIR/bin/curl-config" "$CURL_DIR/curl-config" `which curl-config`; do
52 if test -x "$i"; then
53 CURL_CONFIG=$i
54 break
55 fi
56 done
57 if test -z "$CURL_CONFIG"; then
58 AC_MSG_RESULT([not found])
59 AC_MSG_ERROR([could not find curl-config])
60 else
61 AC_MSG_RESULT([found: $CURL_CONFIG])
62 fi
63
64 CURL_LIBS=`$CURL_CONFIG --libs`
65
66 PHP_ADD_INCLUDE($CURL_DIR/include)
67 PHP_ADD_LIBRARY_WITH_PATH(curl, $CURL_DIR/$PHP_LIBDIR, HTTP_SHARED_LIBADD)
68 PHP_EVAL_LIBLINE($CURL_LIBS, HTTP_SHARED_LIBADD)
69 AC_DEFINE([HTTP_HAVE_CURL], [1], [Have cURL support])
70
71 PHP_CHECK_LIBRARY(curl, curl_multi_strerror,
72 [AC_DEFINE([HAVE_CURL_MULTI_STRERROR], [1], [ ])], [ ],
73 [$CURL_LIBS -L$CURL_DIR/$PHP_LIBDIR]
74 )
75 PHP_CHECK_LIBRARY(curl, curl_easy_strerror,
76 [AC_DEFINE([HAVE_CURL_EASY_STRERROR], [1], [ ])], [ ],
77 [$CURL_LIBS -L$CURL_DIR/$PHP_LIBDIR]
78 )
79 fi
80
81 dnl ----
82 dnl MHASH
83 dnl ----
84 if test "$PHP_HTTP_MHASH_ETAGS" != "no"; then
85
86 AC_MSG_CHECKING([for mhash.h])
87 MHASH_DIR=
88 for i in "$PHP_HTTP_MHASH_ETAGS" /usr/local /usr /opt; do
89 if test -f "$i/include/mhash.h"; then
90 MHASH_DIR=$i
91 break
92 fi
93 done
94 if test -z "$MHASH_DIR"; then
95 AC_MSG_RESULT([not found])
96 AC_MSG_ERROR([could not find mhash.h])
97 else
98 AC_MSG_RESULT([found in $MHASH_DIR])
99 fi
100
101 PHP_ADD_INCLUDE($MHASH_DIR/include)
102 PHP_ADD_LIBRARY_WITH_PATH(mhash, $MHASH_DIR/$PHP_LIBDIR, HTTP_SHARED_LIBADD)
103 AC_DEFINE([HTTP_HAVE_MHASH], [1], [Have mhash support])
104 fi
105
106 dnl ----
107 dnl MAGIC
108 dnl ----
109 if test "$PHP_HTTP_MAGIC_MIME" != "no"; then
110
111 AC_MSG_CHECKING([for magic.h])
112 MAGIC_DIR=
113 for i in "$PHP_HTTP_MAGIC_MIME" /usr/local /usr /opt; do
114 if test -f "$i/include/magic.h"; then
115 MAGIC_DIR=$i
116 break
117 fi
118 done
119 if test -z "$MAGIC_DIR"; then
120 AC_MSG_RESULT([not found])
121 AC_MSG_ERROR([could not find magic.h])
122 else
123 AC_MSG_RESULT([found in $MAGIC_DIR])
124 fi
125
126 PHP_ADD_INCLUDE($MAGIC_DIR/include)
127 PHP_ADD_LIBRARY_WITH_PATH(magic, $MAGIC_DIR/$PHP_LIBDIR, HTTP_SHARED_LIBADD)
128 AC_DEFINE([HTTP_HAVE_MAGIC], [1], [Have magic mime support])
129 fi
130
131 dnl ----
132 dnl DONE
133 dnl ----
134 PHP_HTTP_SOURCES="missing.c http.c http_functions.c phpstr/phpstr.c \
135 http_util_object.c http_message_object.c http_request_object.c http_request_pool_api.c \
136 http_response_object.c http_exception_object.c http_requestpool_object.c \
137 http_api.c http_cache_api.c http_request_api.c http_date_api.c \
138 http_headers_api.c http_message_api.c http_send_api.c http_url_api.c \
139 http_info_api.c http_request_method_api.c"
140 PHP_NEW_EXTENSION([http], $PHP_HTTP_SOURCES, [$ext_shared])
141 PHP_ADD_BUILD_DIR($ext_builddir/phpstr, 1)
142 PHP_SUBST([HTTP_SHARED_LIBADD])
143
144 HTTP_HEADER_FILES= \
145 phpstr/phpstr.h \
146 php_http_std_defs.h \
147 php_http.h \
148 php_http_api.h \
149 php_http_cache_api.h \
150 php_http_date_api.h \
151 php_http_headers_api.h \
152 php_http_info_api.h \
153 php_http_message_api.h \
154 php_http_request_api.h \
155 php_http_request_method_api.h \
156 php_http_send_api.h \
157 php_http_url_api.h
158 PHP_SUBST([HTTP_HEADER_FILES])
159
160 ifdef([PHP_INSTALL_HEADERS],
161 [
162 PHP_INSTALL_HEADERS(ext/http, [HTTP_HEADER_FILES])
163 ], [
164 PHP_ADD_MAKEFILE_FRAGMENT
165 ])
166
167 AC_DEFINE([HAVE_HTTP], [1], [Have extended HTTP support])
168 fi