summaryrefslogtreecommitdiff
path: root/bindings
diff options
context:
space:
mode:
authorJohn Mark Bell <jmb@netsurf-browser.org>2009-04-21 23:06:41 +0000
committerJohn Mark Bell <jmb@netsurf-browser.org>2009-04-21 23:06:41 +0000
commitd3d77b38ee1e632c28d25da9a9b2b67188d76cc8 (patch)
treef2bc333f87d63ed640f37acf6c2075179b3c14ec /bindings
parent3accba40db78dcd79d287a116b37c97889f9fc5b (diff)
downloadlibdom-d3d77b38ee1e632c28d25da9a9b2b67188d76cc8.tar.gz
libdom-d3d77b38ee1e632c28d25da9a9b2b67188d76cc8.tar.bz2
Sync with core buildsystem changes
svn path=/trunk/dom/; revision=7225
Diffstat (limited to 'bindings')
-rw-r--r--bindings/hubbub/Makefile9
1 files changed, 4 insertions, 5 deletions
diff --git a/bindings/hubbub/Makefile b/bindings/hubbub/Makefile
index 20ced26..59b7d3b 100644
--- a/bindings/hubbub/Makefile
+++ b/bindings/hubbub/Makefile
@@ -5,12 +5,11 @@ ifeq ($(WITH_HUBBUB_BINDING),yes)
# Hubbub
ifneq ($(PKGCONFIG),)
- CFLAGS := $(CFLAGS) $(shell $(PKGCONFIG) libhubbub-0 --cflags)
- LDFLAGS := $(LDFLAGS) $(shell $(PKGCONFIG) libhubbub-0 --libs)
+ CFLAGS := $(CFLAGS) $(shell $(PKGCONFIG) libhubbub --cflags)
+ LDFLAGS := $(LDFLAGS) $(shell $(PKGCONFIG) libhubbub --libs)
else
- CFLAGS := $(CFLAGS) -I$(PREFIX)/include/hubbub0 \
- -I$(PREFIX)/include/parserutils0
- LDFLAGS := $(LDFLAGS) -lhubbub0 -lparserutils0
+ CFLAGS := $(CFLAGS) -I$(PREFIX)/include
+ LDFLAGS := $(LDFLAGS) -lhubbub -lparserutils
endif
endif