From 63d2be94ffa973825ebc8cfcee1a85aed5ca0b6e Mon Sep 17 00:00:00 2001 From: Gonzalo Odiard Date: Tue, 08 Feb 2011 12:58:41 +0000 Subject: Change Makefile to exclude -pthread option in compilation --- (limited to 'fill') diff --git a/fill/Makefile b/fill/Makefile index e437f99..448c965 100644 --- a/fill/Makefile +++ b/fill/Makefile @@ -34,11 +34,11 @@ #Rafael Barbolo Lopes (barbolo@gmail.com) #Alexandre A. Gonçalves Martinazzo (alexandremartinazzo@gmail.com) -CFLAGS = $(shell pkg-config --cflags gtk+-2.0 pygtk-2.0) \ +CFLAGS = $(shell pkg-config --cflags gtk+-2.0 pygtk-2.0 | sed 's/-pthread//') \ $(shell python-config --cflags) \ -fPIC -LDFLAGS = $(shell pkg-config --libs gtk+-2.0 pygtk-2.0) \ +LDFLAGS = $(shell pkg-config --libs gtk+-2.0 pygtk-2.0 | sed 's/-pthread//') \ $(shell python-config --libs) ARCH = $(shell arch | grep 64 >/dev/null && echo linux64 || echo linux32) -- cgit v0.9.1