[112271] trunk/dports/lang/ici

jmr at macports.org jmr at macports.org
Wed Oct 16 02:22:47 PDT 2013


Revision: 112271
          https://trac.macports.org/changeset/112271
Author:   jmr at macports.org
Date:     2013-10-16 02:22:47 -0700 (Wed, 16 Oct 2013)
Log Message:
-----------
ici: fix build failure due to va_list misuse

Modified Paths:
--------------
    trunk/dports/lang/ici/Portfile

Added Paths:
-----------
    trunk/dports/lang/ici/files/
    trunk/dports/lang/ici/files/call.c.patch

Modified: trunk/dports/lang/ici/Portfile
===================================================================
--- trunk/dports/lang/ici/Portfile	2013-10-16 07:53:57 UTC (rev 112270)
+++ trunk/dports/lang/ici/Portfile	2013-10-16 09:22:47 UTC (rev 112271)
@@ -18,6 +18,8 @@
 master_sites     sourceforge
 checksums        md5 4511baa2731ed327b5730f414b3623ba
 
+patchfiles       call.c.patch
+
 use_configure    no
 build.target
 destroot.destdir PREFIX=${destroot}${prefix} \

Added: trunk/dports/lang/ici/files/call.c.patch
===================================================================
--- trunk/dports/lang/ici/files/call.c.patch	                        (rev 0)
+++ trunk/dports/lang/ici/files/call.c.patch	2013-10-16 09:22:47 UTC (rev 112271)
@@ -0,0 +1,11 @@
+--- call.c.orig	2003-07-09 13:53:17.000000000 +1000
++++ call.c	2013-10-16 20:20:28.000000000 +1100
+@@ -185,7 +185,7 @@ ici_callv(ici_str_t *func_name, char *ty
+     if (types[0] != '\0' && types[1] == '@')
+     {
+         va_list tmp;
+-        tmp = va;
++        va_copy(tmp, va);
+         member_obj = va_arg(tmp, ici_obj_t *);
+         if ((func_obj = ici_fetch(member_obj, func_name)) == objof(&o_null))
+         {
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.macosforge.org/pipermail/macports-changes/attachments/20131016/656be4b7/attachment-0001.html>


More information about the macports-changes mailing list