summaryrefslogtreecommitdiff
path: root/databases/adodb
diff options
context:
space:
mode:
authorDavid W. Chapman Jr. <dwcjr@FreeBSD.org>2001-07-22 05:19:32 +0000
committerDavid W. Chapman Jr. <dwcjr@FreeBSD.org>2001-07-22 05:19:32 +0000
commit8be696d3c69ab4f4dab33ecaa89da8fa5c76078a (patch)
tree94e138c005950f65c820d446ecfb6d1426262e44 /databases/adodb
parentUpdate to 5.0.1 (diff)
Remove files/patch-adodb-odbc.inc.php to fix compilation
Bump PORTREVISION PR: 29124 Submitted by: maintainer
Notes
Notes: svn path=/head/; revision=45359
Diffstat (limited to 'databases/adodb')
-rw-r--r--databases/adodb/Makefile1
-rw-r--r--databases/adodb/files/patch-adodb-odbc.inc.php20
2 files changed, 1 insertions, 20 deletions
diff --git a/databases/adodb/Makefile b/databases/adodb/Makefile
index d9e9e3f88014..658575913264 100644
--- a/databases/adodb/Makefile
+++ b/databases/adodb/Makefile
@@ -7,6 +7,7 @@
PORTNAME= adodb
PORTVERSION= 1.20
+PORTREVISION= 1
CATEGORIES= databases www
MASTER_SITES= http://phplens.com/lens/dl/
DISTNAME= ${PORTNAME}120
diff --git a/databases/adodb/files/patch-adodb-odbc.inc.php b/databases/adodb/files/patch-adodb-odbc.inc.php
deleted file mode 100644
index 159b2488a12e..000000000000
--- a/databases/adodb/files/patch-adodb-odbc.inc.php
+++ /dev/null
@@ -1,20 +0,0 @@
---- adodb-odbc.inc.php.orig Wed Jun 6 06:17:56 2001
-+++ adodb-odbc.inc.php Thu Jun 28 10:00:41 2001
-@@ -310,7 +310,7 @@
- {
- if ($this->_numOfRows != 0 && !$this->EOF) {
- $this->_currentRow++;
-- if (odbc_fetch_into($this->_queryID,0,$this->fields)) return true;
-+ if (odbc_fetch_into($this->_queryID,$row=0,$this->fields)) return true;
- }
- $this->EOF = true;
- return false;
-@@ -318,7 +318,7 @@
-
- function _fetch($ignore_fields=false)
- {
-- return odbc_fetch_into($this->_queryID,0,$this->fields);
-+ return odbc_fetch_into($this->_queryID,$row=0,$this->fields);
- }
-
- function _close() {