diff options
author | Benny Siegert <bsiegert@herc.mirbsd.org> | 2013-12-31 14:36:45 +0000 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2014-01-02 10:19:14 -0800 |
commit | 92164af978c8cb180c8d9ba9487e0ddddb15fb77 (patch) | |
tree | 46a84ffd2210da6ec7cce0d3e835a8a09721ae99 /config.mak.uname | |
parent | d2446dfd7f3b3f8948142cfb07a0270e2497d93f (diff) | |
download | git-92164af978c8cb180c8d9ba9487e0ddddb15fb77.tar.gz |
Add MirBSD support to the build system.bs/mirbsd
Add an entry into the table of supported OSes. Do not set _XOPEN_SOURCE
(contrary to OpenBSD) because that disables the u_short and u_long
typedefs, which are used unconditionally in various other header files.
Signed-off-by: Benny Siegert <bsiegert@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'config.mak.uname')
-rw-r--r-- | config.mak.uname | 7 |
1 files changed, 7 insertions, 0 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 |