diff options
author | Federico Di Marco <fededim@gmail.com> | 2017-06-07 23:21:38 +0200 |
---|---|---|
committer | Federico Di Marco <fededim@gmail.com> | 2017-06-07 23:21:38 +0200 |
commit | d03e302afec11c228cbcce0b02dbb362366496e5 (patch) | |
tree | 2a2182475466e00859f8317b161cb385d21b5d21 /libs/neon | |
parent | 863f6f8d836a7f3c17f6fa8c8fccade89843d9f7 (diff) |
neon: removed forced LFS support, the library automatically checks for off_t type length
davfs2: patched build error (#1327) when 'Compile with full language support' option was enabled
Signed-off-by: fededim@gmail.com
Diffstat (limited to 'libs/neon')
-rw-r--r-- | libs/neon/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libs/neon/Makefile b/libs/neon/Makefile index 2cbcda42d..635705ce7 100644 --- a/libs/neon/Makefile +++ b/libs/neon/Makefile @@ -9,7 +9,7 @@ include $(TOPDIR)/rules.mk PKG_NAME:=neon PKG_VERSION:=0.30.2 -PKG_RELEASE:=1 +PKG_RELEASE:=2 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz PKG_SOURCE_URL:=http://www.webdav.org/neon @@ -44,7 +44,7 @@ endef TARGET_CFLAGS += $(FPIC) -TARGET_CPPFLAGS += -D_LARGEFILE64_SOURCE -D_FILE_OFFSET_BITS=64 -D_GNU_SOURCE +TARGET_CPPFLAGS += -D_GNU_SOURCE CONFIGURE_ARGS += \ --enable-shared \ |