diff options
author | Volker Grabsch <vog@notjusthosting.com> | 2009-03-05 15:54:57 (GMT) |
---|---|---|
committer | Volker Grabsch <vog@notjusthosting.com> | 2009-03-05 15:54:57 (GMT) |
commit | 7b2f8beb9d2663e6e04e4d11b8b899e74943c4c8 (patch) | |
tree | e821e64e736ab9a6d69253f98e3a95b13bfea20c | |
parent | fc91f750200179725374365194962d6d5da9ac7c (diff) | |
download | mxe-7b2f8beb9d2663e6e04e4d11b8b899e74943c4c8.zip mxe-7b2f8beb9d2663e6e04e4d11b8b899e74943c4c8.tar.gz mxe-7b2f8beb9d2663e6e04e4d11b8b899e74943c4c8.tar.bz2 |
disable threading in package cairo, because it conflicts with glib's threading
-rw-r--r-- | src/cairo.mk | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/cairo.mk b/src/cairo.mk index 8733e44..4feb41c 100644 --- a/src/cairo.mk +++ b/src/cairo.mk @@ -6,7 +6,7 @@ $(PKG)_SUBDIR := cairo-$($(PKG)_VERSION) $(PKG)_FILE := cairo-$($(PKG)_VERSION).tar.gz $(PKG)_WEBSITE := http://cairographics.org/ $(PKG)_URL := http://cairographics.org/releases/$($(PKG)_FILE) -$(PKG)_DEPS := gcc zlib libpng fontconfig freetype pthreads pixman +$(PKG)_DEPS := gcc zlib libpng fontconfig freetype pixman define $(PKG)_UPDATE wget -q -O- 'http://cairographics.org/releases/' | \ @@ -41,7 +41,7 @@ define $(PKG)_BUILD --enable-ps \ --enable-pdf \ --enable-svg \ - --enable-pthread \ - LIBS="-lmsimg32 -lpthread -lws2_32 `$(TARGET)-pkg-config pixman-1 --libs`" + --disable-pthread \ + LIBS="-lmsimg32 `$(TARGET)-pkg-config pixman-1 --libs`" $(MAKE) -C '$(1)' -j '$(JOBS)' install bin_PROGRAMS= sbin_PROGRAMS= noinst_PROGRAMS= endef |