diff options
author | Junio C Hamano <junkio@cox.net> | 2007-02-19 18:29:41 -0800 |
---|---|---|
committer | Junio C Hamano <junkio@cox.net> | 2007-02-19 18:29:41 -0800 |
commit | 2b2b892e36eb0bd8ce431635243dd27f5230044c (patch) | |
tree | e0dcac71ccba401ebe95061f5cf08a4558c5846e /Makefile | |
parent | 7e53607c95a7a44e603b907cd7e38b4ae17cc5d0 (diff) | |
parent | e326bce65c2a8b10f40c1869e13c7450a243b109 (diff) | |
download | git-2b2b892e36eb0bd8ce431635243dd27f5230044c.tar.gz git-2b2b892e36eb0bd8ce431635243dd27f5230044c.tar.xz |
Merge branch 'maint'
* maint:
Obey NO_C99_FORMAT in fast-import.c.
Add a compat/strtoumax.c for Solaris 8.
git-clone: Sync documentation to usage note.
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 13 |
1 files changed, 13 insertions, 0 deletions
@@ -28,6 +28,10 @@ all:: # # Define NO_STRLCPY if you don't have strlcpy. # +# Define NO_STRTOUMAX if you don't have strtoumax in the C library. +# If your compiler also does not support long long or does not have +# strtoull, define NO_STRTOULL. +# # Define NO_SETENV if you don't have setenv in the C library. # # Define NO_SYMLINK_HEAD if you never want .git/HEAD to be a symbolic link. @@ -353,11 +357,13 @@ ifeq ($(uname_S),SunOS) NO_UNSETENV = YesPlease NO_SETENV = YesPlease NO_C99_FORMAT = YesPlease + NO_STRTOUMAX = YesPlease endif ifeq ($(uname_R),5.9) NO_UNSETENV = YesPlease NO_SETENV = YesPlease NO_C99_FORMAT = YesPlease + NO_STRTOUMAX = YesPlease endif INSTALL = ginstall TAR = gtar @@ -517,6 +523,13 @@ ifdef NO_STRLCPY COMPAT_CFLAGS += -DNO_STRLCPY COMPAT_OBJS += compat/strlcpy.o endif +ifdef NO_STRTOUMAX + COMPAT_CFLAGS += -DNO_STRTOUMAX + COMPAT_OBJS += compat/strtoumax.o +endif +ifdef NO_STRTOULL + COMPAT_CFLAGS += -DNO_STRTOULL +endif ifdef NO_SETENV COMPAT_CFLAGS += -DNO_SETENV COMPAT_OBJS += compat/setenv.o |