[Epiphany] Compilation choked on va_copy()



Hello,

  On my system (Debian 3.0, GCC 2.95.4, glibc 2.2.5, Linux 2.4.20, 
glib 2.2.2), compilation of Epiphany version 0.7.3 failed on the file
lib/ephy-node.c due to the implicit definition of va_copy (line 123). 
Changing this to G_VA_COPY seems to correct the problem (it allows
compilation to finish, at least).

Michael Culbertson

----------------------------------------

--- lib/ephy-node.c.orig        Mon Aug 18 16:06:32 2003
+++ lib/ephy-node.c     Mon Aug 18 16:06:46 2003
@@ -120,7 +120,7 @@
 
        if (data->type != type) return;
 
-        va_copy(valist, user_data[0]);
+        G_VA_COPY(valist, user_data[0]);
 
        switch (data->type)
        {



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]