Merge pull request #21 from mstap/patch-2

Remove unnecessary dependencies
This commit is contained in:
Sascha Kruse 2012-06-21 14:03:24 -07:00
commit 793dd1dd91

View File

@ -7,7 +7,7 @@ X11LIB = /usr/X11R6/lib
# Xft, comment if you don't want it
XFTINC = -I/usr/include/freetype2
XFTLIBS = -lXft -lXrender -lfreetype -lz -lfontconfig
XFTLIBS = -lXft
# Xinerama, comment if you don't want it
XINERAMALIBS = -lXinerama
@ -18,7 +18,7 @@ INIFLAGS = -DINI_ALLOW_MULTILINE=0
# includes and libs
INCS = -I${X11INC} -I/usr/lib/dbus-1.0/include -I/usr/include/dbus-1.0 ${XFTINC}
LIBS = -L${X11LIB} -lX11 -lXext -lXss -ldbus-1 ${XFTLIBS} -lpthread -lrt ${XINERAMALIBS}
LIBS = -L${X11LIB} -lX11 -lXss -ldbus-1 ${XFTLIBS} ${XINERAMALIBS}
# flags
CPPFLAGS = -D_BSD_SOURCE -DVERSION=\"${VERSION}\" ${XINERAMAFLAGS} ${INIFLAGS}