diff options
author | Ying-Chieh Liao <ijliao@FreeBSD.org> | 2002-11-11 17:23:49 +0000 |
---|---|---|
committer | Ying-Chieh Liao <ijliao@FreeBSD.org> | 2002-11-11 17:23:49 +0000 |
commit | 1f412c28a53a1b08c4f6c3a64677e0568388577c (patch) | |
tree | 7b8c29151266c541a5201c165909c912cbd3cc59 /databases/firebird/files/patch-jrd::gds.c | |
parent | upgrade to 20021103 (diff) |
Add SuperServer build
Remove perl from scripts
Remove scripts + consolidate into pkg-install
PR: 45185
Submitted by: maintainer
Notes
Notes:
svn path=/head/; revision=69904
Diffstat (limited to 'databases/firebird/files/patch-jrd::gds.c')
-rw-r--r-- | databases/firebird/files/patch-jrd::gds.c | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/databases/firebird/files/patch-jrd::gds.c b/databases/firebird/files/patch-jrd::gds.c new file mode 100644 index 000000000000..523abb725403 --- /dev/null +++ b/databases/firebird/files/patch-jrd::gds.c @@ -0,0 +1,24 @@ +--- jrd/gds.c.orig Sat Mar 2 00:15:11 2002 ++++ jrd/gds.c Sun Jul 7 14:27:44 2002 +@@ -159,7 +159,7 @@ + engine and this change may imply side effect I haven't known + about yet. Tomas Nejedlik (tomas@nejedlik.cz) + */ +-#if (defined(LINUX) && defined(SUPERCLIENT)) ++#if ((defined(LINUX) || defined(FREEBSD)) && defined(SUPERCLIENT)) + #define V4_THREADING + #endif + +@@ -3510,9 +3510,9 @@ + #else + (MAP_ANON | + #endif +-#if (!defined LINUX && !defined DARWIN) +-/* In LINUX, Solaris, and Darwin there is no such thing as MAP_VARIABLE. Hence, it gives +- compilation error. The equivalent functionality is default, ++#if (!defined LINUX && !defined DARWIN && !defined FREEBSD) ++/* In LINUX, Solaris, FreeBSD and Darwin there is no such thing as MAP_VARIABLE. ++ Hence, it gives compilation error. The equivalent functionality is default, + if you do not specify MAP_FIXED */ + MAP_VARIABLE | + #endif /* LINUX */ |