Re: [Epiphany] Debian Woody Backport compile problem
- From: Dan Damian <dandamian gmx net>
- To: Sebastian Heinlein <liste pimpzkru de>
- Cc: epiphany mozdev org
- Subject: Re: [Epiphany] Debian Woody Backport compile problem
- Date: Thu, 6 Mar 2003 18:03:01 +0200
Hi,
The attached patch should fix your problem. I recompiled edd's debs[1]
on woody a couple of weeks ago. Except this small compilation glitch
they have been surprinsingly stable for me.
[1] deb-src http://debian.usefulinc.com/gnome ./
-dan
On Thu, Mar 06, 2003 at 11:05:16AM +0100, Sebastian Heinlein wrote:
> Hello,
>
> i've tried to compile the epiphany-browser package of unstable against
> woody. the mozilla-snapshot build worked fine. but i cannot compile
> epiphany with gcc-2.95. i always get the following error:
>
> In file included from mozilla-embed.cpp:23:
> ../../lib/ephy-debug.h:36: badly punctuated parameter list in `#define'
> make[5]: *** [mozilla-embed.lo] Fehler 1
>
> the corresponding lines are:
>
> #ifdef DISABLE_LOGGING
> #define LOG(msg, ...)
> #else
> #define LOG(msg, ...) \
> g_log (G_LOG_DOMAIN, G_LOG_LEVEL_DEBUG, \
> "[ %s ] " msg, \
> __FILE__, ##__VA_ARGS__);
> #endif
>
>
> since i don't have any coding skills, i would be very happy about any
> hint or help.
>
> sebastian
>
>
> _______________________________________________
> Epiphany mailing list
> Epiphany@mozdev.org
> http://www.mozdev.org/mailman/listinfo/epiphany
--- ../../cvs/epiphany/lib/ephy-debug.h Thu Feb 27 18:26:56 2003
+++ ephy-debug.h Wed Feb 26 17:58:17 2003
@@ -33,9 +33,9 @@
#endif
#ifdef DISABLE_LOGGING
-#define LOG(msg, ...)
+#define LOG(msg, args...)
#else
-#define LOG(msg, ...) \
+#define LOG(msg, args...) \
g_log (G_LOG_DOMAIN, G_LOG_LEVEL_DEBUG, \
"[ %s ] " msg, \
__FILE__, ##__VA_ARGS__);
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]