mirror of
https://github.com/git/git.git
synced 2024-11-28 12:34:08 +08:00
Makefile: HP-UX 10.20 portability fixes
HP-UX 10.20 has no pread definition, the inline keyword doesn't work, and has no inet_ntop/inet_pton definitions. Signed-off-by: Gary V. Vaughan <gary@thewrittenword.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
This commit is contained in:
parent
176959d742
commit
e78673ff0b
8
Makefile
8
Makefile
@ -988,6 +988,14 @@ ifeq ($(uname_S),HP-UX)
|
||||
NO_INET_NTOP = YesPlease
|
||||
NO_INET_PTON = YesPlease
|
||||
endif
|
||||
ifeq ($(uname_R),B.10.20)
|
||||
# Override HP-UX 11.x setting:
|
||||
INLINE =
|
||||
SOCKLEN_T = size_t
|
||||
NO_PREAD = YesPlease
|
||||
NO_INET_NTOP = YesPlease
|
||||
NO_INET_PTON = YesPlease
|
||||
endif
|
||||
GIT_TEST_CMP = cmp
|
||||
endif
|
||||
ifeq ($(uname_S),Windows)
|
||||
|
Loading…
Reference in New Issue
Block a user