[packages] php5: add gettext module
git-svn-id: svn://svn.openwrt.org/openwrt/packages@26887 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
@ -9,7 +9,7 @@ include $(TOPDIR)/rules.mk
|
|||||||
|
|
||||||
PKG_NAME:=php
|
PKG_NAME:=php
|
||||||
PKG_VERSION:=5.3.6
|
PKG_VERSION:=5.3.6
|
||||||
PKG_RELEASE:=2
|
PKG_RELEASE:=3
|
||||||
|
|
||||||
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.bz2
|
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.bz2
|
||||||
PKG_SOURCE_URL:=http://www.php.net/distributions/
|
PKG_SOURCE_URL:=http://www.php.net/distributions/
|
||||||
@ -25,7 +25,7 @@ PHP5_MODULES = \
|
|||||||
dom \
|
dom \
|
||||||
exif \
|
exif \
|
||||||
ftp \
|
ftp \
|
||||||
gd gmp \
|
gettext gd gmp \
|
||||||
hash \
|
hash \
|
||||||
iconv \
|
iconv \
|
||||||
json \
|
json \
|
||||||
@ -129,7 +129,6 @@ CONFIGURE_ARGS+= \
|
|||||||
--enable-magic-quotes \
|
--enable-magic-quotes \
|
||||||
--disable-short-tags \
|
--disable-short-tags \
|
||||||
\
|
\
|
||||||
--without-gettext \
|
|
||||||
--with-zlib="$(STAGING_DIR)/usr" \
|
--with-zlib="$(STAGING_DIR)/usr" \
|
||||||
--with-zlib-dir="$(STAGING_DIR)/usr" \
|
--with-zlib-dir="$(STAGING_DIR)/usr" \
|
||||||
--with-pcre-regex="$(STAGING_DIR)/usr" \
|
--with-pcre-regex="$(STAGING_DIR)/usr" \
|
||||||
@ -189,6 +188,12 @@ else
|
|||||||
CONFIGURE_ARGS+= --disable-fileinfo
|
CONFIGURE_ARGS+= --disable-fileinfo
|
||||||
endif
|
endif
|
||||||
|
|
||||||
|
ifneq ($(CONFIG_PACKAGE_php5-mod-gettext),)
|
||||||
|
CONFIGURE_ARGS+= --with-gettext=shared,"$(STAGING_DIR)/usr/lib/libintl-full"
|
||||||
|
else
|
||||||
|
CONFIGURE_ARGS+= --without-gettext
|
||||||
|
endif
|
||||||
|
|
||||||
ifneq ($(CONFIG_PACKAGE_php5-mod-dom),)
|
ifneq ($(CONFIG_PACKAGE_php5-mod-dom),)
|
||||||
CONFIGURE_ARGS+= --enable-dom=shared
|
CONFIGURE_ARGS+= --enable-dom=shared
|
||||||
else
|
else
|
||||||
@ -479,6 +484,7 @@ $(eval $(call BuildModule,fileinfo,Fileinfo,+libmagic))
|
|||||||
$(eval $(call BuildModule,dom,DOM,@PHP5_LIBXML +libxml2))
|
$(eval $(call BuildModule,dom,DOM,@PHP5_LIBXML +libxml2))
|
||||||
$(eval $(call BuildModule,exif,EXIF))
|
$(eval $(call BuildModule,exif,EXIF))
|
||||||
$(eval $(call BuildModule,ftp,FTP))
|
$(eval $(call BuildModule,ftp,FTP))
|
||||||
|
$(eval $(call BuildModule,gettext,Gettext,+libintl-full))
|
||||||
$(eval $(call BuildModule,gd,GD graphics,+libgd))
|
$(eval $(call BuildModule,gd,GD graphics,+libgd))
|
||||||
$(eval $(call BuildModule,gmp,GMP,+libgmp))
|
$(eval $(call BuildModule,gmp,GMP,+libgmp))
|
||||||
$(eval $(call BuildModule,hash,Hash))
|
$(eval $(call BuildModule,hash,Hash))
|
||||||
|
Reference in New Issue
Block a user