help

2005-12-20 Thread Henri Girard
Hi i am trying to install gnu on xp i downloaded the full package and installed it with sh test ran.. i can compile Gorm but when i run it it says can't find dll .. help needed HG ___ Gnustep-dev mailing list Gnustep-dev@gnu.org http://lists.gn

Re: help

2005-12-21 Thread Adam Fedor
On Dec 7, 2005, at 5:17 AM, Henri Girard wrote: Hi i am trying to install gnu on xp i downloaded the full package and installed it with sh test ran.. i can compile Gorm but when i run it it says can't find dll .. help needed Well, first of all, a subject of "help" is not v

make help

2006-09-27 Thread Nicola Pero
I was thinking of adding a little bit of inline help for gnustep-make. What's the best way ? I was thinking of adding a target like $> make help This is gnustep-make 1.13.0. Most common targets: make all (builds) make install (installs) make uninstall (uninstalls) make clean (delet

Re: make help

2007-02-12 Thread Nicola Pero
> I like this one. In fact, you could have a msg like this: > > GNUstep make (version x.xx); please type "make help=yes" for help. > > That would serve 3 purposes -- tell invoker that GNUstep make is being > used (in case they care), the version, and how to get

Re: make help

2006-09-27 Thread Sheldon Gill
Nicola Pero wrote: I was thinking of adding a little bit of inline help for gnustep-make. What's the best way ? I was thinking of adding a target like $> make help This is gnustep-make 1.13.0. Most common targets: make all (builds) make install (installs) make uninstall (uninstall

Re: make help

2006-09-27 Thread Nicola Pero
>> I was thinking of adding a little bit of inline help for gnustep-make. >> What's the best way ? I was thinking of adding a target like >> >> $> make help > > I'm all for adding more documentation and help... > but... please *don't* make it

Re: make help

2006-09-27 Thread Adrian Robert
On 2006-09-27 23:04:07 -0400 Nicola Pero <[EMAIL PROTECTED]> wrote: This could be an interesting idea, but the main problem is that someone looking for help probably wouldn't know that to get help you need to use 'make help=yes'. Maybe whenever you type 'make

Re: make help

2006-09-27 Thread Dennis Leeuw
Adrian Robert wrote: On 2006-09-27 23:04:07 -0400 Nicola Pero <[EMAIL PROTECTED]> wrote: This could be an interesting idea, but the main problem is that someone looking for help probably wouldn't know that to get help you need to use 'make help=yes'. Maybe whenever you

Re: make help

2006-09-29 Thread Nicola Pero
> I would like to see either or both: > > info gnustep-make > man gnustep-make Good idea ... :-) > PS: I wouldn't mind > > make gnustep-help > > Even though I don't really like inventing a new technique to get at > documentation. What I wanted to get i

Re: make help

2006-10-03 Thread David Ayers
Nicola Pero schrieb: >>>I was thinking of adding a little bit of inline help for gnustep-make. >>>What's the best way ? I was thinking of adding a target like >>> >>>$> make help >> >>I'm all for adding more documentation and help... &

Help needed with debugging

2008-11-22 Thread Fred Kiefer
I am getting rather strange results when running a GNUstep test application. Here my gdb buffer: [EMAIL PROTECTED]:~/GNUstep/Examples/TestApp3a> openapp --debug ./TestApp3.app/ GNU gdb 6.8 Copyright (C) 2008 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later

Help with gdb needed

2013-01-24 Thread Marcus Müller
Hi, I'm hunting a bug in conjunction with GSAvahiNetService. I'm on FreeBSD 9.1 with clang 3.1 and current libobjc2 and GNUstep (both svn r36011). The stacktrace is as follows: Program received signal SIGSEGV, Segmentation fault. [Switching to Thread 806c07400 (LWP 100877)] 0x0008011d23ac i

I want to help

2021-04-20 Thread Daniel Santos
Hi developers, I was looking at http://www.gnustep.org/developers/index.html , and the links point to Savannah.gnu.org. I see issues being registered in the Github projects. Also the test suite link is broken. Is GitHub now the place to see the issu

Project Center Help (PLEASE!)

2005-04-20 Thread Jeff Rosengarden
I have installed, and am using, the GNUstep Workspace Manager, Project Center and Gorm app on my Suse Linux computer.  Everything is working great except 1 issue.  Any help would be appreciated;   1.  When I create a new APPLICATION in GORM I get a message stating that it can't gain a

Re: Help needed with debugging

2008-11-22 Thread David Chisnall
Hey Fred, When I've seen this kind of error before in gdb, it's been due to mismatches between linker and debug symbols. GNUstep Make seems to have a few bugs which I haven't been able to track down which means it doesn't always rebuild all objects that depend on a modified header, which

Re: Help needed with debugging

2008-11-22 Thread Fred Kiefer
Thank you David, it must have been something like the last possibility you explained. I had already recompiled base and the application, but this gave no difference. After recompiling gui and back as well things worked again. So most likely my code loaded two versions of base at once and did stran

Re: Help needed with debugging

2008-11-22 Thread Nicola Pero
On 22 Nov 2008, at 17:47, David Chisnall wrote: Hey Fred, When I've seen this kind of error before in gdb, it's been due to mismatches between linker and debug symbols. GNUstep Make seems to have a few bugs which I haven't been able to track down which means it doesn't always rebuild al

Re: Help needed with debugging

2008-11-25 Thread Quentin Mathé
Le 22 nov. 08 à 20:39, Fred Kiefer a écrit :-rwxr-xr-x 1 root root  7428389 22. Nov 18:08 libgnustep-base.so.1.15.4lrwxrwxrwx 1 root root   25 18. Nov 00:16 libgnustep-base.so.1.17 ->libgnustep-base.so.1.17.0-rwxr-xr-x 1 root root  7424202 18. Nov 00:16 libgnustep-base.so.1.17.0Looks like someb

Re: Help with gdb needed

2013-01-24 Thread David Chisnall
Hi Marcus, A crash in objc_msgSend() usually means that the object that is being sent a message is an invalid pointer. Try enabling zombies and see if it reports an object being deallocated. David P.S. On FreeBSD, it's usually best to use gdb from ports, as the one in base doesn't understand

Re: Help with gdb needed

2013-01-24 Thread Marcus Müller
Hi David, > A crash in objc_msgSend() usually means that the object that is being sent a > message is an invalid pointer. Try enabling zombies and see if it reports an > object being deallocated. that's clear - but why can't I print it in gdb? I just want to inspect the pointer, but even that

Re: Help with gdb needed

2013-01-24 Thread David Chisnall
On 24 Jan 2013, at 10:12, Marcus Müller wrote: > Hi David, > >> A crash in objc_msgSend() usually means that the object that is being sent a >> message is an invalid pointer. Try enabling zombies and see if it reports >> an object being deallocated. > > that's clear - but why can't I print i

Re: Help with gdb needed

2013-01-30 Thread Marcus Müller
Hi, I have a bit more info on that bug available now, which seems to be a race condition. The bug occurs when two GSAvahiNetService instances are being removed from a GSAvahiNetServiceBrowser in rapid succession. (This probably doesn't occur for too many people out there, but I happen to have

Re: Help with gdb needed

2013-02-17 Thread Marcus Müller
On 31.01.2013, at 01:11, Marcus Müller wrote: > I have a bit more info on that bug available now, which seems to be a race > condition. JFYI, the bug has been fixed in r36156. Cheers, Marcus -- Marcus Müller . . . http://www.mulle-kybernetik.com/znek/ smime.p7s Description: S/MI

Re: I want to help

2021-04-21 Thread Gregory Casamento
Both are fine. At this point, personally, I would rather people submitted issues on github as it is easier to create PRs against them, but that's just my feeling on the matter. On Tue, Apr 20, 2021 at 8:40 AM Daniel Santos wrote: > Hi developers, > > I was looking at http://www.gnustep.org/deve

Help : application startup problem on OpenBSD

2007-12-05 Thread Philippe Roussel
got a SIGSEGV and couldn't go further (no gdb guru around here...). Any help would be greatly appreciated. Thanks, Philippe ___ Gnustep-dev mailing list Gnustep-dev@gnu.org http://lists.gnu.org/mailman/listinfo/gnustep-dev

Need help building mod_gsw on Leopard

2008-01-24 Thread David Wetzel
Hi folks, the apache22 on Apple seems to be different. It is FAT(universal) too... Do you know how to make it work? Thanks! David Von meinem iPod gesendet ___ Gnustep-dev mailing list Gnustep-dev@gnu.org http://lists.gnu.org/mailman/listinfo/gnustep

Help adding horizontal scrolling to NSBrowser

2010-02-10 Thread Eric Wasylishen
Hi, Yesterday I added support for horizontal scrolling to NSScrollView and X11 -back, which is a really nice improvement for people with trackpads or Apple mice. I was trying to add support for this to NSBrowser, but it's a bit trickier. I need the columns' scroll views to forward -scrollWheel

gnustep-base on cygwin help needed

2011-03-24 Thread p...@seat-1.com
I'm stuck with getting a simple GNUstep tool run on cygwin. Can someone help please? First of all I need some advice which gcc and libobj to use. Then a review of configure output and compiler warnings. -- mit freundlichen Gruessen/best regards Pirmin Braun seat-1 Software GmbH - Sinzige

Wayland backend status update & help appeal

2018-02-20 Thread Ivan Vučica
Hi, A while ago Sergio L. Pascual contributed a 'dirty' wayland backend patch, intended to be used together with cairo. At FOSDEM we worked on merging it, but it didn't worked out. I have not yet merged it as it is not ready for use. You can see current work-in-progress: https://github.com/ivuci

Looking for help profiling GNUstep programs

2005-06-30 Thread Richard Frith-Macdonald
It's many years since I tried profiling stuff with 'make profile=yes' and using gprof As far as I can recall. mostly when I did it, I was generally optimising the base library, and statically linking it with a tiny tool written to exercise the bit of code I was interested in. Now I need to p

Please help fix procedure of "How_can_I_take_part_with_a_GNUstep_autobuilder_for_the_testfarm.3F"

2007-11-08 Thread T.J. Yang
I am trying to have a Solaris 10 laptop be part of gnustep autobuild farm. Please help fix this procedure, there is no Startup.current.tar.bz2 at said URL. http://wiki.gnustep.org/index.php/Developer_FAQ#How_can_I_take_part_with_a_GNUstep_autobuilder_for_the_testfarm.3F Thaks T.J. Yang

Re: Help adding horizontal scrolling to NSBrowser

2010-02-11 Thread Richard Frith-Macdonald
On 10 Feb 2010, at 21:38, Eric Wasylishen wrote: > Hi, > Yesterday I added support for horizontal scrolling to NSScrollView and X11 > -back, which is a really nice improvement for people with trackpads or Apple > mice. > > I was trying to add support for this to NSBrowser, but it's a bit tric

Re: Help adding horizontal scrolling to NSBrowser

2010-02-11 Thread Quentin Mathé
Le 11 févr. 2010 à 09:24, Richard Frith-Macdonald a écrit : On 10 Feb 2010, at 21:38, Eric Wasylishen wrote: Hi, Yesterday I added support for horizontal scrolling to NSScrollView and X11 -back, which is a really nice improvement for people with trackpads or Apple mice. I was trying to a

Re: Help adding horizontal scrolling to NSBrowser

2010-02-11 Thread Gregory Casamento
Quentin, Actually, NSBrowser does implemend keyed coding in initWithCoder: (See NSBrowser.m:2715) :). You may be looking a little earlier in that file and seeing the initWithCoder: implementation of NSBrowserColumn. GC On Thu, Feb 11, 2010 at 7:10 AM, Quentin Mathé wrote: > Le 11 févr. 2010 à

Re: Help adding horizontal scrolling to NSBrowser

2010-02-12 Thread Quentin Mathé
Hi Gregory, Le 11 févr. 2010 à 13:29, Gregory Casamento a écrit : Quentin, Actually, NSBrowser does implemend keyed coding in initWithCoder: (See NSBrowser.m:2715) :). You may be looking a little earlier in that file and seeing the initWithCoder: implementation of NSBrowserColumn. Right, I

Re: Need help with NSLocale- preferredLanguages method

2010-07-27 Thread Stef Bidi
Asha I'm CCing dev list just in case anyone else have other ideas... GNUstep allows the preffered language to be set using the defaults system. In order to get the user's preferred languages you'd have to query that. Currently, -preferredLanguages just queries [NSUserDefaults +userLanguages], whi

RE: gnustep-base on cygwin help needed

2011-03-25 Thread Nicola Pero
se then we have well-tested instructions and even a binary installer that makes things easier for you! :-) If cygwin support is required for you, and mingw is not acceptable, then there is work to do. We can try to help, but it's not easy without having access to a cygwin box, so you'd h

Re: Wayland backend status update & help appeal

2018-02-21 Thread Richard Frith-Macdonald
> On 20 Feb 2018, at 22:02, Ivan Vučica wrote: > > Hi, > > A while ago Sergio L. Pascual contributed a 'dirty' wayland backend > patch, intended to be used together with cairo. > > At FOSDEM we worked on merging it, but it didn't worked out. I have > not yet merged it as it is not ready for u

Re: Wayland backend status update & help appeal

2018-03-06 Thread Ivan Vučica
On Wed, Feb 21, 2018, 09:45 Richard Frith-Macdonald < richard.frith-macdon...@theengagehub.com> wrote: > > > > - xdg_shell's get_xdg_surface_special is not referenced elsewhere on > > the interwebs. I have temporarily swapped it for get_xdg_surface; > > thus, no longer is a more detailed window st

crashes with the initialization of rtf Help

2021-06-11 Thread Riccardo Mottola
Hi all, I noticed that on certain systems I get a crash when I try to display in applications Helps which are based on RTF (e.g. GWorkspace or Gorm). It does not happens an all systems, e.g. on FreeBSD/amd64 with clang or on Linux/amd64 gcc nor on Linux/i386 clang. However, on on several Lin

Re: Looking for help profiling GNUstep programs

2005-06-30 Thread Andrew Ruder
Richard Frith-Macdonald wrote: Am I doing something stupid? Does anyone have experience with profiling share objc libraries (I'm working on debian unstable intel). I've had a good deal of luck with oprofile (which requires a kernel component) for debugging gnustep. With a 2.6.12 kernel, a ke

Re: Looking for help profiling GNUstep programs

2005-06-30 Thread Richard Frith-Macdonald
On 2005-06-30 15:20:33 +0100 Andrew Ruder <[EMAIL PROTECTED]> wrote: Richard Frith-Macdonald wrote: Am I doing something stupid? Does anyone have experience with profiling share objc libraries (I'm working on debian unstable intel). I've had a good deal of luck with oprofile (which requires

Re: Looking for help profiling GNUstep programs

2005-06-30 Thread Matt Rice
--- Andrew Ruder <[EMAIL PROTECTED]> wrote: > Richard Frith-Macdonald wrote: > > Am I doing something stupid? > > Does anyone have experience with profiling share > objc libraries (I'm > > working on debian unstable intel). > > I've had a good deal of luck with oprofile (which > requires a ker

Re: Looking for help profiling GNUstep programs

2005-07-01 Thread Fred Kiefer
Richard Frith-Macdonald wrote: > On 2005-06-30 15:20:33 +0100 Andrew Ruder <[EMAIL PROTECTED]> wrote: > >> Richard Frith-Macdonald wrote: >>> Am I doing something stupid? Does anyone have experience with >>> profiling share objc libraries (I'm working on debian unstable >>> intel). >> >> I've had

Re: Looking for help profiling GNUstep programs

2005-07-01 Thread Quentin Mathé
Le 30 juin 05 à 15:49, Richard Frith-Macdonald a écrit : It's many years since I tried profiling stuff with 'make profile=yes' and using gprof As far as I can recall. mostly when I did it, I was generally optimising the base library, and statically linking it with a tiny tool written to e

Application crashes when embedding GNU Smalltalk lib - Help?

2007-04-29 Thread Tim McIntosh
    [EMAIL PROTECTED]:/usr/obj/usr/src/sys/SMP  i386### NOTE:  As shown below, app runs when -lgst is suppressed; same results if the Test_GUI_LIBS line is simply removed from the Makefile: ###% gmake Test_GUI_LIBS=This is gnustep-make 2.0.0. Type ’make print-gnustep-make-help’ for help.Making all fo

Re: Please help fix procedure of "How_can_I_take_part_with_a_GNUstep_autobuilder_for_the_testfarm.3F"

2007-11-08 Thread Adam Fedor
On Nov 8, 2007, at 7:19 AM, T.J. Yang wrote: I am trying to have a Solaris 10 laptop be part of gnustep autobuild farm. Please help fix this procedure, there is no Startup.current.tar.bz2 at said URL. http://wiki.gnustep.org/index.php/ Developer_FAQ

Please help: My build of gnustep from modules

2010-06-07 Thread Elim Qiu
ework anywhere etc). I just want to confirm what I got is ok... (Please help). I tried hello example in gsweb package and it worked and deployable. Well my main concern is to make sure that what I've done is not completely wrong or very different than it supposed to be... Here is

Help compiling 3rd party library: undefined reference error

2011-08-09 Thread Nicolaus Andratschke
Hi there, I try to compile Cocos2d-gnustep on openSUSE 11.4 with the newest stable gnustep environment I compiled and installed with the gnustep-startup script myself and get the following error I can't resolve myself: This is gnustep-make 2.6.0. Type 'make print-gnustep-make-help

Re: [Debian GNUstep maintainers] request for help: oolite

2016-08-01 Thread Ivan Vučica
Gdb backtrace is sort-of useful, but reading the code I can't tell where the bug in leakAt: is. It seems to clean up its use of exitLock after itself. I will assume you wanted to send this to the list, and I will also cross post this onto gnustep-dev. The curious part is "it works locally, but no

Re: [Debian GNUstep maintainers] request for help: oolite

2016-08-01 Thread Ivan Vučica
For context this is the first message in the thread: http://lists.alioth.debian.org/pipermail/pkg-gnustep-maintainers/2016-July/003934.html On Mon, 1 Aug 2016, 11:32 Ivan Vučica, wrote: > Gdb backtrace is sort-of useful, but reading the code I can't tell where > the bug in leakAt: is. It seems t

Re: [Debian GNUstep maintainers] request for help: oolite

2016-08-01 Thread Richard Frith-Macdonald
> On 1 Aug 2016, at 11:59, Ivan Vučica wrote: > > For context this is the first message in the thread: > http://lists.alioth.debian.org/pipermail/pkg-gnustep-maintainers/2016-July/003934.html > > On Mon, 1 Aug 2016, 11:32 Ivan Vučica, wrote: > Gdb backtrace is sort-of useful, but reading the c

Re: [Debian GNUstep maintainers] request for help: oolite

2016-08-01 Thread Ivan Vučica
This was my guess too, but it seemed like the use of exitLock is quite limited. I was not aware it was a recent change :-) Aside from someone trying to ask Oolite to fix their init, should we also cut a release of base then? On Mon, 1 Aug 2016, 12:34 Richard Frith-Macdonald, < richard.frith-macdo

Re: [Debian GNUstep maintainers] request for help: oolite

2016-08-01 Thread Richard Frith-Macdonald
> On 1 Aug 2016, at 12:38, Ivan Vučica wrote: > > This was my guess too, but it seemed like the use of exitLock is quite > limited. I was not aware it was a recent change :-) > > Aside from someone trying to ask Oolite to fix their init, should we also cut > a release of base then? I don't

Re: [Debian GNUstep maintainers] request for help: oolite

2016-08-01 Thread Nicolas Boulenguez
On Mon, Aug 01, 2016 at 10:32:08AM +, Ivan Vučica wrote: > I will assume you wanted to send this to the list, and I will also cross > post this onto gnustep-dev. Right. > The curious part is "it works locally, but not on buildd" which you > mentioned earlier in the thread. Is the compiler diff

Re: [Debian GNUstep maintainers] request for help: oolite

2016-08-01 Thread Nicolas Boulenguez
> The general workaround for that kind of thing is to have a single thread start > things up first (eg have the main thread call [NSDate class] before the app > goes multithreaded) to ensure that the deadlock can't occur. Great! This workaround fixes the issue. Thanks for your explanations. -- Pl

Re: [Debian GNUstep maintainers] request for help: oolite

2016-08-05 Thread Eric Heintzmann
Hi, Le 01/08/2016 à 13:51, Richard Frith-Macdonald a écrit : >> On 1 Aug 2016, at 12:38, Ivan Vučica wrote: >> >> This was my guess too, but it seemed like the use of exitLock is quite >> limited. I was not aware it was a recent change :-) >> >> Aside from someone trying to ask Oolite to fix th

Re: [Debian GNUstep maintainers] request for help: oolite

2016-08-06 Thread Ivan Vučica
Yes, I think that's what was stated in the sentence "a patch for 1.24.9 in Debian to add/use exitLock might be an option" means 0:-) On Fri, Aug 5, 2016 at 4:22 PM, Eric Heintzmann wrote: > Hi, > > > Le 01/08/2016 à 13:51, Richard Frith-Macdonald a écrit : > >> On 1 Aug 2016, at 12:38, Ivan Vuči

Re: [Debian GNUstep maintainers] request for help: oolite

2016-08-08 Thread Richard Frith-Macdonald
> On 6 Aug 2016, at 18:54, Ivan Vučica wrote: > > Yes, I think that's what was stated in the sentence "a patch for 1.24.9 in > Debian to add/use exitLock might be an option" means 0:-) > Yes, looks tlike the update was at svn revision 40033, so a patch might be made using svn diff -r40032:40

Re: [Debian GNUstep maintainers] request for help: oolite

2016-08-09 Thread Eric Heintzmann
Le 09/08/2016 à 07:22, Richard Frith-Macdonald a écrit : >> On 6 Aug 2016, at 18:54, Ivan Vučica wrote: >> >> Yes, I think that's what was stated in the sentence "a patch for 1.24.9 in >> Debian to add/use exitLock might be an option" means 0:-) >> > Yes, looks tlike the update was at svn revisi

gnustep developers, donate money to help fight cancer!

2005-06-23 Thread Patrick McFarland
John Hall, the author of /Programming Linux Games/, and someone who I consider a friend, was diagnosed with Stage IV Melanoma, which is very life threatening. He's asking the public to help donate to the American Cancer Society ( http://www.acsevents.org/faf/r.asp?t=4&i=99915&u=9

RE: Application crashes when embedding GNU Smalltalk lib - Help?

2007-05-01 Thread Nicola Pero
tops the problem. Thanks -Original Message- From: Tim McIntosh <[EMAIL PROTECTED]> Sent: Mon, April 30, 2007 2:56 am To: GNUstep Developer Subject: Application crashes when embedding GNU Smalltalk lib - Help? ___ Gnustep-dev mailing list Gnustep-d

Re: Application crashes when embedding GNU Smalltalk lib - Help?

2007-05-01 Thread Tim McIntosh
Nicola, Good call! Apparently libgst includes libsnprintfv, which provides another version of register_printf_function (incompatible, of course -- it returns a pointer upon success). I'll have to think about how to best work around this. This brings up another question, though: is it r

Re: Application crashes when embedding GNU Smalltalk lib - Help?

2007-05-01 Thread Tim McIntosh
fyi - At the moment I seem to be successfully avoiding the problem by statically linking libgst (and libexecinfo) into my framework, as follows: LIBRARIES_DEPEND_UPON = -Wl,-Bsymbolic,-Bstatic,-lgst,-lexecinfo,- Bdynamic -lreadline -lm This is probably what I want to do anyway, since I'

Re: Please help: My build of gnustep from modules

2010-06-07 Thread German Arias
nd PC files? Or maybe you only need set applications. Look at GWorkspace source into Apps_wrappers dir, there are many wrappers that can help you. Local/Library/Headers Here are placed the headers of Foundation, AppKit, ... Everything else is like in my s

Re: Please help: My build of gnustep from modules

2010-06-09 Thread David Ayers
gt; is quite different (System dir with no Frameworks, I don't see > Foundation.framework anywhere etc). I just want to confirm what I got is > ok... (Please help). I tried hello example in gsweb package and it > worked and deployable. GDL2 and GSWeb are currently being reworked by

Re: Please help: My build of gnustep from modules

2010-06-10 Thread Elim Qiu
Hi David Ayers, Thanks for the info. I now understand there are many big changes going on within gnustep from the foundation and up. I got lots help from Dave Wetzel about gdl2+gsweb. I think his work is very important and very challenging. It makes sense not stick to WO45 and adapt current

Re: Help compiling 3rd party library: undefined reference error

2011-08-09 Thread Eric Wasylishen
stable > gnustep environment I compiled and installed with the gnustep-startup script > myself and get the following error I can't resolve myself: > > This is gnustep-make 2.6.0. Type 'make print-gnustep-make-help' for help. > Making all for app HelloWorld... > gcc

Re: Kickstarter was not successful... but it did help things...

2013-09-12 Thread Luboš Doležel
Absolutely. Allowing the code to compile and printing warnings when a missing method is called would be very helpful. Dne 13. září 2013 2:01:01 Gregory Casamento napsal: One of the ways I approached the Xcode library implementation (a library in GNUstep which interprets xcodeproj files and b

Re: Kickstarter was not successful... but it did help things...

2013-09-13 Thread Gregory Casamento
This isn't precisely what I meant. Allow me to elaborate... When I wrote the Xcode library for buildtool (see dev-libs and dev-apps) I wrote a meta-tool called plpcg (property list class parser generator). The purpose of plpcg is to parse the Xcode pbxproj file and, from that, generate objc classe

Re: Kickstarter was not successful... but it did help things...

2013-09-13 Thread Graham Lee
the API diff tool, I think using clang I've got most of the parts to get it done. Such a tool would be a great thing to point new developers at to help them get involved: tell a newcomer to find a method from our "not yet" list, and add it to base/GUI (with tests). A collection

Re:Re: Help compiling 3rd party library: undefined reference error(Nicolaus Andratschke)

2011-08-17 Thread Nicolaus Andratschke
nu.org To subscribe or unsubscribe via the World Wide Web, visit     https://lists.gnu.org/mailman/listinfo/gnustep-dev or, via email, send a message with subject or body 'help' to     gnustep-dev-requ...@gnu.org You can reach the person managing the list at     gnustep-dev-ow...@gnu.org W

Re: Help compiling 3rd party library: undefined reference error(Nicolaus Andratschke)

2011-08-18 Thread Fred Kiefer
glATI.h though. If things are similar on your system just adding a few symbolic links might help. I will try that myself and see whether configure will now correctly detect OpenGl. Fred ___ Gnustep-dev mailing list Gnustep-dev@gnu.org https://lists