Hey guys, I already asked on IRC so, sorry for bothering. But I was able to SSH into my friend&#39;s mac for the first time in a long time (<span style="font-style: italic;">Probably like, 3 months</span>) and a lot in my game has changed since then. I enabled freetype support with BUILD_FREETYPE, and I also enabled OGG Vorbis support as well as curl support. All of this works perfectly on Linux and Windows, however, when I tried it on Mac OS X, it didn&#39;t work. Note that before, the game built perfectly.
<br><br>I realized I needed the libraries, so I got them and compiled and installed but it still didn&#39;t find the libraries, so I checked in the /lib and /include directories but there was nothing there. So I basically did a ./configure --prefix=/tmp/whateverlibitwas and then did the rest as normal, and at the very end moved the things within /tmp/whateverlibitwas/lib to ioquake3&#39;s libs/macosx folder, since I had already seen libSDL in there I figured it&#39;d pick those up too. Well, I started getting &#39;No such file or directory&#39; errors in files where I&#39;d do #include &lt;blah/blah.h&gt;, and so I had to change them to be relevant inclusions instead of as they were (
<span style="font-style: italic;">What I mean is, for example, I&#39;d change it to #include &quot;../blah/blah.h&quot;</span>), although inconvenient, I was desperate to build, so I tried. I noticed the libraries weren&#39;t being picked up after all, so after some ignorant skimming through the Makefile (
<span style="font-style: italic;">Ignorant cause I&#39;m not Makefile writer, I mean, I can hack things up so they work usually but I can&#39;t write them out of thin air</span>), and I noticed that libSDL was being linked to explicitly, so I looked for a section in the Makefile that had to do with Mac, and to the LDFLAGS section I noticed an -L line, I man gcc&#39;d this and then /-L&#39;d, and I found out that this had to do with the inclusion of the directories it should look in for libraries. Logically, I added -Lcode/libs/macosx, but this didn&#39;t work either.
<br><br>I&#39;m sorry for going through this a roundabout way instead of just getting to the point but I want to make sure I&#39;m understood (<span style="font-style: italic;">Not because I think you guys are stupid, but because, since I&#39;m no expert at this, I&#39;m afraid I might be wording my question wrong
</span>). I now have every dylib and a file (Dynamic and static?) libraries in libs/macosx, but I&#39;m still having problems with the header inclusions and library linking. At first I noticed it was asking for -lvorbisfile, for example, and the library was actually called 
libvorbisfile.a, so I renamed it to vorbisfile (<span style="font-style: italic;">Same with the rest</span>), to no avail.<br><br>Seeing as I personally don&#39;t have a mac or have ever used one for that matter (<span style="font-style: italic;">
Other than through SSH, which I only know thanks to Linux</span>), I&#39;m rather confused as to the whole development structure of it. Where are headers and libraries held, is there a central place? What do you guys suggest I do? Tweaking everything over again just for it to work on Mac seems inconvenient, I&#39;m sure I&#39;m doing something wrong.
<br><br>Thanks guys, sorry for the long message, but I&#39;d really appreciate it. And yes, I AM using the mac build script (<span style="font-style: italic;">Always have been</span>). Thanks again, I really appreciate it.
<br>