From: Daniel de C. G. <dc...@fi...> - 2004-01-20 11:54:59
|
Michael, thanks a lot, I've compiled iaxcomm for Windows XP with success = ! My steps were : 1. Download wxMSW-2.4.2-setup.zip at www.wxwindows.org, unzip it and = install it with setup.exe at C:\wxWindows-2.4.2 . 2. Set enviroment variable WXWIN=3DC:/wxWindows-2.4.2 (note forward = slash) 3. Download setup.exe from http://www.cygwin.com and install Base and = Devel/Make packages at c:\cygwin 4. Download and install MinGW-3.1.0-1.exe from http://www.mingw.org 5. Run a cygwin bash, cd /cygdrive/c/wxWindows-2.4.2/src/msw and do make = -f makefile.g95 6. Still at cygwin bash, cd /cygdrive/c/wxWindows-2.4.2/contrib/src/xrc = and do make -f makefile.g95 7. Again, still at cygwin bash, cd = /cygdrive/c/wxWindows-2.4.2/contrib/utils/wxrc and do make -f = makefile.g95, then cp -a wxrc.exe /usr/bin (or anyother place at your = path) 8. Download the honorable iaxclient.tar.gz somewhere I forgot and untar = it anywhere you please. Go there, do a make and voi la. You'll have a 30 = Mb iaxcomm.exe . Now, you may 'strip iaxcomm.exe' and it'll be 2mb. Thanks a lot ! Cheers ! --- =F8 Daniel C. Gomes <dc...@fi...> =F8 =F8 Especialista em Desenvolvimento de Sistemas =F8 =F8 FITec Inova=E7=F5es Tecnol=F3gicas =F8 Tel: (+55)(31)3263-4193 =F8 = Fax: (+55)(31)3263-4003 =F8 -----Original Message----- From: Michael Van Donselaar [mailto:mv...@va...] Sent: segunda-feira, 19 de janeiro de 2004 12:53 To: Daniel de Carvalho Gomes Subject: Re: [Iaxclient-devel] iaxcomm and win32 On Mon, 19 Jan 2004 10:58:52 -0200, Daniel de Carvalho Gomes <dc...@fi...> wrote: >Hi all, > > I wonder how someone could ever compile (that's not the biggest = problem) and LINK (man, wxEmptyString is SO unresolved) iaxcomm at win32 = ... >I tried a lot of stuff, Cygwin, Bloodshed Dev-C++, Borland C++ 5.5 ... = frustrating !!! >I'd be very happy if someone post a step-bt-step guide to compile = iaxcomm for Windows XP, no matter the compiler. Please ! Daniel, Do you have the wxWindows library installed for your compiler? I'll update the README in the next day or so, but here's the lowdown: 8<----- In order to make linux binaries redistibutable, we need to compile the = wxWindows stuff as static libraries, rather than shared. 1. Untar the wxWindows source distribution, and cd into it. 2. run configure a. Windows ./configure b. Linux-Gtk ./configure --disable-shared 3. make and install make install 4. Now we need to compile the xrc library cd contrib/src/xrc make install 5. Since we're now compiling in the xrc resources, we need to compile = wxrc cd ../../utils/wxrc make cp wxrc /usr/bin 6. Enjoy wxWindows with all of that xrc-y goodness! 8<--- There's some info on how I got MinGW installed on my Win2000 box in iaxclient/simpleclient/wx/README. Hope this helps. Additional feedback is, of course, appreciated. > >Thanks a lot, > |