git » libjio » commit 9d58ae9

Makefile: Use only the needed LFS CFLAGS

author Alberto Bertogli
2009-03-28 03:22:15 UTC
committer Alberto Bertogli
2009-03-28 03:22:15 UTC
parent 34e078aecbdab20c9ad6ead368fa6f216b35aa43

Makefile: Use only the needed LFS CFLAGS

Signed-off-by: Alberto Bertogli <albertito@blitiri.com.ar>

Makefile +1 -3

diff --git a/Makefile b/Makefile
index 8128284..b7cfef3 100644
--- a/Makefile
+++ b/Makefile
@@ -4,9 +4,7 @@ VERSION="0.24"
 CFLAGS = -std=c99 -pedantic -Wall -O3
 
 MANDATORY_CFLAGS := \
-	-D_LARGEFILE_SOURCE=1 -D_LARGEFILE64_SOURCE=1 \
-	-D_LFS_LARGEFILE=1 -D_LFS64_LARGEFILE=1 \
-	-D_FILE_OFFSET_BITS=64 $(shell getconf LFS_CFLAGS 2>/dev/null) \
+	-D_LARGEFILE_SOURCE=1 $(shell getconf LFS_CFLAGS 2>/dev/null) \
 	-D_XOPEN_SOURCE=500
 
 ALL_CFLAGS += $(CFLAGS) $(MANDATORY_CFLAGS) -fPIC