summaryrefslogtreecommitdiff
path: root/databases/gigabase
diff options
context:
space:
mode:
authorSergey A. Osokin <osa@FreeBSD.org>2004-08-23 11:33:31 +0000
committerSergey A. Osokin <osa@FreeBSD.org>2004-08-23 11:33:31 +0000
commitd7d8f2daf9515a4be73354ffe794e45573748af3 (patch)
tree339572c3dd6e376d07a1c1cbf621186139f0f791 /databases/gigabase
parentBump PORTREVISION for previous change. (diff)
Update to 3.26.
Remove needless patch.
Notes
Notes: svn path=/head/; revision=117112
Diffstat (limited to 'databases/gigabase')
-rw-r--r--databases/gigabase/Makefile2
-rw-r--r--databases/gigabase/distinfo4
-rw-r--r--databases/gigabase/files/patch-localcli.h43
3 files changed, 3 insertions, 46 deletions
diff --git a/databases/gigabase/Makefile b/databases/gigabase/Makefile
index d6664cafa47f..5f96dd224006 100644
--- a/databases/gigabase/Makefile
+++ b/databases/gigabase/Makefile
@@ -6,7 +6,7 @@
#
PORTNAME= gigabase
-PORTVERSION= 3.25
+PORTVERSION= 3.26
CATEGORIES= databases
MASTER_SITES= http://www.garret.ru/~knizhnik/
diff --git a/databases/gigabase/distinfo b/databases/gigabase/distinfo
index 412dc9d326bc..dbd24fc31032 100644
--- a/databases/gigabase/distinfo
+++ b/databases/gigabase/distinfo
@@ -1,2 +1,2 @@
-MD5 (gigabase-3.25.tar.gz) = b37debf879320491b58647f2951ff0c4
-SIZE (gigabase-3.25.tar.gz) = 1366501
+MD5 (gigabase-3.26.tar.gz) = 6d85e1edd51e71db77666047adf16fc9
+SIZE (gigabase-3.26.tar.gz) = 1375408
diff --git a/databases/gigabase/files/patch-localcli.h b/databases/gigabase/files/patch-localcli.h
deleted file mode 100644
index 6930e5bd98c7..000000000000
--- a/databases/gigabase/files/patch-localcli.h
+++ /dev/null
@@ -1,43 +0,0 @@
---- localcli.h.orig Thu Aug 12 01:46:23 2004
-+++ localcli.h Thu Aug 12 01:47:39 2004
-@@ -178,7 +178,7 @@
- for (i = 0; i < descriptor_table_size; i++) {
- table[i] = next = new T(i, next);
- }
-- free_chain = next;
-+ this->free_chain = next;
- }
-
- ~descriptor_table() {
-@@ -186,13 +186,13 @@
- }
-
- T* get(int desc) {
-- dbCriticalSection cs(mutex);
-+ dbCriticalSection cs(this->mutex);
- return (desc >= descriptor_table_size) ? (T*)0 : table[desc];
- }
-
- T* allocate() {
-- dbCriticalSection cs(mutex);
-- if (free_chain == NULL) {
-+ dbCriticalSection cs(this->mutex);
-+ if (this->free_chain == NULL) {
- int i, n;
- T** desc = new T*[descriptor_table_size * 2];
- memcpy(desc, table, descriptor_table_size*sizeof(T*));
-@@ -202,11 +202,11 @@
- for (i = descriptor_table_size, n = i*2; i < n; i++) {
- table[i] = next = new T(i, next);
- }
-- free_chain = next;
-+ this->free_chain = next;
- descriptor_table_size = n;
- }
-- T* desc = free_chain;
-- free_chain = desc->next;
-+ T* desc = this->free_chain;
-+ this->free_chain = desc->next;
- return desc;
- }
- };