diff options
author | Akinori MUSHA <knu@FreeBSD.org> | 2001-06-12 14:45:13 +0000 |
---|---|---|
committer | Akinori MUSHA <knu@FreeBSD.org> | 2001-06-12 14:45:13 +0000 |
commit | c5c634f63f9cd479582dbeca53ffe0fef60c8cc4 (patch) | |
tree | 105f2162c0d9215c11e2c9216eb5f968b70a78c7 /japanese/postgresql-tcltk/files | |
parent | Update to version 1.5c (diff) |
Update to 7.1.2.
PR: ports/28094
Submitted by: Saito Tomokatsu <saito@a2z.co.jp>
Running scripts/configure.postgresql at the post-extract stage is too
late. Do it at pre-everything to reflect added BUILD_DEPENDS entries.
Diffstat (limited to 'japanese/postgresql-tcltk/files')
-rw-r--r-- | japanese/postgresql-tcltk/files/patch-bd | 11 | ||||
-rw-r--r-- | japanese/postgresql-tcltk/files/patch-jdbc1-statement | 13 |
2 files changed, 0 insertions, 24 deletions
diff --git a/japanese/postgresql-tcltk/files/patch-bd b/japanese/postgresql-tcltk/files/patch-bd deleted file mode 100644 index 95e6d276b744..000000000000 --- a/japanese/postgresql-tcltk/files/patch-bd +++ /dev/null @@ -1,11 +0,0 @@ ---- ./configure.orig Sat Apr 14 06:22:46 2001 -+++ ./configure Thu May 3 21:42:09 2001 -@@ -3053,7 +3053,7 @@ - - if test "$with_tk" = yes; then - # Extract the first word of "wish", so it can be a program name with args. --set dummy wish; ac_word=$2 -+set dummy wish8.0jp; ac_word=$2 - echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 - echo "configure:3059: checking for $ac_word" >&5 - if eval "test \"`echo '$''{'ac_cv_path_WISH'+set}'`\" = set"; then diff --git a/japanese/postgresql-tcltk/files/patch-jdbc1-statement b/japanese/postgresql-tcltk/files/patch-jdbc1-statement deleted file mode 100644 index 41a9a2971f5a..000000000000 --- a/japanese/postgresql-tcltk/files/patch-jdbc1-statement +++ /dev/null @@ -1,13 +0,0 @@ ---- src/interfaces/jdbc/org/postgresql/jdbc1/Statement.java~ Fri Feb 23 19:12:23 2001 -+++ src/interfaces/jdbc/org/postgresql/jdbc1/Statement.java Wed Apr 18 08:51:03 2001 -@@ -288,8 +288,8 @@ - */ - public java.sql.ResultSet getResultSet() throws SQLException - { -- if (result != null) && ((org.postgresql.ResultSet)result.reallyResultSet()) -- return result; -+ if (result != null && ((org.postgresql.ResultSet)result).reallyResultSet()) -+ return result; - return null; - } - |