2007-07-17 11:40:41 +00:00
|
|
|
#
|
|
|
|
# Copyright (C) 2007 OpenWrt.org
|
|
|
|
#
|
|
|
|
# This is free software, licensed under the GNU General Public License v2.
|
|
|
|
# See /LICENSE for more information.
|
|
|
|
#
|
|
|
|
|
|
|
|
include $(TOPDIR)/rules.mk
|
|
|
|
|
|
|
|
PKG_NAME:=fcgi
|
|
|
|
PKG_VERSION:=2.4.0
|
|
|
|
PKG_RELEASE:=1
|
|
|
|
|
|
|
|
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
|
|
|
|
PKG_SOURCE_URL:=http://www.fastcgi.com/dist/
|
|
|
|
PKG_MD5SUM:=d15060a813b91383a9f3c66faf84867e
|
|
|
|
|
2009-06-04 00:44:54 +00:00
|
|
|
PKG_FIXUP:=libtool-ucxx
|
2007-12-27 02:12:04 +00:00
|
|
|
|
2007-07-17 11:40:41 +00:00
|
|
|
include $(INCLUDE_DIR)/package.mk
|
|
|
|
|
|
|
|
define Package/fcgi
|
|
|
|
SECTION:=libs
|
|
|
|
CATEGORY:=Libraries
|
|
|
|
TITLE:=Shared library of FastCGI
|
2008-08-17 16:18:36 +00:00
|
|
|
DEPENDS:=+uclibcxx
|
2007-07-17 11:40:41 +00:00
|
|
|
URL:=http://www.fastcgi.com/
|
|
|
|
endef
|
|
|
|
|
2007-09-04 17:25:28 +00:00
|
|
|
define Package/fcgi/description
|
|
|
|
FastCGI is a language independent, scalable, open extension to
|
|
|
|
CGI that provides high performance without the limitations of
|
|
|
|
server specific APIs.
|
|
|
|
endef
|
|
|
|
|
2008-08-06 22:43:15 +00:00
|
|
|
TARGET_CFLAGS += $(FPIC)
|
|
|
|
|
2007-07-17 11:40:41 +00:00
|
|
|
CONFIGURE_ARGS += \
|
|
|
|
--enable-shared \
|
2007-09-04 17:25:28 +00:00
|
|
|
--enable-static \
|
|
|
|
|
|
|
|
CONFIGURE_VARS += \
|
|
|
|
CPPFLAGS="$$$$CPPFLAGS -I$(STAGING_DIR)/usr/include/uClic++" \
|
|
|
|
CXXFLAGS="$$$$CXXFLAGS -fno-builtin -fno-rtti -nostdinc++" \
|
|
|
|
LIBS="-nodefaultlibs -luClibc++ -lm" \
|
2007-07-17 11:40:41 +00:00
|
|
|
|
2007-09-04 17:25:28 +00:00
|
|
|
define Build/Compile
|
|
|
|
$(MAKE) -C $(PKG_BUILD_DIR) DESTDIR="$(PKG_INSTALL_DIR)" all install
|
|
|
|
endef
|
2007-07-17 11:40:41 +00:00
|
|
|
|
|
|
|
define Build/InstallDev
|
2007-10-07 03:20:26 +00:00
|
|
|
$(INSTALL_DIR) $(1)/usr/include
|
|
|
|
$(CP) $(PKG_INSTALL_DIR)/usr/include/fastcgi.h $(1)/usr/include/
|
|
|
|
$(CP) $(PKG_INSTALL_DIR)/usr/include/fcgi{app,_config,misc,o,os,_stdio}.h $(1)/usr/include/
|
|
|
|
$(INSTALL_DIR) $(1)/usr/lib
|
|
|
|
$(CP) $(PKG_INSTALL_DIR)/usr/lib/libfcgi.{a,so*} $(1)/usr/lib/
|
2007-07-17 11:40:41 +00:00
|
|
|
endef
|
|
|
|
|
|
|
|
define Package/fcgi/install
|
|
|
|
$(INSTALL_DIR) $(1)/usr/bin
|
2007-12-09 18:59:01 +00:00
|
|
|
$(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/bin/cgi-fcgi $(1)/usr/bin/
|
2007-09-04 17:25:28 +00:00
|
|
|
$(INSTALL_DIR) $(1)/usr/lib
|
|
|
|
$(CP) $(PKG_INSTALL_DIR)/usr/lib/libfcgi.so.* $(1)/usr/lib/
|
2007-07-17 11:40:41 +00:00
|
|
|
endef
|
|
|
|
|
|
|
|
$(eval $(call BuildPackage,fcgi))
|