From: Gerd Hoffmann Date: Wed, 14 Nov 2012 12:26:54 +0000 (+0100) Subject: pixman: pass cflags, add -fPIC X-Git-Url: http://xenbits.xensource.com/gitweb?a=commitdiff_plain;h=c28fa5a0b3566b133b5e3336d04f1333970ac179;p=people%2Fliuw%2Flibxenctrl-split%2Fqemu-xen.git pixman: pass cflags, add -fPIC Pass on CFLAGS to the pixman configure script. Add -fPIC to the cflags, needed to make the final link succeed. Signed-off-by: Gerd Hoffmann --- diff --git a/Makefile b/Makefile index e68bb8fae..4538b87e3 100644 --- a/Makefile +++ b/Makefile @@ -122,7 +122,7 @@ subdir-pixman: pixman/Makefile $(call quiet-command,$(MAKE) $(SUBDIR_MAKEFLAGS) -C pixman V="$(V)" all,) pixman/Makefile: $(SRC_PATH)/pixman/configure - (cd pixman; $(SRC_PATH)/pixman/configure $(AUTOCONF_HOST) --disable-gtk --disable-shared --enable-static) + (cd pixman; CFLAGS="$(CFLAGS) -fPIC" $(SRC_PATH)/pixman/configure $(AUTOCONF_HOST) --disable-gtk --disable-shared --enable-static) $(SRC_PATH)/pixman/configure: (cd $(SRC_PATH)/pixman; autoreconf -v --install)