macOS: make sure that gettext is found

Due to reasons (some XCode versions seem to include gettext, some don't?), Homebrew does not expose the libraries and headers in /usr/local/ by default anymore. Let's help find them again. Note: for some reason, this is a change of behavior caused by the upgrade to Mojave, identified in our Azure Pipeline; it seems that Homebrew used to add the /usr/local/ directories to the include and link search path before, but now it no longer does. Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de> Signed-off-by: Junio C Hamano <gitster@pobox.com>

Johannes Schindelin committed Apr 14, 2019 at 14:19 UTC 92a1377a2ac69b2975f268c1dda079333f8d9df1
1 file changed +2
config.mak.uname
+2
@@ -114,6 +114,8 @@ ifeq ($(uname_S),Darwin)
114 HAVE_BSD_SYSCTL = YesPlease
115 FREAD_READS_DIRECTORIES = UnfortunatelyYes
116 HAVE_NS_GET_EXECUTABLE_PATH = YesPlease
117 + BASIC_CFLAGS += -I/usr/local/include
118 + BASIC_LDFLAGS += -L/usr/local/lib
119 endif
120 ifeq ($(uname_S),SunOS)
121 NEEDS_SOCKET = YesPlease