summaryrefslogtreecommitdiffstats
path: root/main/haserl/lua2c.patch
blob: 9bfba3173e3526af0d1cdb5f76f0ea6a6673202c (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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
Index: src/Makefile.am
===================================================================
--- src/Makefile.am	(revision 176)
+++ src/Makefile.am	(working copy)
@@ -19,24 +19,17 @@
 endif
 
 if USE_LUA
+lua2c_LIBS ?= -llua -ldl -lm
+lua2c_LDFLAGS ?= -Wl,-E
+lua2c:	lua2c.c
+	$(CC_FOR_BUILD) $(CFLAGS_FOR_BUILD) $(lua2c_LDFLAGS) \
+		-o $@ $^ $(lua2c_LIBS)
 
-haserl_lualib.inc : haserl_lualib.lua 
-	@echo '-----------------------------------------------------'
-	@echo 'Whoops.   haserl_lualib.inc is old.  You will need'
-	@echo 'to compile lua2c by hand, or help the maintainer'
-	@echo 'get automake to do it for you.'
-	@echo ''
-	@echo 'For now, to compile lua2c:'
-	@echo ''
-	@echo 'gcc -I<luaheaderdir> -Wl,-E -L<lualibdir> -o lua2c lua2c.c -llua -ldl -lm'
-	@echo ''
-	@echo ''
-	@echo 'Then follow the instructions in lua2c.c to create a'
-	@echo 'new haserl_lualib.inc'
-	@echo ''
-	@echo 'Sorry.'
-	@echo '-----------------------------------------------------'
-	@exit 1
+haserl_lualib.inc : haserl_lualib.lua lua2c
+	if ! ./lua2c haserl_lualib haserl_lualib.lua >$@; then \
+		rm $@; \
+		exit 1 ;\
+	fi
 
 h_lua_common.c : haserl_lualib.inc
 
Index: configure.ac
===================================================================
--- configure.ac	(revision 176)
+++ configure.ac	(working copy)
@@ -7,6 +7,12 @@
 AC_PROG_INSTALL
 AC_PROG_LN_S
 
+# allow differnt compiler for build tools in case cross compiling
+if test -z "$CC_FOR_BUILD"; then
+	CC_FOR_BUILD="$CC"
+fi
+AC_SUBST(CC_FOR_BUILD)
+
 # Checks for libraries.
 
 # Checks for header files.