[packages] php5: fix APC support
[openwrt/svn-archive/archive.git] / lang / php5 / Makefile
1 #
2 # Copyright (C) 2006-2011 OpenWrt.org
3 #
4 # This is free software, licensed under the GNU General Public License v2.
5 # See /LICENSE for more information.
6 #
7
8 include $(TOPDIR)/rules.mk
9
10 PKG_NAME:=php
11 PKG_VERSION:=5.3.6
12 PKG_RELEASE:=1
13
14 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.bz2
15 PKG_SOURCE_URL:=http://www.php.net/distributions/
16 PKG_MD5SUM:=2286f5a82a6e8397955a0025c1c2ad98
17
18 PKG_FIXUP:=libtool no-autoreconf
19 PKG_BUILD_PARALLEL:=1
20
21 include $(INCLUDE_DIR)/package.mk
22 include $(INCLUDE_DIR)/nls.mk
23
24 define Package/php5/Default
25 SUBMENU:=PHP
26 SECTION:=lang
27 CATEGORY:=Languages
28 TITLE:=PHP5 Hypertext preprocessor
29 URL:=http://www.php.net/
30 MAINTAINER:=Michael Heimpold <mhei@heimpold.de>
31 endef
32
33 define Package/php5/Default/description
34 PHP is a widely-used general-purpose scripting language that is especially
35 suited for Web development and can be embedded into HTML.
36 endef
37
38 define Package/php5/config
39 config PHP5_FILTER
40 bool "PHP5 Filter support"
41 depends on PACKAGE_php5-cli || PACKAGE_php5-cgi
42
43 config PHP5_LIBXML
44 bool "PHP5 LIBXML support"
45 depends on PACKAGE_php5-cli || PACKAGE_php5-cgi
46 endef
47
48 define Package/php5
49 $(call Package/php5/Default)
50 DEPENDS:=+libpcre +zlib
51 ifneq ($(CONFIG_PHP5_LIBXML),)
52 DEPENDS+= +libxml2
53 endif
54 ifneq ($(CONFIG_PACKAGE_php5-mod-apc),)
55 DEPENDS+= +librt
56 endif
57 ifneq ($(CONFIG_PACKAGE_php5-mod-sqlite3)$(CONFIG_PACKAGE_php5-mod-pdo-sqlite),)
58 DEPENDS+= +libsqlite3 +libpthread
59 endif
60 endef
61
62 define Package/php5/description
63 $(call Package/php5/Default/description)
64 This package contains only the PHP config file. You must actually choose
65 your PHP flavour (cli, cgi or fastcgi).
66 endef
67
68 define Package/php5-cli
69 $(call Package/php5/Default)
70 DEPENDS:=php5
71 TITLE+= (CLI)
72 endef
73
74 define Package/php5-cli/description
75 (call Package/php5/Default/description)
76 This package contains the CLI version of the PHP5 interpreter.
77 endef
78
79 define Package/php5-cgi
80 $(call Package/php5/Default)
81 DEPENDS:=php5
82 TITLE+= (CGI & FastCGI)
83 endef
84
85 define Package/php5-cgi/description
86 $(call Package/php5/Default/description)
87 This package contains the CGI version of the PHP5 interpreter.
88 endef
89
90 define Package/php5-fastcgi
91 $(call Package/php5/Default)
92 DEPENDS:=php5 +php5-cgi
93 TITLE:=FastCGI startup script
94 endef
95
96 define Package/php5-fastcgi/description
97 As FastCGI support is now a core feature the php5-fastcgi package now depends
98 on the php5-cgi package, containing just the startup script.
99 endef
100
101 CONFIGURE_VARS += \
102 ac_cv_c_bigendian_php=$(if $(CONFIG_BIG_ENDIAN),yes,no)
103
104 PKG_CONFIGURE_OPTS:= \
105 --enable-shared \
106 --disable-static \
107 --disable-rpath \
108 --disable-debug \
109 --without-pear \
110 \
111 --with-config-file-path=/etc \
112 --with-config-file-scan-dir=/etc/php5 \
113 --enable-magic-quotes \
114 --disable-short-tags \
115 \
116 --without-gettext \
117 --with-zlib="$(STAGING_DIR)/usr" \
118 --with-zlib-dir="$(STAGING_DIR)/usr" \
119 --with-pcre-regex="$(STAGING_DIR)/usr" \
120 --disable-phar
121
122 ifneq ($(SDK),)
123 PKG_BUILD_DEPENDS+=libopenssl zlib libcurl libgd libgmp libopenldap libmysqlclient libpq libsqlite2 libpthread libsqlite3 libpcre libxml2
124 # force PKG_CONFIGURE_{LIBS,OPTS} below when built in the SDK
125 CONFIG_PACKAGE_php5-cli:=m
126 CONFIG_PACKAGE_php5-cgi:=m
127 CONFIG_PACKAGE_php5-fastcgi:=m
128 CONFIG_PACKAGE_php5-mod-curl:=m
129 CONFIG_PACKAGE_php5-mod-gd:=m
130 CONFIG_PACKAGE_php5-mod-gmp:=m
131 CONFIG_PACKAGE_php5-mod-ldap:=m
132 CONFIG_PACKAGE_php5-mod-mysql:=m
133 CONFIG_PACKAGE_php5-mod-pgsql:=m
134 CONFIG_PACKAGE_php5-mod-sqlite:=m
135 CONFIG_PACKAGE_php5-mod-sqlite3:=m
136 CONFIG_PACKAGE_php5-mod-xml:=m
137 endif
138
139 ifneq ($(CONFIG_PACKAGE_php5-mod-apc),)
140 PKG_CONFIGURE_OPTS+= --enable-apc=shared --disable-apc-mmap --disable-apc-pthreadmutex
141 PKG_CONFIGURE_LIBS+= -lrt
142 else
143 PKG_CONFIGURE_OPTS+= --disable-apc
144 endif
145
146 ifneq ($(CONFIG_PACKAGE_php5-mod-ctype),)
147 PKG_CONFIGURE_OPTS+= --enable-ctype=shared
148 else
149 PKG_CONFIGURE_OPTS+= --disable-ctype
150 endif
151
152 ifneq ($(CONFIG_PACKAGE_php5-mod-curl),)
153 PKG_CONFIGURE_OPTS+= --with-curl=shared,"$(STAGING_DIR)/usr"
154 else
155 PKG_CONFIGURE_OPTS+= --without-curl
156 endif
157
158 ifneq ($(CONFIG_PACKAGE_php5-mod-fileinfo),)
159 PKG_CONFIGURE_OPTS+= --enable-fileinfo=shared
160 else
161 PKG_CONFIGURE_OPTS+= --disable-fileinfo
162 endif
163
164 ifneq ($(CONFIG_PACKAGE_php5-mod-dom),)
165 PKG_CONFIGURE_OPTS+= --enable-dom=shared
166 else
167 PKG_CONFIGURE_OPTS+= --disable-dom
168 endif
169
170 ifneq ($(CONFIG_PACKAGE_php5-mod-exif),)
171 PKG_CONFIGURE_OPTS+= --enable-exif=shared
172 else
173 PKG_CONFIGURE_OPTS+= --disable-exif
174 endif
175
176 ifneq ($(CONFIG_PACKAGE_php5-mod-ftp),)
177 PKG_CONFIGURE_OPTS+= --enable-ftp=shared
178 else
179 PKG_CONFIGURE_OPTS+= --disable-ftp
180 endif
181
182 ifneq ($(CONFIG_PACKAGE_php5-mod-gd),)
183 PKG_CONFIGURE_OPTS+= --with-gd=shared,"$(STAGING_DIR)/usr" \
184 --without-freetype-dir \
185 --with-jpeg-dir="$(STAGING_DIR)/usr" \
186 --with-png-dir="$(STAGING_DIR)/usr" \
187 --without-xpm-dir \
188 --without-t1lib \
189 --enable-gd-native-ttf \
190 --disable-gd-jis-conv
191 else
192 PKG_CONFIGURE_OPTS+= --without-gd
193 endif
194
195 ifneq ($(CONFIG_PACKAGE_php5-mod-gmp),)
196 PKG_CONFIGURE_OPTS+= --with-gmp=shared,"$(STAGING_DIR)/usr"
197 else
198 PKG_CONFIGURE_OPTS+= --without-gmp
199 endif
200
201 ifneq ($(CONFIG_PACKAGE_php5-mod-hash),)
202 PKG_CONFIGURE_OPTS+= --enable-hash=shared
203 else
204 PKG_CONFIGURE_OPTS+= --disable-hash
205 endif
206
207 ifneq ($(CONFIG_PACKAGE_php5-mod-iconv),)
208 PKG_CONFIGURE_OPTS+= --with-iconv=shared,"$(ICONV_PREFIX)"
209 else
210 PKG_CONFIGURE_OPTS+= --without-iconv
211 endif
212
213 ifneq ($(CONFIG_PACKAGE_php5-mod-json),)
214 PKG_CONFIGURE_OPTS+= --enable-json=shared
215 else
216 PKG_CONFIGURE_OPTS+= --disable-json
217 endif
218
219 ifneq ($(CONFIG_PACKAGE_php5-mod-ldap),)
220 PKG_CONFIGURE_OPTS+= --with-ldap=shared,"$(STAGING_DIR)/usr" \
221 --with-ldap-sasl="$(STAGING_DIR)/usr"
222 else
223 PKG_CONFIGURE_OPTS+= --without-ldap
224 endif
225
226 ifneq ($(CONFIG_PACKAGE_php5-mod-mbstring),)
227 PKG_CONFIGURE_OPTS+= --enable-mbstring=shared --enable-mbregex
228 else
229 PKG_CONFIGURE_OPTS+= --disable-mbstring
230 endif
231
232 ifneq ($(CONFIG_PACKAGE_php5-mod-mcrypt),)
233 PKG_CONFIGURE_OPTS+= --with-mcrypt=shared,"$(STAGING_DIR)/usr"
234 else
235 PKG_CONFIGURE_OPTS+= --without-mcrypt
236 endif
237
238 ifneq ($(CONFIG_PACKAGE_php5-mod-mysql),)
239 PKG_CONFIGURE_OPTS+= --with-mysql=shared,"$(STAGING_DIR)/usr"
240 else
241 PKG_CONFIGURE_OPTS+= --without-mysql
242 endif
243
244 ifneq ($(CONFIG_PACKAGE_php5-mod-openssl),)
245 PKG_CONFIGURE_OPTS+= --with-openssl=shared,"$(STAGING_DIR)/usr"
246 PKG_CONFIGURE_OPTS+= --with-kerberos=no
247 PKG_CONFIGURE_OPTS+= --with-openssl-dir="$(STAGING_DIR)/usr"
248 else
249 PKG_CONFIGURE_OPTS+= --without-openssl
250 endif
251
252 ifneq ($(CONFIG_PACKAGE_php5-mod-pcntl),)
253 PKG_CONFIGURE_OPTS+= --enable-pcntl=shared
254 else
255 PKG_CONFIGURE_OPTS+= --disable-pcntl
256 endif
257
258 ifneq ($(CONFIG_PACKAGE_php5-mod-pdo),)
259 PKG_CONFIGURE_OPTS+= --enable-pdo=shared
260 ifneq ($(CONFIG_PACKAGE_php5-mod-pdo-mysql),)
261 PKG_CONFIGURE_OPTS+= --with-pdo-mysql=shared,"$(STAGING_DIR)/usr"
262 else
263 PKG_CONFIGURE_OPTS+= --without-pdo-mysql
264 endif
265 ifneq ($(CONFIG_PACKAGE_php5-mod-pdo-pgsql),)
266 PKG_CONFIGURE_OPTS+= --with-pdo-pgsql=shared,"$(STAGING_DIR)/usr"
267 else
268 PKG_CONFIGURE_OPTS+= --without-pdo-pgsql
269 endif
270 ifneq ($(CONFIG_PACKAGE_php5-mod-pdo-sqlite),)
271 PKG_CONFIGURE_OPTS+= --with-pdo-sqlite=shared,"$(STAGING_DIR)/usr"
272 PKG_CONFIGURE_LIBS+= -lsqlite3 -lpthread
273 else
274 PKG_CONFIGURE_OPTS+= --without-pdo-sqlite
275 endif
276 else
277 PKG_CONFIGURE_OPTS+= --disable-pdo
278 endif
279
280 ifneq ($(CONFIG_PACKAGE_php5-mod-pgsql),)
281 PKG_CONFIGURE_OPTS+= --with-pgsql=shared,"$(STAGING_DIR)/usr"
282 else
283 PKG_CONFIGURE_OPTS+= --without-pgsql
284 endif
285
286 ifneq ($(CONFIG_PACKAGE_php5-mod-session),)
287 PKG_CONFIGURE_OPTS+= --enable-session=shared
288 else
289 PKG_CONFIGURE_OPTS+= --disable-session
290 endif
291
292 ifneq ($(CONFIG_PACKAGE_php5-mod-simplexml),)
293 PKG_CONFIGURE_OPTS+= --enable-simplexml=shared
294 else
295 PKG_CONFIGURE_OPTS+= --disable-simplexml
296 endif
297
298 ifneq ($(CONFIG_PACKAGE_php5-mod-soap),)
299 PKG_CONFIGURE_OPTS+= --enable-soap=shared
300 else
301 PKG_CONFIGURE_OPTS+= --disable-soap
302 endif
303
304 ifneq ($(CONFIG_PACKAGE_php5-mod-sockets),)
305 PKG_CONFIGURE_OPTS+= --enable-sockets=shared
306 else
307 PKG_CONFIGURE_OPTS+= --disable-sockets
308 endif
309
310 ifneq ($(CONFIG_PACKAGE_php5-mod-sqlite),)
311 PKG_CONFIGURE_OPTS+= --with-sqlite=shared,"$(STAGING_DIR)/usr"
312 else
313 PKG_CONFIGURE_OPTS+= --without-sqlite
314 endif
315
316 ifneq ($(CONFIG_PACKAGE_php5-mod-sqlite3),)
317 PKG_CONFIGURE_OPTS+= --with-sqlite3=shared,"$(STAGING_DIR)/usr"
318 PKG_CONFIGURE_LIBS+= -lsqlite3 -lpthread
319 else
320 PKG_CONFIGURE_OPTS+= --without-sqlite3
321 endif
322
323 ifneq ($(CONFIG_PACKAGE_php5-mod-sysvmsg),)
324 PKG_CONFIGURE_OPTS+= --enable-sysvmsg=shared
325 else
326 PKG_CONFIGURE_OPTS+= --disable-sysvmsg
327 endif
328
329 ifneq ($(CONFIG_PACKAGE_php5-mod-sysvsem),)
330 PKG_CONFIGURE_OPTS+= --enable-sysvsem=shared
331 else
332 PKG_CONFIGURE_OPTS+= --disable-sysvsem
333 endif
334
335 ifneq ($(CONFIG_PACKAGE_php5-mod-sysvshm),)
336 PKG_CONFIGURE_OPTS+= --enable-sysvshm=shared
337 else
338 PKG_CONFIGURE_OPTS+= --disable-sysvshm
339 endif
340
341 ifneq ($(CONFIG_PACKAGE_php5-mod-tokenizer),)
342 PKG_CONFIGURE_OPTS+= --enable-tokenizer=shared
343 else
344 PKG_CONFIGURE_OPTS+= --disable-tokenizer
345 endif
346
347 ifneq ($(CONFIG_PACKAGE_php5-mod-xml),)
348 PKG_CONFIGURE_OPTS+= --enable-xml=shared,"$(STAGING_DIR)/usr"
349 ifneq ($(CONFIG_PHP5_LIBXML),)
350 PKG_CONFIGURE_OPTS+= --with-libxml-dir="$(STAGING_DIR)/usr/include/libxml2"
351 else
352 PKG_CONFIGURE_OPTS+= --with-libexpat-dir="$(STAGING_DIR)/usr"
353 endif
354 else
355 PKG_CONFIGURE_OPTS+= --disable-xml
356 endif
357
358 ifneq ($(CONFIG_PACKAGE_php5-mod-xmlreader),)
359 PKG_CONFIGURE_OPTS+= --enable-xmlreader=shared,"$(STAGING_DIR)/usr"
360 else
361 PKG_CONFIGURE_OPTS+= --disable-xmlreader
362 endif
363
364 ifneq ($(CONFIG_PACKAGE_php5-mod-xmlwriter),)
365 PKG_CONFIGURE_OPTS+= --enable-xmlwriter=shared,"$(STAGING_DIR)/usr"
366 else
367 PKG_CONFIGURE_OPTS+= --disable-xmlwriter
368 endif
369
370 ifneq ($(CONFIG_PHP5_FILTER),)
371 PKG_CONFIGURE_OPTS+= --enable-filter
372 else
373 PKG_CONFIGURE_OPTS+= --disable-filter
374 endif
375
376 ifneq ($(CONFIG_PHP5_LIBXML),)
377 PKG_CONFIGURE_OPTS+= --enable-libxml
378 PKG_CONFIGURE_OPTS+= --with-libxml-dir="$(STAGING_DIR)/usr/include/libxml2"
379 else
380 PKG_CONFIGURE_OPTS+= --disable-libxml
381 endif
382
383
384 define Build/Configure
385 endef
386
387 ifneq ($(CONFIG_PACKAGE_php5-cli),)
388 define Build/Compile/php5-cli
389 -$(MAKE) -C $(PKG_BUILD_DIR) clean
390 $(call Build/Configure/Default, \
391 $(PKG_CONFIGURE_OPTS) \
392 --enable-cli \
393 --disable-cgi \
394 , \
395 LIBS="$(PKG_CONFIGURE_LIBS)" \
396 php_cv_cc_rpath="no" \
397 iconv_impl_name="gnu_libiconv" \
398 ac_cv_php_xml2_config_path="$(STAGING_DIR)/host/bin/xml2-config" \
399 )
400 $(MAKE) $(PKG_JOBS) -C $(PKG_BUILD_DIR)
401 mv $(PKG_BUILD_DIR)/sapi/cli/php $(PKG_BUILD_DIR)/php-cli
402 endef
403 endif
404
405 ifneq ($(CONFIG_PACKAGE_php5-cgi),)
406 define Build/Compile/php5-cgi
407 -$(MAKE) -C $(PKG_BUILD_DIR) clean
408 $(call Build/Configure/Default, \
409 $(PKG_CONFIGURE_OPTS) \
410 --disable-cli \
411 --enable-cgi \
412 , \
413 LIBS="$(PKG_CONFIGURE_LIBS)" \
414 php_cv_cc_rpath="no" \
415 iconv_impl_name="gnu_libiconv" \
416 ac_cv_php_xml2_config_path="$(STAGING_DIR)/host/bin/xml2-config" \
417 )
418 $(MAKE) $(PKG_JOBS) -C $(PKG_BUILD_DIR)
419 mv $(PKG_BUILD_DIR)/sapi/cgi/php-cgi $(PKG_BUILD_DIR)/php-cgi
420 endef
421 endif
422
423 define Build/Compile
424 $(call Build/Compile/php5-cli)
425 $(call Build/Compile/php5-cgi)
426 endef
427
428 define Package/php5/conffiles
429 /etc/php.ini
430 endef
431
432 define Package/php5/install
433 $(INSTALL_DIR) $(1)/etc
434 $(INSTALL_DATA) ./files/php.ini $(1)/etc/
435 endef
436
437 define Package/php5-cli/install
438 $(INSTALL_DIR) $(1)/usr/bin
439 $(CP) $(PKG_BUILD_DIR)/php-cli $(1)/usr/bin/php-cli
440 endef
441
442 define Package/php5-cgi/install
443 $(INSTALL_DIR) $(1)/usr/bin
444 $(CP) $(PKG_BUILD_DIR)/php-cgi $(1)/usr/bin/php-cgi
445 ln -sf php-cgi $(1)/usr/bin/php-fcgi
446 endef
447
448 define Package/php5-fastcgi/install
449 $(INSTALL_DIR) $(1)/etc/init.d
450 $(INSTALL_BIN) ./files/php.init $(1)/etc/init.d/php
451 endef
452
453 PHP5_MODULES:=
454
455 define BuildModule
456 define Package/php5-mod-$(1)
457 $(call Package/php5/Default)
458 ifneq ($(3),)
459 DEPENDS:=$(3)
460 else
461 DEPENDS:=php5
462 endif
463 TITLE:=$(2) shared module
464 endef
465
466 define Package/php5-mod-$(1)/config
467 depends on PACKAGE_php5-cli || PACKAGE_php5-cgi
468 $(4)
469 endef
470
471 define Package/php5-mod-$(1)/install
472 $(INSTALL_DIR) $$(1)/usr/lib/php
473 $(INSTALL_BIN) $(PKG_BUILD_DIR)/modules/$(subst -,_,$(1)).so $$(1)/usr/lib/php/
474 $(INSTALL_DIR) $$(1)/etc/php5
475 echo "extension=$(subst -,_,$(1)).so" > $$(1)/etc/php5/$(subst -,_,$(1)).ini
476 endef
477
478 PHP5_MODULES+= php5-mod-$(1)
479 endef
480
481 $(eval $(call BuildPackage,php5))
482 $(eval $(call BuildPackage,php5-cli))
483 $(eval $(call BuildPackage,php5-cgi))
484 $(eval $(call BuildPackage,php5-fastcgi))
485
486 $(eval $(call BuildModule,apc,APC))
487 $(eval $(call BuildModule,ctype,Ctype))
488 $(eval $(call BuildModule,curl,cURL,php5 +libcurl))
489 $(eval $(call BuildModule,fileinfo,Fileinfo,php5 +libmagic))
490 $(eval $(call BuildModule,dom,DOM,php5 +libxml2,depends on PHP5_LIBXML))
491 $(eval $(call BuildModule,exif,EXIF))
492 $(eval $(call BuildModule,ftp,FTP))
493 $(eval $(call BuildModule,gd,GD graphics,php5 +libgd))
494 $(eval $(call BuildModule,gmp,GMP,php5 +libgmp))
495 $(eval $(call BuildModule,hash,Hash))
496 $(eval $(call BuildModule,iconv,iConv,php5 +libiconv))
497 $(eval $(call BuildModule,json,JSON))
498 $(eval $(call BuildModule,ldap,LDAP,php5 +libopenldap +libsasl2))
499 $(eval $(call BuildModule,mbstring,MBString))
500 $(eval $(call BuildModule,mcrypt,Mcrypt,php5 +libmcrypt +libltdl))
501 $(eval $(call BuildModule,mysql,MySQL,php5 +libmysqlclient))
502 $(eval $(call BuildModule,openssl,OpenSSL,php5 +libopenssl))
503 $(eval $(call BuildModule,pcntl,PCNTL))
504 $(eval $(call BuildModule,pdo,PHP Data Objects))
505 $(eval $(call BuildModule,pdo-mysql,PDO driver for MySQL,php5-mod-pdo +libmysqlclient))
506 $(eval $(call BuildModule,pdo-pgsql,PDO driver for PostgreSQL,php5-mod-pdo +libpq))
507 $(eval $(call BuildModule,pdo-sqlite,PDO driver for SQLite 3.x,php5-mod-pdo +libsqlite3 +libpthread))
508 $(eval $(call BuildModule,pgsql,PostgreSQL,php5 +libpq))
509 $(eval $(call BuildModule,session,Session))
510 $(eval $(call BuildModule,simplexml,SimpleXML,php5 +libxml2,depends on PHP5_LIBXML))
511 $(eval $(call BuildModule,soap,SOAP,php5 +libxml2,depends on PHP5_LIBXML))
512 $(eval $(call BuildModule,sockets,Sockets))
513 $(eval $(call BuildModule,sqlite,SQLite 2.x,php5 +libsqlite2))
514 $(eval $(call BuildModule,sqlite3,SQLite3,php5 +libsqlite3 +libpthread))
515 $(eval $(call BuildModule,sysvmsg,System V messages))
516 $(eval $(call BuildModule,sysvsem,System V shared memory))
517 $(eval $(call BuildModule,sysvshm,System V semaphore))
518 $(eval $(call BuildModule,tokenizer,Tokenizer))
519 $(eval $(call BuildModule,xml,XML,php5 $(if $(CONFIG_PHP5_LIBXML),+libxml2,+libexpat)))
520 $(eval $(call BuildModule,xmlreader,XMLReader,php5 +libxml2 +libiconv,depends on PHP5_LIBXML))
521 $(eval $(call BuildModule,xmlwriter,XMLWriter,php5 +libxml2 +libiconv,depends on PHP5_LIBXML))
522
523 PKG_CONFIG_DEPENDS:= $(patsubst %,CONFIG_PACKAGE_%,$(PHP5_MODULES))
524 $(foreach p,$(PHP5_MODULES),$(eval $(call BuildPackage,$(p))))