From: Junio C Hamano Date: Tue, 4 Sep 2018 21:31:39 +0000 (-0700) Subject: Merge branch 'es/freebsd-iconv-portability' X-Git-Tag: v2.19.0-rc2~3 X-Git-Url: https://git.lorimer.id.au/gitweb.git/diff_plain/b571c25e33cc8d7ac1cae66e34ce60fa7a0a3b0a?ds=inline;hp=-c Merge branch 'es/freebsd-iconv-portability' Build fix. * es/freebsd-iconv-portability: config.mak.uname: resolve FreeBSD iconv-related compilation warning --- b571c25e33cc8d7ac1cae66e34ce60fa7a0a3b0a diff --combined config.mak.uname index 2be2f19811,8906755769..e47af72e01 --- a/config.mak.uname +++ b/config.mak.uname @@@ -192,7 -192,17 +192,17 @@@ ifeq ($(uname_O),Cygwin endif ifeq ($(uname_S),FreeBSD) NEEDS_LIBICONV = YesPlease - OLD_ICONV = YesPlease + # Versions up to 10.1 require OLD_ICONV; 10.2 and beyond don't. + # A typical version string looks like "10.2-RELEASE". + ifeq ($(shell expr "$(uname_R)" : '[1-9]\.'),2) + OLD_ICONV = YesPlease + endif + ifeq ($(firstword $(subst -, ,$(uname_R))),10.0) + OLD_ICONV = YesPlease + endif + ifeq ($(firstword $(subst -, ,$(uname_R))),10.1) + OLD_ICONV = YesPlease + endif NO_MEMMEM = YesPlease BASIC_CFLAGS += -I/usr/local/include BASIC_LDFLAGS += -L/usr/local/lib @@@ -528,7 -538,7 +538,7 @@@ ifneq (,$(findstring MINGW,$(uname_S)) COMPAT_OBJS += compat/mingw.o compat/winansi.o \ compat/win32/pthread.o compat/win32/syslog.o \ compat/win32/dirent.o - BASIC_CFLAGS += -DPROTECT_NTFS_DEFAULT=1 + BASIC_CFLAGS += -DWIN32 -DPROTECT_NTFS_DEFAULT=1 EXTLIBS += -lws2_32 GITLIBS += git.res PTHREAD_LIBS =