diff options
author | Michael Stahl <mstahl@redhat.com> | 2013-04-03 15:27:42 +0200 |
---|---|---|
committer | Michael Stahl <mstahl@redhat.com> | 2013-04-03 15:28:54 +0200 |
commit | 5020e25c88a3a0ed11222f8b255b35abb5dc4d5a (patch) | |
tree | 15ce58fb35f2ee35faa81e6c529bef0cf7f52159 /redland | |
parent | f8be3d02573c4d6d753b5e0c1a449e932f94bd81 (diff) |
redland: stop using --with-threads, it supports only POSIX...
... so it's better to wrap an osl::Mutex around the whole thing in
client code.
Change-Id: I611aa879e03c11c01fbd215148750a11a285b216
Diffstat (limited to 'redland')
-rw-r--r-- | redland/ExternalProject_redland.mk | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/redland/ExternalProject_redland.mk b/redland/ExternalProject_redland.mk index 530295aed83e..c35a5bfb1d82 100644 --- a/redland/ExternalProject_redland.mk +++ b/redland/ExternalProject_redland.mk @@ -36,6 +36,7 @@ $(call gb_ExternalProject_get_state_target,redland,build): RASQAL_LIBS="-L$(OUTDIR)/lib -lrasqal" \ ./configure --disable-static --disable-gtk-doc \ --disable-modular \ + --without-threads \ --without-bdb --without-sqlite --without-mysql \ --without-postgresql --without-threestore --without-virtuoso \ --build=$(BUILD_PLATFORM) --host=$(HOST_PLATFORM) \ @@ -59,12 +60,12 @@ $(call gb_ExternalProject_get_state_target,redland,build): RASQAL_LIBS="-L$(OUTDIR)/lib -lrasqal" \ ./configure --disable-gtk-doc \ --disable-modular \ + --without-threads \ --without-bdb --without-sqlite --without-mysql \ --without-postgresql --without-threestone --without-virtuoso \ $(if $(filter YES,$(CROSS_COMPILING)),--build=$(BUILD_PLATFORM) --host=$(HOST_PLATFORM)) \ $(if $(filter MACOSX,$(OS)),--prefix=/@.__________________________________________________OOO) \ $(if $(filter IOS ANDROID,$(OS)),--disable-shared,--disable-static) \ - $(if $(filter-out ANDROID,$(OS)),--with-threads) \ && $(MAKE) \ $(if $(filter MACOSX,$(OS)),&& $(PERL) \ $(SOLARENV)/bin/macosx-change-install-names.pl shl OOO \ |