RandyGaul / qu3e

Lightweight and Simple 3D Open Source Physics Engine in C++
zlib License
920 stars 110 forks source link

Arch Linux compilation errors #30

Closed kaadmy closed 7 years ago

kaadmy commented 7 years ago

When compiling on latest Arch Linux 64-bit, I get numerous errors regarding the FILE type being nonexistent, due to not including stdio.h in several files.

Another issue while linking freeglut (why is freeglut bundled?) is undefined reference to symbol 'XPending'

RandyGaul commented 7 years ago

Thanks for noting the issues. I don't have any sort of arch linux VM setup -- if anyone would submit a pull request that would be greatly appreciated.

kaadmy commented 7 years ago

Is there a single include header for all system includes such as stdio.h, stdlib.h, etc, or should I include them separately in each file that requires it/them?

RandyGaul commented 7 years ago

No precompiled header or anything. The individual C++ files just bring in what they need.

RandyGaul commented 7 years ago

Closing since you so kindly contributed a pull request :) Feel free to comment here if you need anything.