summaryrefslogtreecommitdiff
path: root/databases/gigabase/patches
diff options
context:
space:
mode:
authorobache <obache>2011-06-18 02:45:13 +0000
committerobache <obache>2011-06-18 02:45:13 +0000
commite01674e48eee0078227ea00fc0cfade5a6c7db8f (patch)
tree4575b6ad4ae3ff2e22e4ff42f0993f1556381f01 /databases/gigabase/patches
parentacf4ac9ea2e26b8b439e4ce71546d84c25d03410 (diff)
downloadpkgsrc-e01674e48eee0078227ea00fc0cfade5a6c7db8f.tar.gz
Update gigabase to 3.82.
per maintainer update request by PR#45076. --- Release version 3.80 15.12.2010 ------------------------------------- 1. Fix bug with preserving indices 2. Replace sprintf with strcat in ClassDescriptor constructor to avoid problems in SymbianOS 3. Fix problem with std_tmp_allocator in xml.cpp --- Release version 3.81 29.03.2011 ------------------------------------- 1. Change return type of select method to be able to selcet more than 2Gb records 2. Patch of SubSQL HTML dump done by Christen Volker improving visualisation of large arrays 3. Visual Studio 10 compatibilty fixes --- Release version 3.82 06.05.2011 ------------------------------------- 1. Fix bug with scheduled incremental backup 2. Fix namespace support
Diffstat (limited to 'databases/gigabase/patches')
-rw-r--r--databases/gigabase/patches/patch-aa6
-rw-r--r--databases/gigabase/patches/patch-ab15
2 files changed, 3 insertions, 18 deletions
diff --git a/databases/gigabase/patches/patch-aa b/databases/gigabase/patches/patch-aa
index 46149bfb2b5..07dad08fe71 100644
--- a/databases/gigabase/patches/patch-aa
+++ b/databases/gigabase/patches/patch-aa
@@ -1,8 +1,8 @@
-$NetBSD: patch-aa,v 1.1.1.1 2010/09/18 09:09:02 obache Exp $
+$NetBSD: patch-aa,v 1.2 2011/06/18 02:45:13 obache Exp $
install as usual manner.
---- Makefile.in.orig 2009-11-19 13:05:26.000000000 +0000
+--- Makefile.in.orig 2011-02-28 08:41:44.000000000 +0000
+++ Makefile.in
@@ -7,6 +7,8 @@ exec_prefix = @exec_prefix@
VPATH = @srcdir@
@@ -13,7 +13,7 @@ install as usual manner.
# Coment this for AIX/xlC 5.0
LIBEXT=la
-@@ -152,16 +154,11 @@ testleak: testleak.o $(GB_LIB)
+@@ -155,16 +157,11 @@ testleak: testleak.o $(GB_LIB)
install: subsql $(GB_LIB) $(CLI_LIB)
mkdir -p $(includedir)
diff --git a/databases/gigabase/patches/patch-ab b/databases/gigabase/patches/patch-ab
deleted file mode 100644
index fc069ea4c36..00000000000
--- a/databases/gigabase/patches/patch-ab
+++ /dev/null
@@ -1,15 +0,0 @@
-$NetBSD: patch-ab,v 1.1.1.1 2010/09/18 09:09:02 obache Exp $
-
-DragonFly support.
-
---- unisock.cpp.orig 2009-09-17 08:35:58.000000000 +0000
-+++ unisock.cpp
-@@ -167,7 +167,7 @@ char* unix_socket::get_peer_name()
- return NULL;
- }
- struct sockaddr_in insock;
--#if defined(__linux__) || (defined(__FreeBSD__) && __FreeBSD__ > 3) || defined(_AIX43) || defined(__OpenBSD__) || defined(__NetBSD__) || defined(HPUX11) || defined(_SOCKLEN_T)
-+#if defined(__linux__) || (defined(__FreeBSD__) && __FreeBSD__ > 3) || defined(_AIX43) || defined(__OpenBSD__) || defined(__NetBSD__) || defined(HPUX11) || defined (__DragonFly__) || defined(_SOCKLEN_T)
- socklen_t len = sizeof(insock);
- #elif defined(_AIX41)
- size_t len = sizeof(insock);