Re: GCC3.1 internal compiler error when compilingXFree86-4-libraries

2002-06-10 Thread Michael D. Harnois
On Mon, 2002-06-10 at 12:13, David O'Brien wrote: > On Mon, Jun 10, 2002 at 12:02:41PM -0500, Michael D. Harnois wrote: > > The libraries build for me without incident. However, anything which > > tries to link against libGLU generates this error for me: > > Your current is too old. Please do a

Re: GCC3.1 internal compiler error when compilingXFree86-4-libraries

2002-06-10 Thread Michael D. Harnois
The libraries build for me without incident. However, anything which tries to link against libGLU generates this error for me: /usr/X11R6/lib/libGLU.so: undefined reference to `operator new[](unsigned)' /usr/X11R6/lib/libGLU.so: undefined reference to `vtable for __cxxabiv1::__si_class_type_info'

Re: GCC3.1 internal compiler error when compilingXFree86-4-libraries

2002-06-09 Thread Yamada Ken Takeshi
Thank you! By eliminating "-O" option, I could make XFree86-4-Server which works. "-O -pipe" was in /usr/share/mk/sys.mk. To Unsubscribe: send mail to [EMAIL PROTECTED] with "unsubscribe freebsd-current" in the body of the message

Re: GCC3.1 internal compiler error when compilingXFree86-4-libraries

2002-06-08 Thread Yamada Ken Takeshi
Thank you! Your patch-z32 made me happy a little. When can I compile XFree86-4-Server-4.2.0_2 with -current? It gives me "internal compiler error", too as below. I had thought it uses XFree86-4-libraries port which was wrong. ===> Building for XFree86-Server-4.2.0_2 Building Release 6

Re: GCC3.1 internal compiler error when compilingXFree86-4-libraries

2002-06-08 Thread Yamada Ken Takeshi
I have the following error when I try to install it. Is it unique only to me? ===> Installing for XFree86-libraries-4.2.0_1 ===> XFree86-libraries-4.2.0_1 depends on executable: mkhtmlindex - found ===> XFree86-libraries-4.2.0_1 depends on shared library: freetype.9 - found : :

Re: GCC3.1 internal compiler error when compilingXFree86-4-libraries

2002-06-04 Thread Michael D. Harnois
> > you replace > > #pragma weak foo = bar > > with either > > #pragma weak foo = "bar" /* this is easier */ > > or > > if __GNUC__ >= 3 > > int foo() __attribute__ ((weak, alias ("bar"))); > > #endif /* __GNUC__ */ > > . I tried the quotation mark fix, and all it does