diff options
author | Gary V. Vaughan <git@mlists.thewrittenword.com> | 2010-05-14 09:31:48 +0000 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2010-06-02 10:24:27 -0700 |
commit | e78673ff0bef100535cc2ed146e4a59929c7b4fd (patch) | |
tree | 5cd2f200cfb72fde7b5852f57b341595b62ecbea /Makefile | |
parent | 176959d7423988183ffbe1b35fc1de7f786bb596 (diff) | |
download | git-e78673ff0bef100535cc2ed146e4a59929c7b4fd.tar.gz |
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>
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 8 |
1 files changed, 8 insertions, 0 deletions
@@ -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) |