summaryrefslogtreecommitdiff
path: root/fonts/ttmkfdir2
diff options
context:
space:
mode:
authorwiz <wiz@pkgsrc.org>2004-04-03 11:28:53 +0000
committerwiz <wiz@pkgsrc.org>2004-04-03 11:28:53 +0000
commit59dc20ae2f8ddc1083f97a8b79c9f0a017568d33 (patch)
treeb0befda051d221a0b7f91a65f71ab6faa0a8c95c /fonts/ttmkfdir2
parent711715e9b96365a82c6be1f019135c058680ab46 (diff)
downloadpkgsrc-59dc20ae2f8ddc1083f97a8b79c9f0a017568d33.tar.gz
Fix compilation with g++2, per a hint from hubertf.
Diffstat (limited to 'fonts/ttmkfdir2')
-rw-r--r--fonts/ttmkfdir2/distinfo3
-rw-r--r--fonts/ttmkfdir2/patches/patch-ad26
2 files changed, 28 insertions, 1 deletions
diff --git a/fonts/ttmkfdir2/distinfo b/fonts/ttmkfdir2/distinfo
index 495996c69e0..89f5817265c 100644
--- a/fonts/ttmkfdir2/distinfo
+++ b/fonts/ttmkfdir2/distinfo
@@ -1,7 +1,8 @@
-$NetBSD: distinfo,v 1.1.1.1 2004/03/29 22:04:09 recht Exp $
+$NetBSD: distinfo,v 1.2 2004/04/03 11:28:53 wiz Exp $
SHA1 (ttmkfdir2.20021109.tar.bz2) = bee1944ce3e5b6c4503a14e6429737cc558a24c0
Size (ttmkfdir2.20021109.tar.bz2) = 701900 bytes
SHA1 (patch-aa) = 513c6922cfa60a6c2dbf332a5d65e0277bd89929
SHA1 (patch-ab) = d22b1eb7de9c2ba622583bb2e2fe6c4ccd4b26d2
SHA1 (patch-ac) = 23eb6e500522a1ce826a9b0899d7afff6017d096
+SHA1 (patch-ad) = 0c328908ffae3397293ff6b00094444e23164788
diff --git a/fonts/ttmkfdir2/patches/patch-ad b/fonts/ttmkfdir2/patches/patch-ad
new file mode 100644
index 00000000000..0c85ea076d5
--- /dev/null
+++ b/fonts/ttmkfdir2/patches/patch-ad
@@ -0,0 +1,26 @@
+$NetBSD: patch-ad,v 1.1 2004/04/03 11:28:53 wiz Exp $
+
+--- directory.cpp.orig Tue Jan 11 01:44:44 2000
++++ directory.cpp
+@@ -5,6 +5,8 @@
+
+ #include "directory.h"
+
++using namespace std;
++
+ directory::~directory (void)
+ {
+ }
+@@ -48,8 +50,8 @@ ttfdirectory::select (const char *name)
+ /* we make the decision by the extension of the file name */
+ return (((len = strlen (name)) > 4) &&
+ (name[len - 4] == '.') &&
+- (std::toupper(name[len - 3]) == 'T') &&
+- (std::toupper(name[len - 2]) == 'T') &&
+- ((std::toupper(name[len - 1]) == 'F') ||
+- (std::toupper(name[len - 1]) == 'C')));
++ (toupper(name[len - 3]) == 'T') &&
++ (toupper(name[len - 2]) == 'T') &&
++ ((toupper(name[len - 1]) == 'F') ||
++ (toupper(name[len - 1]) == 'C')));
+ }