diff options
author | sheldonh <sheldonh@FreeBSD.org> | 2003-05-16 21:50:27 +0800 |
---|---|---|
committer | sheldonh <sheldonh@FreeBSD.org> | 2003-05-16 21:50:27 +0800 |
commit | b3aa5f15612fec8d43a749d01246955e271d0557 (patch) | |
tree | 886bf0af2466f670ef4804eeeb858125984fa7dc /databases | |
parent | 08a1a65b932187e5646fd48a155c88d408b40765 (diff) | |
download | freebsd-ports-gnome-b3aa5f15612fec8d43a749d01246955e271d0557.tar.gz freebsd-ports-gnome-b3aa5f15612fec8d43a749d01246955e271d0557.tar.zst freebsd-ports-gnome-b3aa5f15612fec8d43a749d01246955e271d0557.zip |
Update to 1.00:
* Numerous fixes relating to binary data and placeholders.
* Works properly with freetds version in ports tree (0.61).
PR: ports/52062
Submitted by: "Philip M. Gollucci" <philip@p6m7g8.com>
Diffstat (limited to 'databases')
-rw-r--r-- | databases/p5-DBD-Sybase/Makefile | 3 | ||||
-rw-r--r-- | databases/p5-DBD-Sybase/distinfo | 2 | ||||
-rw-r--r-- | databases/p5-DBD-Sybase/files/patch-Makefile.PL | 32 |
3 files changed, 23 insertions, 14 deletions
diff --git a/databases/p5-DBD-Sybase/Makefile b/databases/p5-DBD-Sybase/Makefile index cb2e8ab42387..95abca0d13e5 100644 --- a/databases/p5-DBD-Sybase/Makefile +++ b/databases/p5-DBD-Sybase/Makefile @@ -6,8 +6,7 @@ # PORTNAME= DBD-Sybase -PORTVERSION= 0.94 -PORTREVISION= 1 +PORTVERSION= 1.00 CATEGORIES= databases perl5 MASTER_SITES= ${MASTER_SITE_PERL_CPAN} MASTER_SITE_SUBDIR= DBD diff --git a/databases/p5-DBD-Sybase/distinfo b/databases/p5-DBD-Sybase/distinfo index f21a925d4fe1..389cd2e47ca0 100644 --- a/databases/p5-DBD-Sybase/distinfo +++ b/databases/p5-DBD-Sybase/distinfo @@ -1 +1 @@ -MD5 (DBD-Sybase-0.94.tar.gz) = 66e08a191c89f3cb528337ca56ac519e +MD5 (DBD-Sybase-1.00.tar.gz) = dd54243c6aefa22bafdf7d9752c1489f diff --git a/databases/p5-DBD-Sybase/files/patch-Makefile.PL b/databases/p5-DBD-Sybase/files/patch-Makefile.PL index c5d8b72f510f..040e6559557c 100644 --- a/databases/p5-DBD-Sybase/files/patch-Makefile.PL +++ b/databases/p5-DBD-Sybase/files/patch-Makefile.PL @@ -1,6 +1,15 @@ ---- Makefile.PL.orig Thu May 10 17:56:44 2001 -+++ Makefile.PL Thu May 10 17:58:36 2001 -@@ -109,13 +109,13 @@ +--- Makefile.PL.orig Mon Mar 31 18:55:11 2003 ++++ Makefile.PL Thu May 15 20:44:09 2003 +@@ -22,7 +22,7 @@ + + configure(); + +-configPwd(); ++#configPwd(); + + my $lddlflags = $Config{lddlflags}; + $lddlflags = "-L$SYBASE/lib $lddlflags" unless $^O eq 'VMS'; +@@ -111,13 +111,13 @@ } else { my $extra = getExtraLibs($SYBASE, $attr{EXTRA_LIBS}); if($file) { @@ -11,11 +20,12 @@ - } - if($^O =~ /linux|freebsd/i) { - $lib_string =~ s/ltcl/lsybtcl/; -+ $lib_string = "-L$SYBASE/lib -lct -lintl $extra -lm"; - } -+# if($^O =~ /linux|freebsd/i) { -+# $lib_string =~ s/ltcl/lsybtcl/; -+# } - } - - my $config_sitearch = $Config{sitearchexp}; +- } ++ $lib_string = "-L$SYBASE/lib -lct -lintl $extra -lm"; ++ } ++# if($^O =~ /linux|freebsd/i) { ++# $lib_string =~ s/ltcl/lsybtcl/; ++# } + if($attr{BUILD_TYPE} == 64) { + $inc_string .= ' -DSYB_LP64'; + print "Running in 64bit mode - looking for '64' libraries...\n"; |