diff options
author | Enno Boland (tox) <tox@s01.de> | 2010-03-26 21:44:48 +0100 |
---|---|---|
committer | Enno Boland (tox) <tox@s01.de> | 2010-03-26 21:44:48 +0100 |
commit | 981e52d5a755f7a30fc59595ab84f9df05a84f01 (patch) | |
tree | 4ce380008c5da4ed6df23c4c991573ed9fed542a /config.mk | |
parent | a7f2765da47529142d61c369f0cea6a68db4ed20 (diff) | |
download | surf-981e52d5a755f7a30fc59595ab84f9df05a84f01.tar.gz surf-981e52d5a755f7a30fc59595ab84f9df05a84f01.tar.bz2 surf-981e52d5a755f7a30fc59595ab84f9df05a84f01.zip |
typofix.
Diffstat (limited to 'config.mk')
-rw-r--r-- | config.mk | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -7,8 +7,8 @@ VERSION = 0.4 PREFIX = /usr/local MANPREFIX = ${PREFIX}/share/man -GTKINC=$(shell pkg-config --cflags gtk+-2.0 webkit-1.0) -GTKLIB=$(shell pkg-config --libs gtk+-2.0 webkit-1.0) +GTKINC=$(shell pkg-config --static --cflags gtk+-2.0 webkit-1.0) +GTKLIB=$(shell pkg-config --static --libs gtk+-2.0 webkit-1.0) # includes and libs @@ -18,7 +18,7 @@ LIBS = -L/usr/lib -lc ${GTKLIB} -lgthread-2.0 # flags CPPFLAGS = -DVERSION=\"${VERSION}\" CFLAGS = -std=c99 -pedantic -Wall -Os ${INCS} ${CPPFLAGS} -LDFLAGS = -g ${LIBS} +LDFLAGS = -g ${LIBS} -static # Solaris #CFLAGS = -fast ${INCS} -DVERSION=\"${VERSION}\" |