diff options
author | Josh Rickmar <jrick@devio.us> | 2013-05-14 12:04:34 -0400 |
---|---|---|
committer | Josh Rickmar <jrick@devio.us> | 2013-05-14 12:04:34 -0400 |
commit | a99ef02ba9242d6923e0b7a5cd204f8da3d78641 (patch) | |
tree | e47f3eaf09d3757f695703e87c80ed8a55de8713 /dragonfly/Makefile | |
parent | 33e11b2d4e49691eead713c7488d12d4e9633729 (diff) | |
download | xombrero-a99ef02ba9242d6923e0b7a5cd204f8da3d78641.tar.gz |
Remove threading
Now that the cert sideband thread is gone, threading can be removed. Making GTK calls across multiple threads is also deprecated in newer GTK versions and is severly broken on Windows, so there's no point in keeping this around.
Diffstat (limited to 'dragonfly/Makefile')
-rw-r--r-- | dragonfly/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/dragonfly/Makefile b/dragonfly/Makefile index f438f1f..f0b8a32 100644 --- a/dragonfly/Makefile +++ b/dragonfly/Makefile @@ -4,13 +4,13 @@ LIBS= gtk+-2.0 webkit-1.0 .else LIBS= gtk+-3.0 webkitgtk-3.0 .endif -LIBS+= libsoup-2.4 gnutls gthread-2.0 +LIBS+= libsoup-2.4 gnutls LDADD= -lutil -lgcrypt -lX11 GTK_CFLAGS!= pkg-config --cflags $(LIBS) GTK_LDFLAGS!= pkg-config --libs $(LIBS) -CFLAGS+= $(GTK_CFLAGS) -O2 -Wall -pthread -I. -I.. -LDFLAGS+= $(GTK_LDFLAGS) -pthread +CFLAGS+= $(GTK_CFLAGS) -O2 -Wall -I. -I.. +LDFLAGS+= $(GTK_LDFLAGS) PREFIX?= /usr/local BINDIR?= $(PREFIX)/bin |