Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 14 Mar 2005 20:05:01 +0100
From:      David Nies <davidnies@web.de>
To:        freebsd-ports@freebsd.org
Subject:   FreeBSD Port: xfce4-4.2.0 
Message-ID:  <4235E05D.9060703@web.de>

next in thread | raw e-mail | index | archive | help
Hello!

I've had the same problem, but I found a fix for the undefined reference
- at least it worked on my machine:

FIX:

Go to the ports/x11-wm/xfce4-desktop/work/xfdesktop-4.2.0/src directory.
In this directory, edit the file: xfce-desktop.c. Go to line number 137,
the line before ``count_elements(const gchar **list)''. This line should
be ``G_INLINE_FUNC gint'', and replace it with ``static inline gint''.
This fixed the problem. It compiled correctly and runs without problems.

'DESCRIPTION':

G_INLINE_FUNC is a definition on how to compile inline functions in 
glib12. I didn't find such a definition in glib-2.0. One of the possible 
definitions of G_INLINE_FUNC is ``static inline'', and this one worked 
for me.

Greets,
	David



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?4235E05D.9060703>