# # Copyright (C) 2007 OpenWrt.org # # This is free software, licensed under the GNU General Public License v2. # See /LICENSE for more information. # curdir:=target $(curdir)/subtargets:=install $(curdir)/builddirs:=linux sdk imagebuilder toolchain $(curdir)/builddirs-default:=linux $(curdir)/builddirs-install:=linux $(if $(CONFIG_SDK),sdk) $(if $(CONFIG_IB),imagebuilder) $(if $(CONFIG_MAKE_TOOLCHAIN),toolchain) $(curdir)/sdk/install:=$(curdir)/linux/install $(curdir)/imagebuilder/install:=$(curdir)/linux/install $(eval $(call stampfile,$(curdir),target,prereq,.config)) $(eval $(call stampfile,$(curdir),target,compile,$(TMP_DIR)/.build)) $(eval $(call stampfile,$(curdir),target,install,$(TMP_DIR)/.build)) $($(curdir)/stamp-install): $($(curdir)/stamp-compile) $(eval $(call subdir,$(curdir))) a> : openwrt/upstream
upstream openwrtJames
aboutsummaryrefslogtreecommitdiffstats
path: root/package/lua/patches/500-eglibc_config.patch
blob: 61d2b1d248e3986d0375b0e27590dabbbc5d7d69 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
--- a/src/lposix.c
+++ b/src/lposix.c
@@ -727,11 +727,13 @@ static int Pctermid(lua_State *L)		/** c
 }
 
 
+#ifndef NO_GETLOGIN
 static int Pgetlogin(lua_State *L)		/** getlogin() */
 {
 	lua_pushstring(L, getlogin());
 	return 1;
 }
+#endif
 
 
 static void Fgetpasswd(lua_State *L, int i, const void *data)
@@ -1052,7 +1054,9 @@ static const luaL_reg R[] =
 	{"getcwd",		Pgetcwd},
 	{"getenv",		Pgetenv},
 	{"getgroup",		Pgetgroup},
+#ifndef NO_GETLOGIN
 	{"getlogin",		Pgetlogin},
+#endif
 	{"getpasswd",		Pgetpasswd},
 	{"getpid",		Pgetpid},
 	{"glob",		Pglob},