Re: [gtk-list] Can't compile GLib in Mac OS X

2008-08-11 Thread Michael Tüxen
On Aug 11, 2008, at 1:22 AM, Serge Humphrey wrote: But I don't understand. The first thing (CPPFLAGS=-l/usr/local/include) is exactly the same as the second. It is not. The correct one uses a capital I. The one you used used a small L, which is not correct. -Confused Bob On Sun, Aug 10,

Re: [gtk-list] Can't compile GLib in Mac OS X

2008-08-10 Thread Serge Humphrey
When I add 'CPPFLAGS=-l/usr/local/include' to the configure arguments, so it is like './configure CFLAGS=-I/usr/local/include -L/usr/local/lib CPPFLAGS=-l/usr/local/include LDFLAGS=-L/usr/local/lib', it starts configuring and spits out the following error message: configure: error: C compiler

Re: [gtk-list] Can't compile GLib in Mac OS X

2008-08-10 Thread Michael Tüxen
I guess CPPFLAGS=-l/usr/local/include should read CPPFLAGS=-I/usr/local/include Best regards Michael On Aug 10, 2008, at 9:51 PM, Serge Humphrey wrote: When I add 'CPPFLAGS=-l/usr/local/include' to the configure arguments, so it is like './configure CFLAGS=-I/usr/local/include -L/usr/local/lib

Re: [gtk-list] Can't compile GLib in Mac OS X

2008-08-10 Thread Serge Humphrey
But I don't understand. The first thing (CPPFLAGS=-l/usr/local/include) is exactly the same as the second. -Confused Bob On Sun, Aug 10, 2008 at 5:48 PM, Michael Tüxen [EMAIL PROTECTED] wrote: I guess CPPFLAGS=-l/usr/local/include should read CPPFLAGS=-I/usr/local/include Best regards

Re: [gtk-list] Can't compile GLib in Mac OS X

2008-08-10 Thread mpsuzuki
Hi, I'm quite sorry for confusing you (and thank Michael for correction) by my mistype (-l was wrong, -I is correct). The options I intended was: env CPPFLAGS=-I/usr/local/include \ LDFLAGS=-L/usr/local/lib \ CFLAGS=-I/usr/local/include -L/usr/local/lib \ ./configure ... How about

Re: [gtk-list] Can't compile GLib in Mac OS X

2008-08-09 Thread mpsuzuki
Hi, I remember, configure of glib has no option to specify the location of gettext explicitly. Thus, the developer with gettext in /usr/local should modify CFLAGS-families aslike CFLAGS=-I/usr/local/include -L/usr/local/lib CPPFLAGS=-I/usr/local/include