Pingus / pingus

GNU General Public License v3.0
170 stars 31 forks source link

wrong case of system include file path #178

Closed ryandesign closed 7 years ago

ryandesign commented 8 years ago

pingus fails to build on case-sensitive filesystems. This patch fixes it:

--- src/pingus/pingus_main.cpp.orig 2016-12-03 08:36:18.000000000 -0600
+++ src/pingus/pingus_main.cpp  2016-12-03 08:42:01.000000000 -0600
@@ -38,7 +38,7 @@
 */
 #include <unistd.h>
 #include <strings.h>
-#include <SYS/stat.h>
+#include <sys/stat.h>
 extern "C" {
   typedef unsigned char UInt8;
   typedef void* CFTypeRef;