From: Erik de Castro Lopo Date: Wed, 2 Jan 2013 11:39:56 +0000 (+1100) Subject: Minor Linux fixes for Makefile.lite build method. X-Git-Tag: 1.3.0pre1~14 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=33fa7dc6436b439c7160ce77b4f652084779c116;p=platform%2Fupstream%2Fflac.git Minor Linux fixes for Makefile.lite build method. --- diff --git a/build/config.mk b/build/config.mk index 76cdc51..5dd72bb 100644 --- a/build/config.mk +++ b/build/config.mk @@ -55,6 +55,11 @@ ifeq ($(PROC),powerpc) PROC := ppc endif +ifeq ($(OS),Linux) + PROC := $(shell uname -m) + USE_ICONV := 0 +endif + debug : BUILD = debug valgrind : BUILD = debug release : BUILD = release @@ -90,6 +95,12 @@ else CONFIG_CFLAGS += -DWORDS_BIGENDIAN=0 endif +ifeq ($(OS),Linux) + ifeq ($(PROC),x86_64) + CONFIG_CFLAGS += -fPIC + endif +endif + ifneq (0,$(USE_ICONV)) CONFIG_CFLAGS += -DHAVE_ICONV ICONV_LIBS = -liconv