summaryrefslogtreecommitdiff
path: root/monkey/Makefile.target
diff options
context:
space:
mode:
authorVincent Sanders <vince@kyllikki.org>2016-02-12 13:36:12 +0000
committerVincent Sanders <vince@kyllikki.org>2016-02-12 13:37:50 +0000
commit5d3c38a704e2e13fae7ed93e9029fa4543c8525b (patch)
treeb416edf65013ec3717879537b07ae9080d41c204 /monkey/Makefile.target
parenta1e79a8ff60682915e963b845c495a4690ce68db (diff)
downloadnetsurf-5d3c38a704e2e13fae7ed93e9029fa4543c8525b.tar.gz
netsurf-5d3c38a704e2e13fae7ed93e9029fa4543c8525b.tar.bz2
remove reliance on GLib from monkey frontend
This changes the monkey implemntation to use a simple scheduler list and select instead of glib events.
Diffstat (limited to 'monkey/Makefile.target')
-rw-r--r--monkey/Makefile.target3
1 files changed, 1 insertions, 2 deletions
diff --git a/monkey/Makefile.target b/monkey/Makefile.target
index 281e82b98..3c7b093af 100644
--- a/monkey/Makefile.target
+++ b/monkey/Makefile.target
@@ -33,7 +33,6 @@ LDFLAGS += -lm
# non optional pkg-configed libs
$(eval $(call pkg_config_find_and_add,libcurl,Curl ))
$(eval $(call pkg_config_find_and_add,openssl,OpenSSL))
-$(eval $(call pkg_config_find_and_add,glib-2.0,GLib2))
# optional pkg-config configured libraries
$(eval $(call pkg_config_find_and_add_enabled,NSSVG,libsvgtiny,SVG))
@@ -58,7 +57,7 @@ endif
# S_MONKEY are sources purely for the MONKEY build
S_MONKEY := main.c utils.c filetype.c schedule.c bitmap.c plot.c browser.c \
- download.c 401login.c cert.c font.c poll.c dispatch.c fetch.c
+ download.c 401login.c cert.c font.c dispatch.c fetch.c
S_MONKEY := $(addprefix monkey/,$(S_MONKEY))