diff options
author | Junio C Hamano <gitster@pobox.com> | 2019-05-09 00:37:28 +0900 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2019-05-09 00:37:28 +0900 |
commit | 1ff440fb41c65c34ea9a5b727ec2befda12dc34b (patch) | |
tree | 5976d9935a88d3ec71f12f7e783cd6b0726d0f19 | |
parent | Merge branch 'jt/submodule-repo-is-with-worktree' (diff) | |
parent | Makefile: use fileno macro work around on AIX (diff) | |
download | tgif-1ff440fb41c65c34ea9a5b727ec2befda12dc34b.tar.xz |
Merge branch 'cc/aix-has-fileno-as-a-macro'
AIX shared the same build issues with other BSDs around fileno(fp),
which has been corrected.
* cc/aix-has-fileno-as-a-macro:
Makefile: use fileno macro work around on AIX
-rw-r--r-- | config.mak.uname | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/config.mak.uname b/config.mak.uname index d56613a139..d916d1dc7a 100644 --- a/config.mak.uname +++ b/config.mak.uname @@ -271,6 +271,7 @@ ifeq ($(uname_S),AIX) INTERNAL_QSORT = UnfortunatelyYes NEEDS_LIBICONV = YesPlease BASIC_CFLAGS += -D_LARGE_FILES + FILENO_IS_A_MACRO = UnfortunatelyYes ifeq ($(shell expr "$(uname_V)" : '[1234]'),1) NO_PTHREADS = YesPlease else |