blob: acac9940952d4f7e6387bc26cc621198aaaca2c5 (
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
|
diff -up ./deps/geohash-int/Makefile.pic ./deps/geohash-int/Makefile
--- ./deps/geohash-int/Makefile.pic 2016-01-15 16:47:38.818294577 +0100
+++ ./deps/geohash-int/Makefile 2016-01-15 16:48:23.641486461 +0100
@@ -2,7 +2,7 @@ STD=
WARN= -Wall
OPT= -O2
-R_CFLAGS= $(STD) $(WARN) $(OPT) $(DEBUG) $(CFLAGS)
+R_CFLAGS= $(STD) $(WARN) $(OPT) $(DEBUG) $(CFLAGS) -fPIC
R_LDFLAGS= $(LDFLAGS)
DEBUG= -g
diff -up ./deps/linenoise/Makefile.pic ./deps/linenoise/Makefile
--- ./deps/linenoise/Makefile.pic 2015-12-23 13:35:32.000000000 +0100
+++ ./deps/linenoise/Makefile 2016-01-15 16:44:52.561582851 +0100
@@ -2,7 +2,7 @@ STD=
WARN= -Wall
OPT= -Os
-R_CFLAGS= $(STD) $(WARN) $(OPT) $(DEBUG) $(CFLAGS)
+R_CFLAGS= $(STD) $(WARN) $(OPT) $(DEBUG) $(CFLAGS) -fPIC
R_LDFLAGS= $(LDFLAGS)
DEBUG= -g
diff -up ./deps/Makefile.pic ./deps/Makefile
--- ./deps/Makefile.pic 2015-12-23 13:35:32.000000000 +0100
+++ ./deps/Makefile 2016-01-15 16:44:52.561582851 +0100
@@ -59,7 +59,7 @@ ifeq ($(uname_S),SunOS)
LUA_CFLAGS= -D__C99FEATURES__=1
endif
-LUA_CFLAGS+= -O2 -Wall -DLUA_ANSI -DENABLE_CJSON_GLOBAL -DREDIS_STATIC='' $(CFLAGS)
+LUA_CFLAGS+= -O2 -Wall -DLUA_ANSI -DENABLE_CJSON_GLOBAL -DREDIS_STATIC='' $(CFLAGS) -fPIC
LUA_LDFLAGS+= $(LDFLAGS)
# lua's Makefile defines AR="ar rcu", which is unusual, and makes it more
# challenging to cross-compile lua (and redis). These defines make it easier
|