Re: Thank you all, Steppers

2015-01-06 Thread Sungjin Chun
I, one of the users of great software supported by great people, cannot resist to add another appreciation to everybody in this list, especially to developers. Thank you. -- Sungjin Chun Sent with Sparrow (http://www.sparrowmailapp.com/?sig) On Wednesday, January 7, 2015 at 01:51

[Q] Can I use gnustep-make package to build native FoundationKit Tools?

2014-11-11 Thread Sungjin Chun
Hi, My existing code base does use gnustep on linux and I need to port them to Mac OS X (which all the code itself runs well because they are just dependent on standard FoundationKit APIs). The problem is that if I changed code structure in Linux side, I need to copy them and merge into Xcode

[Q] (Win32) On adding custom windows message to the NSRunLoop

2012-06-14 Thread Sungjin Chun
Hi, I want to use 3rd party dll with GNUstep but struck with a problem; the dll needs a window handle(HANDLE) for its event processing, for example, if I want to receive realtime event notification, I have to write this kind of code; in WinMain function I have to use following windows message

[Q] GSXMLRPC: When is it released?

2007-03-12 Thread Sungjin Chun
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Hi, Attached file is test file to sea when GSXMLRPC is released - so that related socket will be closed. I've added code(NSLog(@dealloc)) to GSXMLRPC's dealloc and GSHTTPURLHandle's dealloc. But I cannot see the message. And this causes problem

[Q] Thread + GSXMLRPC

2007-03-10 Thread Sungjin Chun
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Hi, I've created some network server which makes connection between client (xmlrpc) and server(proprietary). The server is used with producer/consumer like structure where producer accepts socket and push it to the queue and consumer pops stored

Re: [Q] ProjectCenter Gorm running on Windows with MinGW?

2006-04-17 Thread Sungjin Chun
Hi, MinGW port of GNUstep does not require X Window System. It just uses Windows GDI(and/or GDI+) for drawing. Just use openapp, or full path to executable. I'm not sure on whether ProjectCenter work on Windows or not. Hope this can help you. On Apr 14, 2006, at 3:42 AM, JongAm Park

[Q] Menu Drawing Problem(Again, Worse)

2006-04-10 Thread Sungjin Chun
Hi, Current GUI code in SVN also has problem on menu drawing. It's worse than previous code. Or is this related to backend bundle? I'm using art backend. Funny thing is that menu title cell does have correct drawing. Individual menu cells have drawing problem. Thanks in advance.

Re: Window problem: avoid the GDNC console window

2006-04-09 Thread Sungjin Chun
On Apr 10, 2006, at 8:57 AM, Lloyd Dupont wrote: I think that won't do. It's for a end user application. which might not have the right to install services, nor should I require him to. Oh, bad... :-) However, how could I use this -mwindows flag? I'm just using standart GNUstep makefile

Re: Window problem: avoid the GDNC console window

2006-04-07 Thread Sungjin Chun
If you are using MinGW, -mwindows option will remove console window. I'm starting GDNC when I logon to windows. GDOMAP when I start windows (Using utility which make a program run as service). On Apr 8, 2006, at 1:20 AM, Fred Kiefer wrote: If I remember correctly from my own windows

[Q] Menu Drawing has some problem

2006-03-28 Thread Sungjin Chun
Hi, I've updated my GNUstep libraries in my linux box(AMD64, 64Bit Gentoo Linux). After update, I've found that left part of menu item cell (white vertical line) has problem; too thick white line, actually no vertical black line. I don't know on which version this problem does appear, but

Re: Does GCC 4.1 indeed include Obj-C++ support?

2005-12-18 Thread Sungjin Chun
Hi, I do not know whether GCC 4.1 is released formally or not but during development phase, I can compile ObjC++ code using snapshot release of it. Hope this can help you. On Dec 17, 2005, at 2:52 PM, Michael Dexter wrote: Hello all, Can anyone confirm if GCC 4.1 includes the promised

[Q] Can you let me know on windows app using GNUstep?

2005-11-30 Thread Sungjin Chun
Hi, From mailling list archive I found that you did create normal windows application using gnustep-base in C or other languages than ObjC. What I want to ask to you is that what should you do for this during loading of gnustep-base.dll. Can you let me know one this? Or simple code

[Q] How to run DO between difference host?

2005-11-20 Thread Sungjin Chun
Hi, I've found that current CVS implementation of GNUstep DO runs using UNIX domain socket like thing. I want to run DO application between difference host/network. Is there any documentation on this? Thanks in advance. PS) From my memory, old version of GNUstep DO does work between

Re: [OT, Q] Fast RPC library?

2005-10-23 Thread Sungjin Chun
On Oct 23, 2005, at 3:20 PM, Richard Frith-Macdonald wrote: It seems to me that a 10K RPC/sec target is high for any machine. My previous version of user account service server(which I want to improve) can handle 10K RPC/sec(almost). Yes, this varies with number of clients. Current

Re: [OT, Q] Fast RPC library?

2005-10-23 Thread Sungjin Chun
On Oct 24, 2005, at 7:54 AM, Helge Hess wrote: Actually I wonder _why_ you want to replace your existing system if that works? Existing account server uses platform dependent binary data for communication which makes porting and writing client very hard(for example, if you want to

[OT, Q] Fast RPC library?

2005-10-22 Thread Sungjin Chun
Hi, This is off-topic but I cannot help but to ask ... :-) My question is, do you know any simple to use(like XML-RPC) and fast (10K/sec in PowerPC G4) RPC library? My intention is improving existing account server (whose performance is about 10K/sec in PowerPC G4, ie, 10K request

Re: [OT, Q] Fast RPC library?

2005-10-22 Thread Sungjin Chun
On Oct 23, 2005, at 12:25 AM, Richard Frith-Macdonald wrote: Using XML-RPC (GSXMLRPC from the GNustep base library) I have done high speed stuff on a P4. Not sure what you mean by 10K/sec though ... is that data throughput or number of RPCs? If it's number of RPCs, you need to say how many

Re: [OT, Q] Fast RPC library?

2005-10-22 Thread Sungjin Chun
On Oct 23, 2005, at 3:05 AM, Helge Hess wrote: Not sure what you mean by 10K/sec though ... is that data throughput or number of RPCs? If it's number of RPCs, you need to say how many parameters etc you are passing and how big they are etc. I find it a bit hard to believe that you can

Re: [OT, Q] Fast RPC library?

2005-10-22 Thread Sungjin Chun
OOPS! my mistake, I want to say 512 byte, not 512Kbyte. Sorry. On Oct 23, 2005, at 11:11 AM, Sungjin Chun wrote: It's number of RPCs. I did not tested my server on P4(which will be faster than my iBook G4). # of Request parameter is under 3 (mostly) and response data size is under 512K

Re: Totally Gormless

2005-10-11 Thread Sungjin Chun
Maybe Off topic, did you sussessfully compiled GNUstep with gcc 4.1? On Oct 11, 2005, at 3:35 PM, Gregory John Casamento wrote: Duncan, I just did a totally clean build with GCC 4.1 (20051010) prerelease. I will try it with 4.0 later (once I've downloaded and compiled 4.0). But I do

Re: [Q] What happened with subpixel rendering in art backend?

2005-10-10 Thread Sungjin Chun
is bigger than I thought. Anyway, thank you for your reply and informative message. On Oct 8, 2005, at 10:11 PM, Christopher Armstrong wrote: On Thu, 2005-10-06 at 17:38 +0900, Sungjin Chun wrote: Hi, During my setup of GNUstep environment in my new workstation (AMD64) I found that subpixel

[Q]WebKit on GNUstep, any success?

2005-10-05 Thread Sungjin Chun
Hi, I know to use WebKit on GNUstep we need objc++ supported gcc(as far as I know, current development version supports this). Just curious, if anyone try WebKit and gcc-snapshot with GNUstep? Thanks in advance. ___ Discuss-gnustep mailing list

Re: [Q] DO on AMD64(Linux, x86_64)

2005-10-04 Thread Sungjin Chun
will test this patch with libffi and post the result to the list. Thanks. - Original Message - From: Matt Rice [EMAIL PROTECTED] To: Sungjin Chun [EMAIL PROTECTED], GNUstep List Discussion discuss-gnustep@gnu.org Sent: 05-10-04 19:34:09 Subject: Re: Re: [Q] DO on AMD64(Linux, x86_64

Re: Gorm on Mac OS 10.4.2?

2005-09-23 Thread Sungjin Chun
On Sep 24, 2005, at 4:55 AM, Yves de Champlain wrote: every gnustep apps I tried all (except the tools from gnustep-base) crash in libobjc.A.dylib (Apple's runtime) even though otool reveals no such dependency yves Can we run gnustep application with apple's runtime, now? This means

Re: [Q] is the gcc-objc for the cygwin or mingw crossplatform?

2005-08-03 Thread Sungjin Chun
As far as I know, cross compilation is possible, but you have to build this cross compiler from apple's gcc source(which you use in Mac OS X). I think linker also should be built and libraries and frameworks could be used with cross build tools. On Aug 4, 2005, at 1:41 AM, JongAm Park

Re: GDI+/win32 backend

2005-08-01 Thread Sungjin Chun
Great work! I want to run it :-) On Jul 31, 2005, at 8:08 AM, Christopher Armstrong wrote: I have been working on integrating GDI+ into the win32 backend. It was much easier that I imagined, as mingw has already had most of the necessary headers and .def file posted to it's mailing list.

Re: ANN: StepTalk 0.9.0

2005-06-20 Thread Sungjin Chun
Hi, Here comes some questions; 1. Does this version includes Mac OS X support? 2. Can I make new class with StepTalk or subclass from existing classes? Thanks in advance. On Jun 21, 2005, at 6:23 AM, Stefan Urbanek wrote: Hi, StepTalk 0.9.0 was released.

Re: ANN: StepTalk 0.9.0

2005-06-20 Thread Sungjin Chun
Ah, I cannot download, it says Permission Denied On Jun 21, 2005, at 6:23 AM, Stefan Urbanek wrote: Hi, StepTalk 0.9.0 was released. This should be considered as unstable release. Get it from ftp://ftp.gnustep.org/pub/incoming (*) (*) can this be moved to some better GNUstep FTP place?

Re: [Q] GNUstep Building on Windows Platform(Latest CVS version)

2005-06-16 Thread Sungjin Chun
old windows data. Hope this can help you. On Jun 17, 2005, at 3:48 AM, Fred Kiefer wrote: Sungjin Chun wrote: It seems that most current CVS version is changed in creating dll. I've tried it with MinGW-3.2.0-rc-3.exe but failed. The error messages are like following: Info: resolving

Re: Objective-C - Smalltalk bridge

2005-05-12 Thread Sungjin Chun
Great!, I have one question here; can this work with Apple runtime? On May 13, 2005, at 7:37 AM, Stefan Urbanek wrote: Hi, I have downloaded the Smalltalk bridge from the GNUstep ftp. Unfortunately the package was not compilable, as there was no GNUmakefile. I have created one and fixed the

Re: GNUSTEP IM?

2005-04-11 Thread Sungjin Chun
developers? Or is everyone just satisfied with english ;). I'm assuming there are some non english native developers. Kory -- Sungjin Chun, Developer Embian chunsj at embian dot com ___ Discuss-gnustep mailing

Xcode Project Template for GSWeb

2005-04-10 Thread Sungjin Chun
-- Sungjin Chun, Developer Embian chunsj at embian dot com___ Discuss-gnustep mailing list Discuss-gnustep@gnu.org http://lists.gnu.org/mailman/listinfo/discuss-gnustep

HTTP File Upload using GNUstep

2005-03-31 Thread Sungjin Chun
idea on HTTP upload part. Thanks in advance. -- Sungjin Chun, Developer Embian chunsj at embian dot com ___ Discuss-gnustep mailing list Discuss-gnustep@gnu.org http://lists.gnu.org/mailman/listinfo/discuss

Re: [Q] Error in building the gnustep-base

2005-03-21 Thread Sungjin Chun
you have to recreate stub library from dll (with .def file which you have to create it). I hope this can help you. -- Sungjin Chun, Developer Embian chunsj at embian dot com ___ Discuss-gnustep mailing list

[Q] GNUstep Building on Windows Platform(Latest CVS version)

2005-03-14 Thread Sungjin Chun
for building GNUstep on Windows and I want to know if there's anyone who make success, pleast let me know your tool selection; like version of MinGW, gcc and etc. My version of gcc is 3.4.2 Thanks in advance. -- Sungjin Chun, Developer Embian chunsj

Patch for GSXMLRPC in Mac OS X and others

2005-03-12 Thread Sungjin Chun
this :-) macosx.diff Description: Binary data -- Sungjin Chun, Developer Embian chunsj at embian dot com___ Discuss-gnustep mailing list Discuss-gnustep@gnu.org http://lists.gnu.org/mailman/listinfo

Re: [Q] XMLRPC in GSXML.m cannot be compiled in Mac OS X

2005-03-11 Thread Sungjin Chun
on that. Patches would be gratefully accepted. -- Sungjin Chun, Developer Embian chunsj at embian dot com ___ Discuss-gnustep mailing list Discuss-gnustep@gnu.org http://lists.gnu.org/mailman/listinfo/discuss

[Q] XMLRPC in GSXML.m cannot be compiled in Mac OS X

2005-03-10 Thread Sungjin Chun
in gnustep-base only? If not I think it could be run with Cocoa... Thanks in advance. -- Sungjin Chun, Developer Embian chunsj at embian dot com ___ Discuss-gnustep mailing list Discuss-gnustep@gnu.org http

Re: [Q] NSCharacterSet difference between Cocoa and GNUstep?

2005-03-04 Thread Sungjin Chun
by one :-) On Mar 05, 2005, at 12:33 AM, Robert Lillack wrote: May i ask which XMLRPC framework you are talking about? I never knew there was one, compatible with GNUstep... -- Sungjin Chun, Developer Embian [EMAIL PROTECTED

XMLRPC in GNUstep, Great work!

2005-03-04 Thread Sungjin Chun
Hi, I've asked XMLRPC/CharacterSet related questions to the mailling list and you guys make XMLRPC into the GNUstep. Wow, what a great response! I haven't tried XMLRPC in GSXML, but it seems cool, simple and elegant. :-) -- Sungjin Chun

Re: [Q] Where is EOAccess/EOPrivate.m?

2005-02-28 Thread Sungjin Chun
as soon as time permits. Cheers, David -- Sungjin Chun, Developer Embian [EMAIL PROTECTED] ___ Discuss-gnustep mailing list Discuss-gnustep@gnu.org http://lists.gnu.org/mailman/listinfo/discuss-gnustep

Re: [Q] How can I display Window using StepTalk?

2005-02-24 Thread Sungjin Chun
Gorm. One thing I am currently experimenting with is compiling a Gorm gui as a Bundle instead of an App, and making the controller just a place-holder that can take a delegate at runtime. Matt -- Sungjin Chun, Developer Embian [EMAIL PROTECTED

Re: [Q] How can I display Window using StepTalk?

2005-02-24 Thread Sungjin Chun
that depends on a small external framework I wrote: http://lists.gnu.org/archive/html/discuss-gnustep/2005-02/ msg00446.html. -- Sungjin Chun, Developer Embian [EMAIL PROTECTED] ___ Discuss-gnustep mailing list

Re: [Q] How can I display Window using StepTalk?

2005-02-24 Thread Sungjin Chun
) styleMask:15 backing: NSBackingStoreBuffered defer: YES. -- Sungjin Chun, Developer Embian [EMAIL PROTECTED] ___ Discuss-gnustep

StepTalk Patch and Xcode Project for Mac OS X

2005-02-21 Thread Sungjin Chun
developer can make my patch and Xcode project file better. That's all. Here is my patch/project tar file. MacOSX.tgz Description: GNU Zip compressed data Thanks. -- Sungjin Chun, Developer Embian [EMAIL PROTECTED

[Q] Where is EOAccess/EOPrivate.m?

2005-02-20 Thread Sungjin Chun
. -- Sungjin Chun, Developer Embian [EMAIL PROTECTED] ___ Discuss-gnustep mailing list Discuss-gnustep@gnu.org http://lists.gnu.org/mailman/listinfo/discuss-gnustep

Re: [Q] Porting StepTalk to Mac OS X(ObjC Runtime Compatibility)

2005-02-17 Thread Sungjin Chun
On Feb 17, 2005, at 03:56 PM, Alex Perez wrote: Please contact stefan urbanek immediately, at [EMAIL PROTECTED] He is the current StepTalk maintainer, and is desperately looking for someone to finish my port of StepTalk to OS X. You can grab the (sort-of functional) source from my website at

Re: [Q] Porting StepTalk to Mac OS X(ObjC Runtime Compatibility)

2005-02-17 Thread Sungjin Chun
. -- Sungjin Chun, Developer Embian [EMAIL PROTECTED] ___ Discuss-gnustep mailing list Discuss-gnustep@gnu.org http://lists.gnu.org/mailman/listinfo/discuss-gnustep

[Q] Framework Compatibility in Mac OS X

2005-02-17 Thread Sungjin Chun
with other frameworks but I'm not sure on this. Thanks in advance. -- Sungjin Chun, Developer Embian [EMAIL PROTECTED] ___ Discuss-gnustep mailing list Discuss-gnustep@gnu.org http://lists.gnu.org/mailman

[Q] Porting StepTalk to Mac OS X(ObjC Runtime Compatibility)

2005-02-16 Thread Sungjin Chun
in advance. -- Sungjin Chun, Developer Embian [EMAIL PROTECTED] ___ Discuss-gnustep mailing list Discuss-gnustep@gnu.org http://lists.gnu.org/mailman/listinfo/discuss-gnustep