Re: [PATCH 0/4] freebsd portability fixes
From: Alex Riesen <hidden>
Date: 2016-06-15 22:44:36
Subsystem:
the rest · Maintainer:
Linus Torvalds
Alex Riesen, Tue, May 13, 2008 22:39:31 +0200:
Jeff King, Tue, May 13, 2008 11:04:24 +0200:quoted
On Tue, May 13, 2008 at 04:43:39AM -0400, Jeff King wrote:quoted
With these patches, I can successfully run all test scripts from the current 'master' on FreeBSD 6.1 (some of them probably affect OS X, too -- I recall somebody complaining about the '! foo | bar' construct recently).Ah, nevermind about OS X. It was 97ad535b from Alex, and he specifically mentioned FreeBSD 4. Alex, you might want to try re-running the tests with these patches.Very good! GnuPG is missing on the system, so t7004 was skipped, but everything besides that ran fine. My config.mak: NO_STRTOUMAX=Yes NO_C99_FORMAT=Yes SHELL_PATH=/usr/local/bin/bash perl 5.8.6 I also have the test-tr patches I sent some time ago in that tree.
I also have the following in git-compat-util.h:
diff --git a/git-compat-util.h b/git-compat-util.h
index 01c4045..161bd50 100644
--- a/git-compat-util.h
+++ b/git-compat-util.h@@ -191,6 +191,7 @@ extern size_t gitstrlcpy(char *, const char *, size_t); #ifdef NO_STRTOUMAX #define strtoumax gitstrtoumax +typedef unsigned long long uintmax_t; extern uintmax_t gitstrtoumax(const char *, char **, int); #endif
Which is obviously a hack, but I considered too minor an issue. It (the missing uintmax_t) is probably something very specific to this particular system. I am probably wrong about the issue being minor...