Sun Apr 14 02:00:15 2013 UTC ()
Try to work around a fatal compiler diagnostic in the Solaris build.


(dholland)
diff -r1.15 -r1.16 pkgsrc/emulators/tme/distinfo
diff -r1.6 -r1.7 pkgsrc/emulators/tme/patches/patch-aa

cvs diff -r1.15 -r1.16 pkgsrc/emulators/tme/distinfo (expand / switch to context diff)
--- pkgsrc/emulators/tme/distinfo 2013/02/26 23:39:18 1.15
+++ pkgsrc/emulators/tme/distinfo 2013/04/14 02:00:15 1.16
@@ -1,9 +1,9 @@
-$NetBSD: distinfo,v 1.15 2013/02/26 23:39:18 joerg Exp $
+$NetBSD: distinfo,v 1.16 2013/04/14 02:00:15 dholland Exp $
 
 SHA1 (tme-0.8.tar.gz) = dd4f3421c20ceed548c5328a21dbb26e80f46b9c
 RMD160 (tme-0.8.tar.gz) = 6bd505c5fa7810d37f436883383c4ba655df2ded
 Size (tme-0.8.tar.gz) = 2100123 bytes
-SHA1 (patch-aa) = 41d42a5bbad9f87bce4bada14ca482f5e8f79d9a
+SHA1 (patch-aa) = 587f7a3d61a6b37e65d625f1bab0f3c2d740bba9
 SHA1 (patch-ab) = 3825986759da24c628b870a1493e4d37ec37358f
 SHA1 (patch-ac) = ba581f10ec54b056564a7a84a5833f2d854b55df
 SHA1 (patch-ad) = e90986262fe9d883ae64fe01dfb4ae07bde6a916

cvs diff -r1.6 -r1.7 pkgsrc/emulators/tme/patches/Attic/patch-aa (expand / switch to context diff)
--- pkgsrc/emulators/tme/patches/Attic/patch-aa 2013/02/26 23:39:18 1.6
+++ pkgsrc/emulators/tme/patches/Attic/patch-aa 2013/04/14 02:00:15 1.7
@@ -1,5 +1,10 @@
-$NetBSD: patch-aa,v 1.6 2013/02/26 23:39:18 joerg Exp $
+$NetBSD: patch-aa,v 1.7 2013/04/14 02:00:15 dholland Exp $
 
+- XXX: some unexplained/undocumented libtool fix
+- fix printf formats
+- explicitly ignore the variable "rc" in tme_module_close() as the
+Sun compiler is objecting to it being assigned and not used.
+
 --- libtme/module.c.orig	2010-06-05 19:04:42.000000000 +0000
 +++ libtme/module.c
 @@ -62,11 +62,13 @@ _TME_RCSID("$Id: module.c,v 1.10 2010/06
@@ -52,3 +57,10 @@
      tme_free_string_array(tokens, -1);
      return (ENOENT);
    }
+@@ -400,5 +402,6 @@ tme_module_close(void *_module)
+   tme_free(module);
+ 
+   /* XXX assume success: */
++  (void)rc;
+   return (TME_OK);
+ }