changeset 270:92713cb9be20

disable threading in package cairo, because it conflicts with glib's threading
author Volker Grabsch <vog@notjusthosting.com>
date Thu, 05 Mar 2009 16:54:57 +0100
parents 16a7b5bac4b5
children 2801bf7db05e
files src/cairo.mk
diffstat 1 files changed, 3 insertions(+), 3 deletions(-) [+]
line wrap: on
line diff
--- a/src/cairo.mk	Thu Mar 05 15:22:43 2009 +0100
+++ b/src/cairo.mk	Thu Mar 05 16:54:57 2009 +0100
@@ -6,7 +6,7 @@
 $(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 @@
         --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