Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 09 May 2007 17:14:44 +0900
From:      Alexander Nedotsukov <bland@FreeBSD.org>
To:        Ernest Sales <ersaloz@gmail.com>
Cc:        freebsd-gnome@FreeBSD.org, 'Leslie Jensen' <leslie@eskk.nu>
Subject:   Re: Inkscape build failure [was: error configuring inkscape breaks build of gnome2-fifth-toe]
Message-ID:  <464182F4.3030102@FreeBSD.org>
In-Reply-To: <000101c791ff$937317f0$2101a8c0@asinusaureus>
References:  <000101c791ff$937317f0$2101a8c0@asinusaureus>

next in thread | previous in thread | raw e-mail | index | archive | help
It seems you have a problem with devel/boehm-gc installation.
Basically you have to succeed with this:

$cat > test.cpp
             # include <gc/gc.h>
             #include <stdio.h>
             extern unsigned GC_version;
             int main(void){
                 unsigned min = ((6 << 16) | (4 << 8) | 0);
                 printf("%d.%d.%d ",GC_version >> 16, (GC_version >> 8) 
& 0xFF, GC_version & 0xFF);
                 if (GC_version>=min) return 0;
                 return 1;
             }
^D
$c++ -o conftest -O -pipe -march=pentium-m -fconserve-space 
-I/usr/local/include -I/usr/local/include/freetype2 
-I/usr/X11R6/include  -L/usr/local/lib -L/usr/X11R6/lib -pthread 
test.cpp -lgc
$./conftest
6.8.255
$

Try to rebuild boehm-gc (even better do it with default options set). It 
this does not help show us backtrace.

Alexander.

Ernest Sales wrote:
> On October 3, 2006 Leslie Jensen wrote:
>
> [complete message here:
> http://lists.freebsd.org/mailman/htdig/freebsd-gnome/2006-October/015401.htm
> l]
>
> A week ago I posted a message in this list with exactly the same problem.
>
> Here it is:
> http://lists.freebsd.org/pipermail/freebsd-gnome/2007-May/017435.html
>
> Leslie,
>
> Did you manage to solve this issue?
>
> Everybody,
>
> This looks like a broken port. Leslie and I, as good boys, followed the
> advised steps and got no answer. Come on!
>
> Cheers.
>
> ---------------------------------------------------------------
> plain text emails preferred, cf http://expita.com/nomime.html
>
> _______________________________________________
> freebsd-gnome@freebsd.org mailing list
> http://lists.freebsd.org/mailman/listinfo/freebsd-gnome
> To unsubscribe, send any mail to "freebsd-gnome-unsubscribe@freebsd.org"
>   




Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?464182F4.3030102>