blob: 618e79d1bd0e995b413f77fcdd03bd8eb4734134 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
$(eval $(call import.MODULE.defs,LIBICONV,libiconv))
$(eval $(call import.CONTRIB.defs,LIBICONV))
LIBICONV.FETCH.url = http://download.handbrake.fr/handbrake/contrib/libiconv-1.14.tar.gz
LIBICONV.FETCH.url += https://ftp.gnu.org/gnu/libiconv/libiconv-1.14.tar.gz
LIBICONV.FETCH.md5 = e34509b1623cec449dfeb73d7ce9c6c6
# this contrib will not build under MinGW with -std=gnu99
ifeq (1-mingw,$(BUILD.cross)-$(BUILD.system))
LIBICONV.GCC.args.c_std =
endif
|