26
I Use This!
Activity Not Available

News

Analyzed 4 months ago. based on code collected 11 months ago.
Posted over 9 years ago by Riccardo Mottola
Hi, since copy&paste of the link did fail and I did not notice that after midnight, here it is again: http://download.gna.org/gnustep-nonfsf/GNUMail-1.2.2.tar.gz Riccardo Riccardo Mottola wrote:
Posted over 9 years ago by Riccardo Mottola
Hi all, as with Pantomime that was recently released, a small group of developers(*) decided to reimport GNUMail sources to be able to do maintenance work, something which was long needed to be able to continue to enjoy this program. German ... [More] , Sebastian and myslf, mainly. Download it at: And enjoy, especially on GNUstep! This release contains updates and some important, long-needed fixes: * critical fixes on GNUstep which finally make SMTP usable again (including security detection in preferences) * use the corresponding Pantomime to finally run on NetBSD * Many 64bit fixes * port to MacOS re-instantiated (10.3/10.4 tested) * Memory problem fixes * General code cleanup to compile on modern compilers (gcc4 and clang) and on modern obj-c runtimes * works slightly better on small displays * crash fixes Riccardo PS: Just to prove the point, this mail was written with GNUMail running on GNUstep onan iBook running GNU/Linux/Debian on PowerPC-32bit ! [Less]
Posted over 9 years ago by Riccardo Mottola
PROJECT CENTER 0.6.2 We are proud to announce version 0.6.2 of ProjectCenter, GNUstep's IDE (together with GORM). For more information and to download it, check the GNUstep website: http://www.gnustep.org/experience/ProjectCenter.html What's new? ... [More] * Better compiler output parser, which includes fatal error * Compiler parser extended beyond gcc, like egcs and clang now get reasonable output * GoTo Line panel rewritten, works and can be extended in other editor plugins (like Gemas) * Find Panel fixes to work in detached editors * Crash fixes in the editor * Crash fixes in the highlighter * usage on Windows improvements * 64Bit fixes * Updated to current GNUstep drag operation (you need this release to work on current GNUstep) * some NetBSD/OpenBSD/FreeBSD support fixes (warnings et al.) Enjoy, Riccardo [Less]
Posted over 9 years ago by Riccardo Mottola
PANTOMIME 1.2.2 ------------------ I am pleased to announce a new, maintenace release of Pantomime. We (mainly German Arias, Riccardo Mottola, Sebastian Reitenbach) imported Pantomime from Ludovic's CW since the original author showed no ... [More] activity. Attempts to get patches and fixes into the original tree failed thus we forked. All changes are available under the LGPL as the original so if, they remain available and can be merged in at will. For now, we plan to continue the bug fixing and portability improvement that were long since needed. The current repository is now hosted at gna.org, nonfsf-gnustep project: https://gna.org/projects/gnustep-nonfsf The download is at: http://download.gna.org/gnustep-nonfsf/Pantomime-1.2.2.tar.gz This release contains updates and some important, long-needed fixes: * new res_init code for NetBSD which allows finally, after years, to run GNUMail on NetBSD! * enhanced portability to FreeBSD and OpenBSD * improved packaging hints in the makefiles * port to MacOS reinstantiated (10.3/10.4 tested) * extended 64bit fixes, including NSInteger/NSUInteger transitions were appropriate * enhanced crash catching, so that debugging is eased in the future * memory leaks fixed Riccardo [Less]
Posted over 9 years ago by Riccardo Mottola
BATMON 0.8 I'm pleased to announce a new release of the GNUstep Battery Monitor for laptops. This version features a modularized file refactoring to easier support different OS's, fixes especially for linux and improved handling of warning and ... [More] critical status, when available. Battery Monitor is available from here: http://gap.nongnu.org/batmon/index.html It is developed within the GNUstep Application Project, http://gap.nongnu.org/ Have fun with GNUstep on your laptops, be them Linux (including PowerMacs) with APM and ACPI, NetBSD, FreeBSD, OpenBSD! Riccardo [Less]
Posted over 9 years ago by Richard Frith-Macdonald
While you *can* do that, it's not to be recommended. When you use gnustep-make, the compiler arguments will all be supplied correctly for you. If you want to see exactly what gnustep-make does, you can use 'messages=yes' argument to get it to print ... [More] out the command line. The other thing you can do is use gnustep-config to tell you what is needed ... but you really ought to use gnustep-make. _______________________________________________ Info-gnustep mailing list Info-gnustep< at >gnu.org https://lists.gnu.org/mailman/listinfo/info-gnustep [Less]
Posted over 9 years ago by lbwlh&lt; at &gt;mail.ustc.edu.cn
Thanks for you guys' reply, I resolved the problem by searching in internet: gcc -o main main.m Fraction.m -I /GNUstep/System/Library/Headers -L /GNUstep/System/Library/Libraries -lobjc -lgnustep-base -fconstant-string-class=NSConstantString this ... [More] works. -- Best wishes (CN:李兵,Li bing)--------(EN:EricLee) MAIL:lbwlh (AT) mail.ustc.edu.cn TEL:18600893664 QQ:375922885 _______________________________________________ Info-gnustep mailing list Info-gnustep< at >gnu.org https://lists.gnu.org/mailman/listinfo/info-gnustep [Less]
Posted over 9 years ago by lbwlh&lt; at &gt;mail.ustc.edu.cn
Thanks for your reply. I was using gcc directly to compile my program: 1) compile main.m to main.o : gcc -fconstant-string-class=NSConstantString -c main.m -I /GNUstep/System/Library/Headers 2) Fraction.m to Fraction.o : gcc -c Fraction.m -I ... [More] /GNUstep/System/Library/Headers 3) compile *.o to main (actually is main.exe) gcc -o main main.o Fraction.o -L /GNUstep/System/Library/Libraries/ -lobjc -lgnustep-base But the first command terminated me with those error. But I can see all *.h file under /GNUstep/System/Library/Headers directory. -- Best wishes (CN:李兵,Li bing)--------(EN:EricLee) MAIL:lbwlh (AT) mail.ustc.edu.cn TEL:18600893664 QQ:375922885 _______________________________________________ Info-gnustep mailing list Info-gnustep< at >gnu.org https://lists.gnu.org/mailman/listinfo/info-gnustep [Less]
Posted over 9 years ago by Richard Frith-Macdonald
How are you building your code? You need to use gnustep-make to do that. See http://www.gnustep.it/nicola/Tutorials/WritingMakefiles/ for a tutorial on how to get started. _______________________________________________ Info-gnustep mailing list Info-gnustep< at >gnu.org https://lists.gnu.org/mailman/listinfo/info-gnustep
Posted over 9 years ago by lbwlh&lt; at &gt;mail.ustc.edu.cn
Hi all, I am a newbie for object-c, I am study object-c on windows 7, as I found http://www.gnustep.org/experience/Windows.html is very useful for me, so I setup the environment as it said: install MinGW and GNUstep Core, then I can use gcc to ... [More] compile the first object-c program which do not include any foundation header files, like <Foundation/NSObject.h>. But the problem is that I can not write any code actually, as gcc can not find all of foundation header files. If my code include <Foundation/NSObject.h>, gcc will pop out error like: fatal error, Foundation/Foundation.h: No such file or directory compilation terminated. Does any body can help me for this problem? Thank you very much. BTW, I have installed Cygwin before install MinGW and GNUstep Core, does it conflict with MinGW? Waiting for your reply. Thanks. -- Best wishes (CN:李兵,Li bing)--------(EN:EricLee) MAIL:lbwlh (AT) mail.ustc.edu.cn TEL:18600893664 QQ:375922885 _______________________________________________ Info-gnustep mailing list Info-gnustep< at >gnu.org https://lists.gnu.org/mailman/listinfo/info-gnustep [Less]