X-Git-Url: https://git.rohieb.name/openwrt.git/blobdiff_plain/6a74025efdb7e8522390a7fe053f79200f384a85..e211311b517b1e6d75ff70cf593c0b65bfdf239d:/package/lua/Makefile diff --git a/package/lua/Makefile b/package/lua/Makefile index aff52c3f2..e60be8f4b 100644 --- a/package/lua/Makefile +++ b/package/lua/Makefile @@ -1,10 +1,9 @@ # -# Copyright (C) 2006-2008 OpenWrt.org +# Copyright (C) 2006-2009 OpenWrt.org # # This is free software, licensed under the GNU General Public License v2. # See /LICENSE for more information. # -# $Id$ include $(TOPDIR)/rules.mk @@ -22,10 +21,10 @@ PKG_MD5SUM:=d0870f2de55d59c1c8419f36e8fac150 include $(INCLUDE_DIR)/package.mk define Package/lua/Default - SUBMENU:=LUA + SUBMENU:=Lua SECTION:=lang CATEGORY:=Languages - TITLE:=LUA programming language + TITLE:=Lua programming language URL:=http://www.lua.org/ endef @@ -45,7 +44,7 @@ endef define Package/liblua/description $(call Package/lua/Default/description) - This package contains the LUA shared libraries, needed by other programs. + This package contains the Lua shared libraries, needed by other programs. endef define Package/lua @@ -56,7 +55,7 @@ endef define Package/lua/description $(call Package/lua/Default/description) - This package contains the LUA language interpreter. + This package contains the Lua language interpreter. endef define Package/luac @@ -67,7 +66,7 @@ endef define Package/luac/description $(call Package/lua/Default/description) - This package contains the LUA language compiler. + This package contains the Lua language compiler. endef define Package/lua-examples @@ -78,7 +77,7 @@ endef define Package/lua-examples/description $(call Package/lua/Default/description) - This package contains LUA language examples. + This package contains Lua language examples. endef define Build/Configure @@ -86,6 +85,12 @@ endef TARGET_CFLAGS += -DLUA_USE_LINUX $(FPIC) +ifneq ($(CONFIG_USE_EGLIBC),) + ifeq ($(CONFIG_EGLIBC_OPTION_EGLIBC_UTMP),) + TARGET_CFLAGS += -DNO_GETLOGIN + endif +endif + define Build/Compile $(MAKE) -C $(PKG_BUILD_DIR) \ CC="$(TARGET_CROSS)gcc" \