diff options
author | Junio C Hamano <gitster@pobox.com> | 2014-01-10 10:33:14 -0800 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2014-01-10 10:33:14 -0800 |
commit | 962fa6539c6f93825852c7bf52679bc98739e1a3 (patch) | |
tree | d404adad81a5305b04c95ada237ca7b27c54fd9d | |
parent | 34aacf30a39570e58de7c499f102b7196f2a9744 (diff) | |
parent | 92164af978c8cb180c8d9ba9487e0ddddb15fb77 (diff) | |
download | git-962fa6539c6f93825852c7bf52679bc98739e1a3.tar.gz |
Merge branch 'bs/mirbsd'
* bs/mirbsd:
Add MirBSD support to the build system.
-rw-r--r-- | config.mak.uname | 7 | ||||
-rw-r--r-- | git-compat-util.h | 2 |
2 files changed, 8 insertions, 1 deletions
diff --git a/config.mak.uname b/config.mak.uname index 82d549e48b..7d31fad241 100644 --- a/config.mak.uname +++ b/config.mak.uname @@ -198,6 +198,13 @@ ifeq ($(uname_S),OpenBSD) BASIC_LDFLAGS += -L/usr/local/lib HAVE_PATHS_H = YesPlease endif +ifeq ($(uname_S),MirBSD) + NO_STRCASESTR = YesPlease + NO_MEMMEM = YesPlease + USE_ST_TIMESPEC = YesPlease + NEEDS_LIBICONV = YesPlease + HAVE_PATHS_H = YesPlease +endif ifeq ($(uname_S),NetBSD) ifeq ($(shell expr "$(uname_R)" : '[01]\.'),2) NEEDS_LIBICONV = YesPlease diff --git a/git-compat-util.h b/git-compat-util.h index b73916bbc6..cbd86c37f5 100644 --- a/git-compat-util.h +++ b/git-compat-util.h @@ -75,7 +75,7 @@ # endif #elif !defined(__APPLE__) && !defined(__FreeBSD__) && !defined(__USLC__) && \ !defined(_M_UNIX) && !defined(__sgi) && !defined(__DragonFly__) && \ - !defined(__TANDEM) && !defined(__QNX__) + !defined(__TANDEM) && !defined(__QNX__) && !defined(__MirBSD__) #define _XOPEN_SOURCE 600 /* glibc2 and AIX 5.3L need 500, OpenBSD needs 600 for S_ISLNK() */ #define _XOPEN_SOURCE_EXTENDED 1 /* AIX 5.3L needs this */ #endif |