about summary refs log tree commit diff stats
path: root/Makefile
diff options
context:
space:
mode:
authorMarco Peereboom <marco@conformal.com>2011-10-06 12:59:19 -0500
committerMarco Peereboom <marco@conformal.com>2011-10-06 12:59:19 -0500
commitf2fc48a9635306677f18f8ed31df4ee865f35999 (patch)
treea6e8be7d2768e20f415238c65902ec406877b835 /Makefile
parent038e53d8c1a5b14d427e1e5beb302722d97d73c1 (diff)
downloadxombrero-f2fc48a9635306677f18f8ed31df4ee865f35999.tar.gz
get rid of threads altogether
it was a mistake to introduce threads for the color bar so simply get
rid of threads altogether and pretend it never happened.
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile5
1 files changed, 3 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index c4716ef..1a00e70 100644
--- a/Makefile
+++ b/Makefile
@@ -14,10 +14,11 @@ LIBS+= gtk+-2.0
 LIBS+= webkit-1.0
 LIBS+= libsoup-2.4
 LIBS+= gnutls
+LIBS+= gthread-2.0
 GTK_CFLAGS!= pkg-config --cflags $(LIBS)
 GTK_LDFLAGS!= pkg-config --libs $(LIBS)
-CFLAGS+= $(GTK_CFLAGS) -Wall -pthread
-LDFLAGS+= $(GTK_LDFLAGS) -pthread
+CFLAGS+= $(GTK_CFLAGS) -Wall
+LDFLAGS+= $(GTK_LDFLAGS)
 BUILDVERSION != sh "${.CURDIR}/buildver.sh"
 .if !${BUILDVERSION} == ""
 CPPFLAGS+= -DXXXTERM_BUILDSTR=\"$(BUILDVERSION)\"