mirror of
https://github.com/Stichting-MINIX-Research-Foundation/pkgsrc-ng.git
synced 2025-08-03 17:59:07 -04:00
26 lines
722 B
Plaintext
26 lines
722 B
Plaintext
$NetBSD: patch-al,v 1.2 2012/06/13 08:15:15 mef Exp $
|
|
|
|
Convert varargs-macros to old-style macros, to make the package
|
|
compile when using gcc 2.95.
|
|
|
|
--- libfstt/table_ebdt.cc.orig Sat Feb 14 22:50:02 2004
|
|
+++ libfstt/table_ebdt.cc Sat Feb 14 22:50:21 2004
|
|
@@ -52,7 +52,7 @@
|
|
case 3: // obsolete
|
|
case 4: // unsupported
|
|
default:
|
|
- debug("EBDT table bitmap format = %d\n", format);
|
|
+ debug1("EBDT table bitmap format = %d\n", format);
|
|
return -1;
|
|
case 5: // metrics in EBLC instead
|
|
debug("EBDT table bitmap format = 5\n");
|
|
@@ -102,7 +102,7 @@
|
|
}
|
|
case 8:
|
|
case 9: // composite bitmap
|
|
- debug("EBDT table bitmap format = %d\n", format);
|
|
+ debug1("EBDT table bitmap format = %d\n", format);
|
|
break;
|
|
}
|
|
|