Finally fixing the compilation error related to apr by defining _LARGEFILE64_SOURCE

This commit is contained in:
Dan Buch 2011-11-16 09:10:55 -05:00
parent 8e5f3ee27d
commit 61c100d6dc
2 changed files with 2 additions and 2 deletions

View File

@ -1,5 +1,5 @@
PREFIX?=/usr/local
CFLAGS=-g -Wall -I${PREFIX}/apr/include/apr-1
CFLAGS=-g -Wall -I${PREFIX}/apr/include/apr-1 -D_LARGEFILE64_SOURCE
LDFLAGS=-lapr-1 -pthread -laprutil-1
all: devpkg

View File

@ -92,7 +92,7 @@ Shell CURL_SH = {
.dir = "/tmp",
.exe = "curl",
.args = {"curl", "-L", "-o", "TARGET", "URL", NULL}
}
};
Shell CONFIGURE_SH = {
.exe = "./configure",