diff options
author | Tor Lillqvist <tml@iki.fi> | 2011-11-12 02:03:54 +0200 |
---|---|---|
committer | Tor Lillqvist <tml@iki.fi> | 2011-11-12 02:03:54 +0200 |
commit | 54d571c3d6cb730663a8743d64a6098c29008a3f (patch) | |
tree | 7ee2bf1c4328672a1a3c864eaf19f168b6e75e34 /redland | |
parent | 332e5c0a08e94351360eb9bc621badb326564cd4 (diff) |
Fix iOS build: Link (as such unneeded) executables with -liconv
Diffstat (limited to 'redland')
-rw-r--r-- | redland/raptor/makefile.mk | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/redland/raptor/makefile.mk b/redland/raptor/makefile.mk index be863e7aab87..4201a60757ce 100644 --- a/redland/raptor/makefile.mk +++ b/redland/raptor/makefile.mk @@ -139,11 +139,14 @@ XSLTLIB!:=$(XSLTLIB) # expand dmake variables for xslt-config CONFIGURE_DIR= CONFIGURE_ACTION=.$/configure + .IF "$(OS)"=="IOS" +CONFIGURE_ACTION+=LIBS=-liconv CONFIGURE_FLAGS=--disable-shared .ELSE CONFIGURE_FLAGS=--disable-static .ENDIF + # do not enable grddl parser (#i93768#) CONFIGURE_FLAGS+= --disable-gtk-doc --with-threads --with-openssl-digests --with-xml-parser=libxml --enable-parsers="rdfxml ntriples turtle trig guess rss-tag-soup" --without-bdb --without-sqlite --without-mysql --without-postgresql --without-threestore --with-regex-library=posix --with-decimal=none --with-www=xml |