From: <abe...@us...> - 2013-04-16 17:43:44
|
Revision: 6047 http://sourceforge.net/p/astlinux/code/6047 Author: abelbeck Date: 2013-04-16 17:43:39 +0000 (Tue, 16 Apr 2013) Log Message: ----------- dosfstools, version bump to 3.0.16 Modified Paths: -------------- branches/1.0/package/dosfstools/Config.in branches/1.0/package/dosfstools/dosfstools.mk Modified: branches/1.0/package/dosfstools/Config.in =================================================================== --- branches/1.0/package/dosfstools/Config.in 2013-04-16 15:46:02 UTC (rev 6046) +++ branches/1.0/package/dosfstools/Config.in 2013-04-16 17:43:39 UTC (rev 6047) @@ -1,6 +1,8 @@ config BR2_PACKAGE_DOSFSTOOLS bool "dosfstools" depends on BR2_LARGEFILE + depends on BR2_USE_WCHAR + select BR2_PACKAGE_LIBICONV if !BR2_ENABLE_LOCALE help Tools for creating and checking DOS FAT filesystems. @@ -24,5 +26,5 @@ help Get or set the DOS FAT filesystem label. -comment "dosfstools requires a toolchain with LARGEFILE support" - depends on !BR2_LARGEFILE +comment "dosfstools requires a toolchain with LARGEFILE and WCHAR support" + depends on !BR2_LARGEFILE || !BR2_USE_WCHAR Modified: branches/1.0/package/dosfstools/dosfstools.mk =================================================================== --- branches/1.0/package/dosfstools/dosfstools.mk 2013-04-16 15:46:02 UTC (rev 6046) +++ branches/1.0/package/dosfstools/dosfstools.mk 2013-04-16 17:43:39 UTC (rev 6047) @@ -3,16 +3,23 @@ # dosfstools # ############################################################# -DOSFSTOOLS_VERSION = 3.0.12 +DOSFSTOOLS_VERSION = 3.0.16 DOSFSTOOLS_SOURCE = dosfstools-$(DOSFSTOOLS_VERSION).tar.gz -DOSFSTOOLS_SITE = http://www.daniel-baumann.ch/software/dosfstools +DOSFSTOOLS_SITE = http://fossies.org/linux/misc +DOSFSTOOLS_LDFLAGS = $(TARGET_LDFLAGS) + +ifneq ($(BR2_ENABLE_LOCALE),y) +DOSFSTOOLS_DEPENDENCIES += libiconv +DOSFSTOOLS_LDFLAGS += -liconv +endif + MKDOSFS_BINARY = mkdosfs DOSFSCK_BINARY = dosfsck DOSFSLABEL_BINARY = dosfslabel define DOSFSTOOLS_BUILD_CMDS - $(MAKE) CFLAGS="$(TARGET_CFLAGS)" LDFLAGS="$(TARGET_LDFLAGS)" \ - CC="$(TARGET_CC)" -C $(@D) + $(MAKE) CFLAGS="$(TARGET_CFLAGS)" CC="$(TARGET_CC)" \ + LDFLAGS="$(DOSFSTOOLS_LDFLAGS)" -C $(@D) endef DOSFSTOOLS_INSTALL_BIN_FILES_$(BR2_PACKAGE_DOSFSTOOLS_MKDOSFS)+=$(MKDOSFS_BINARY) This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |