diff options
author | skrll <skrll> | 2004-12-05 07:32:17 +0000 |
---|---|---|
committer | skrll <skrll> | 2004-12-05 07:32:17 +0000 |
commit | 8d1c0c89d1ea125bedd78dcaaee45f06fdd1fed8 (patch) | |
tree | 5bbc862fcfd966c523333ffb7075fafbc408eafc /emulators | |
parent | 0b4760380b0eaed69b61f33037b0a41a569d478c (diff) | |
download | pkgsrc-8d1c0c89d1ea125bedd78dcaaee45f06fdd1fed8.tar.gz |
Fixes to ctype macro usage so that this builds on -current.
Diffstat (limited to 'emulators')
-rw-r--r-- | emulators/tme/distinfo | 6 | ||||
-rw-r--r-- | emulators/tme/patches/patch-ac | 13 | ||||
-rw-r--r-- | emulators/tme/patches/patch-ad | 13 | ||||
-rw-r--r-- | emulators/tme/patches/patch-ae | 22 |
4 files changed, 50 insertions, 4 deletions
diff --git a/emulators/tme/distinfo b/emulators/tme/distinfo index 8fff49a2d21..658f7e6821b 100644 --- a/emulators/tme/distinfo +++ b/emulators/tme/distinfo @@ -1,7 +1,9 @@ -$NetBSD: distinfo,v 1.1.1.1 2004/01/23 08:21:56 skrll Exp $ +$NetBSD: distinfo,v 1.2 2004/12/05 07:32:17 skrll Exp $ SHA1 (tme-0.2.tar.gz) = b4a42c1ef65836fb3da2226293fc631a98db5f08 Size (tme-0.2.tar.gz) = 1183794 bytes SHA1 (patch-aa) = 49dd1b5505990522011071752544209c1540ed21 SHA1 (patch-ab) = 762aca8120b6864e9609ab79ae1385a783ffd9e7 -SHA1 (patch-ac) = 03f61f24a02e4380ef6e75845f59de380e022ffa +SHA1 (patch-ac) = c6c62adabf588b8445b724cf5da93a36e2cc1124 +SHA1 (patch-ad) = efb8815d0a1cd501a10268b9ef0a4f4fea16678c +SHA1 (patch-ae) = 2f472a55f5afd1c0079349ce49bd3eb251ea9d76 diff --git a/emulators/tme/patches/patch-ac b/emulators/tme/patches/patch-ac index e4b3cc4e772..e24b5a097c5 100644 --- a/emulators/tme/patches/patch-ac +++ b/emulators/tme/patches/patch-ac @@ -1,6 +1,6 @@ -$NetBSD: patch-ac,v 1.1.1.1 2004/01/23 08:21:59 skrll Exp $ +$NetBSD: patch-ac,v 1.2 2004/12/05 07:32:17 skrll Exp $ ---- libtme/module.c.orig Sat Aug 23 14:48:30 2003 +--- libtme/module.c.orig 2003-08-23 14:48:30.000000000 +0100 +++ libtme/module.c @@ -107,7 +107,7 @@ _tme_modules_find(const char *top_name, FILE *modules_index; @@ -11,3 +11,12 @@ $NetBSD: patch-ac,v 1.1.1.1 2004/01/23 08:21:59 skrll Exp $ /* get the next search path environment variable value: */ search_path = NULL; +@@ -230,7 +230,7 @@ tme_module_open(const char *module_fake_ + for (p1 = module_raw_name; + (c = *p1) != '\0'; + p1++) { +- if (!isalnum(c)) { ++ if (!isalnum((unsigned char)c)) { + *p1 = '_'; + if (c == '/' + && first_slash == NULL) { diff --git a/emulators/tme/patches/patch-ad b/emulators/tme/patches/patch-ad new file mode 100644 index 00000000000..de250794f3d --- /dev/null +++ b/emulators/tme/patches/patch-ad @@ -0,0 +1,13 @@ +$NetBSD: patch-ad,v 1.1 2004/12/05 07:32:17 skrll Exp $ + +--- libtme/misc.c.orig 2003-06-27 22:00:21.000000000 +0100 ++++ libtme/misc.c +@@ -83,7 +83,7 @@ tme_misc_tokenize(const char *string, + + /* if this is a token delimiter: */ + if (c == '\0' +- || isspace(c) ++ || isspace((unsigned char)c) + || c == comment) { + + /* if we had been collecting a token, it's finished: */ diff --git a/emulators/tme/patches/patch-ae b/emulators/tme/patches/patch-ae new file mode 100644 index 00000000000..f9e97abd07d --- /dev/null +++ b/emulators/tme/patches/patch-ae @@ -0,0 +1,22 @@ +$NetBSD: patch-ae,v 1.1 2004/12/05 07:32:17 skrll Exp $ + +--- serial/serial-kb.c.orig 2003-10-16 03:48:25.000000000 +0100 ++++ serial/serial-kb.c +@@ -966,7 +966,7 @@ TME_ELEMENT_X_NEW_DECL(tme_serial_,kb,ke + } + for (p1 = line_buffer; + ((c = *(p1++)) != '\0' +- && isspace(c));); ++ && isspace((unsigned char)c));); + if (c == '\0' + || c == '#') { + continue; +@@ -1049,7 +1049,7 @@ TME_ELEMENT_X_NEW_DECL(tme_serial_,kb,ke + } + for (p1 = line_buffer; + ((c = *(p1++)) != '\0' +- && isspace(c));); ++ && isspace((unsigned char)c));); + if (c == '\0' + || c == '#') { + continue; |