exfat: bump to version 1.1.0
authorGustavo Zacarias <gustavo@zacarias.com.ar>
Wed, 10 Sep 2014 19:07:29 +0000 (16:07 -0300)
committerPeter Korsgaard <peter@korsgaard.com>
Thu, 11 Sep 2014 20:43:16 +0000 (22:43 +0200)
Use gentoo distfiles since the download infra can't handle google docs
URLs.

[Peter: also pass TARGET_CFLAGS in CCFLAGS]
Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
package/exfat/exfat.mk

index 3c0dece20aaf45865d9ec4c9ccf60ebb5f90a373..097c3acbe6031dbd2eb8ed2598137bf07b8c3ed9 100644 (file)
@@ -4,8 +4,8 @@
 #
 ################################################################################
 
-EXFAT_VERSION = 1.0.1
-EXFAT_SITE = http://exfat.googlecode.com/files
+EXFAT_VERSION = 1.1.0
+EXFAT_SITE = http://distfiles.gentoo.org/distfiles
 EXFAT_SOURCE = fuse-exfat-$(EXFAT_VERSION).tar.gz
 EXFAT_DEPENDENCIES = host-scons libfuse
 EXFAT_LICENSE = GPLv3+
@@ -13,12 +13,12 @@ EXFAT_LICENSE_FILES = COPYING
 
 define EXFAT_BUILD_CMDS
        (cd $(@D); \
-               $(TARGET_CONFIGURE_OPTS) $(SCONS))
+               $(TARGET_CONFIGURE_OPTS) CCFLAGS="$(TARGET_CFLAGS) -std=c99" $(SCONS))
 endef
 
 define EXFAT_INSTALL_TARGET_CMDS
        (cd $(@D); \
-               $(TARGET_CONFIGURE_OPTS) $(SCONS) \
+               $(TARGET_CONFIGURE_OPTS) CCFLAGS="$(TARGET_CFLAGS) -std=c99" $(SCONS) \
                DESTDIR=$(TARGET_DIR)/usr/sbin install)
 endef