Author Topic: to Mac OS programmers  (Read 3148 times)

tomek-k

  • Guest
to Mac OS programmers
« on: January 29, 2007, 09:33:00 pm »
Hi.
I've noticed that there are some programmers from Mac community on this forum.

I have a question to them - is there the GNU build system available for Mac systems?? The "configure - make" thing.
Is it possible to just download some source tarball that uses this build system and just build the program on Mac OS?

I have a little project in C++ and I would like to know if it is possible to build it and run it under Mac OS/Mac OSX.

TinMan

  • Posts: 1019
  • Turrets: +49/-70
    • http://neonpulse.net
to Mac OS programmers
« Reply #1 on: January 29, 2007, 09:52:01 pm »
http://www.apple.com/macosx/features/xcode/
http://fink.sourceforge.net/
These should answer some of your questions. The code usually has to be modified a little to run on Mac OSX, especially if it has a GUI.
Code: [Select]
Linux: ~/.tremulous/base/
Mac: ~/Library/Application\ Support/Tremulous/base/
Windows: C:\Documents and Settings\username\Local Settings\Application Data\Tremulous\base\
NeonPulse
http://neonpulse.net/media/games/tremulous/base/autoexec.cfg

tomek-k

  • Guest
to Mac OS programmers
« Reply #2 on: January 29, 2007, 10:37:54 pm »
Thanks for the answer.
As I've understood from what I've read on the given sites, there is some software that helps porting programs written for UNIX-like systems to Mac.
But I don't owe a Mac, (and am not even willing to... :P ), so I can't try that out, but if I understand - the software contains tools for building programs that use GNU build system, am I right?

My project is a game that doesn't use any GUI libraries.
It uses only SDL and OpenGL, so im pretty sure that the code should be compatible with Mac (however there may be some problems with OpenGL API - it is a bit different under linux and under windows for example).

And maby there are some people who would like to help me in creating Mac binaries of my program? :wink:
It's GPL'd of course

gareth

  • Posts: 710
  • Turrets: +38/-89
to Mac OS programmers
« Reply #3 on: January 30, 2007, 09:27:12 am »

tomek-k

  • Guest
to Mac OS programmers
« Reply #4 on: January 30, 2007, 12:50:50 pm »
thanks for the link!
I'll try in there