Re: GNUstep-make and C++ projects...

2008-03-01 Thread Jiva DeVoe
I'll bet that's the problem, sorry for the bother. I'm running 1.13 I'll download the source and give it a shot. Thanks. On Mar 1, 2008, at 5:44 PM, Nicola Pero wrote: Which version of gnustep-make are you using ? You may want to try 2.0.4 (the latest stable release). ;-) ftp://ftp.gnustep

Re: GNUstep-make and C++ projects...

2008-03-01 Thread Helge Hess
On 02.03.2008, at 00:47, Jiva DeVoe wrote: Y'know... I looked at scons a year or so back.. This comment was an exclusive for Nicola ;-) Thanks, Helge -- Helge Hess http://www.helgehess.eu/ ___ Gnustep-dev mailing list Gnustep-dev@gnu.org http://

Re: GNUstep-make and C++ projects...

2008-03-01 Thread Nicola Pero
Which version of gnustep-make are you using ? You may want to try 2.0.4 (the latest stable release). ;-) ftp://ftp.gnustep.org/pub/gnustep/core/gnustep-make-2.0.4.tar.gz Thanks -Original Message- From: Jiva DeVoe <[EMAIL PROTECTED]> Sent: Sunday, March 2, 2008 12:43am To: [EMAIL PROTE

Re: GNUstep-make and C++ projects...

2008-03-01 Thread Jiva DeVoe
Y'know... I looked at scons a year or so back.. and it's cool and everything... but ultimately... I'm looking at coming back to Make... which is one reason I'm looking at GNUstep make... this may seem kinda like a perversion of what GNUstep make is designed around... but from what I've seen

Re: GNUstep-make and C++ projects...

2008-03-01 Thread Jiva DeVoe
Here's the output of that command: $ make CC=g++ messages=yes Making all for ctool LogTest... g++ -rdynamic -o shared_obj/LogTest \ \ -L/home/jiva/GNUstep/Library/Libraries -L/usr/local/lib/ GNUstep/Local/Library/Libraries -L/usr/local/lib/GNUstep/Network/ Librar

Re: GNUstep-make and C++ projects...

2008-03-01 Thread Helge Hess
On 01.03.2008, at 14:19, Helge Hess wrote: Hm, sweet. I think I give it another try today and see what was wrong with using gsmake for me. I just tried again with gsmake2 and everything works like a charm. The only thing I had to do was setting LD: ---snip--- LD=g++ -include GNUmakefile.

Next release

2008-03-01 Thread Adam Fedor
It's time for another release. I'll make an unstable release of the core libraries late next week. I also plan a stable base release, but I will not make a stable release of the gui libraries, unless there is some important patch the someone wants there (or better yet, patch the stable b

Re: gnustep on windows

2008-03-01 Thread Xavier Glattard
Fred Kiefer gmx.de> writes: > This looks rather nice and it shows that I was wrong, there is a bit > more X specific code inside of CairoContext. Did you get this code to > work? I remember that there was also some complicated extension needed > for the configure script, wasn't it? > > And you d

Re: GNUstep-make and C++ projects...

2008-03-01 Thread Nicola Pero
Thanks Jiva here is what I get -- [EMAIL PROTECTED] C++]$ make messages=yes CC=g++ This is gnustep-make 2.0.4. Type 'make print-gnustep-make-help' for help. Making all for ctool LogTest... cd .; \ /usr/GNUstep/System/Library/Makefiles/mkinstalldirs ./obj g++ source.cc -c \ -

Re: GNUstep-make and C++ projects...

2008-03-01 Thread Tim McIntosh
On Mar 1, 2008, at 7:19 AM, Helge Hess wrote: On 01.03.2008, at 12:16, Nicola Pero wrote: make CC=g++ Hm, is there a special CC variable for CPP files? I think I wondered about that. There is CXX and CXXFLAGS. It would be nice if gnustep-make was to automatically do all of this. Not t

Re: GNUstep-make and C++ projects...

2008-03-01 Thread Jiva DeVoe
So, I tried the make CC=g++ and I got: $ make CC=g++ Making all for ctool LogTest... Linking ctool LogTest ... /usr/lib/gcc/i486-linux-gnu/4.1.2/../../../../lib/crt1.o: In function `_start': ../sysdeps/i386/elf/start.S:115: undefined reference to `main' collect2: ld returned 1 exit status mak

Re: gnustep on windows

2008-03-01 Thread Fred Kiefer
Paul Fox wrote: >> Out of curiosity, why do you want to use cairo on Windows and not the >> native window interface (or one based on GDI+)? > > Why Cairo? Mainly because it gives me a fairly nice graphics library > that's cross-platform. For fancy graphics, Cairo gives a consistent > appearance ac

Re: gnustep on windows

2008-03-01 Thread TMC
Paul Fox wrote: > > On a side note, I've heard that there are plans for a theming API, but > I've had some difficulty finding any details. Where could I find out > about that? > You might be talking about [Camaelon][1] (spelling is important). [1]: http://www.etoile-project.org/etoile/mediaw

Re: gnustep on windows

2008-03-01 Thread Paul Fox
There shouldn't be any X dependencies in the cairo backend code apart from the X surfaces of course. You should be able to provide your own MS Windows surface and use that. This gets a bit harder on the make file level, here our config scripts currently only support the cairo backend for X11. Ther

Re: GNUstep-make and C++ projects...

2008-03-01 Thread Helge Hess
On 01.03.2008, at 12:16, Nicola Pero wrote: make CC=g++ Hm, is there a special CC variable for CPP files? I think I wondered about that. It would be nice if gnustep-make was to automatically do all of this. Not that sure how to decide when to use C++ linking (is it when only CC_FILES a

Re: gnustep on windows

2008-03-01 Thread Fred Kiefer
Xavier Glattard wrote: > Hello > > Some months (a year ?) ago i tried to write a Cairo backend for windows. > You can get the files there : > http://amstradstuff.free.fr/GNUstep/back-win32cairo.zip > Put then in Source/cairo directory > > Achtung : two files will be overwritten !! > > I'm not su

RE: GNUstep-make and C++ projects...

2008-03-01 Thread Nicola Pero
The easiest solution might be to use g++ instead of gcc to link C++ files. make CC=g++ works for me. Presumably the alternative is to get the right C++ linking flags from gcc and use them ? It would be nice if gnustep-make was to automatically do all of this. Not that sure how to decide when t