Skip to content

Commit e60b13b

Browse files
committedOct 26, 2013
Allow compiling with a different gdlib-config
Very useful when using with development versions of libgd
1 parent 6f2a624 commit e60b13b

File tree

1 file changed

+9
-6
lines changed

1 file changed

+9
-6
lines changed
 

‎Makefile

+9-6
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,9 @@ VERSION=2.0.33r3
3131
# Command used to run Lua code
3232
LUABIN=lua5.1
3333

34+
# Path to the utility 'gdlib-config'. This may be changed to compile the
35+
# module with development versions of libgd.
36+
GDLIBCONFIG=gdlib-config
3437

3538
# Optimization for the brave of heart ;)
3639
OMITFP=-fomit-frame-pointer
@@ -47,11 +50,11 @@ LUAPKG=lua5.1
4750
OUTFILE=gd.so
4851

4952
CFLAGS=-O3 -Wall -fPIC $(OMITFP)
50-
CFLAGS+=`gdlib-config --cflags` `pkg-config $(LUAPKG) --cflags`
53+
CFLAGS+=`$(GDLIBCONFIG) --cflags` `pkg-config $(LUAPKG) --cflags`
5154
CFLAGS+=-DVERSION=\"$(VERSION)\"
5255

53-
GDFEATURES=`gdlib-config --features |sed -e "s/GD_/-DGD_/g"`
54-
LFLAGS=-shared `gdlib-config --ldflags` `gdlib-config --libs` -lgd
56+
GDFEATURES=`$(GDLIBCONFIG) --features |sed -e "s/GD_/-DGD_/g"`
57+
LFLAGS=-shared `$(GDLIBCONFIG) --ldflags` `$(GDLIBCONFIG) --libs` -lgd
5558

5659
INSTALL_PATH := `$(LUABIN) -e' \
5760
for dir in package.cpath:gmatch("(/[^?;]+)?") do \
@@ -68,10 +71,10 @@ INSTALL_PATH := `$(LUABIN) -e' \
6871

6972
#OUTFILE=gd.so
7073
#CFLAGS=-O3 -Wall -fPIC $(OMITFP)
71-
#CFLAGS+=`gdlib-config --cflags` -I/usr/include/lua5.1
74+
#CFLAGS+=`$(GDLIBCONFIG) --cflags` -I/usr/include/lua5.1
7275
#CFLAGS+=-DVERSION=\"$(VERSION)\"
73-
#GDFEATURES=`gdlib-config --features |sed -e "s/GD_/-DGD_/g"`
74-
#LFLAGS=-shared `gdlib-config --ldflags` `gdlib-config --libs` -lgd
76+
#GDFEATURES=`$(GDLIBCONFIG) --features |sed -e "s/GD_/-DGD_/g"`
77+
#LFLAGS=-shared `$(GDLIBCONFIG) --ldflags` `$(GDLIBCONFIG) --libs` -lgd
7578
#INSTALL_PATH=/usr/lib/lua/
7679

7780

0 commit comments

Comments
 (0)