Page 1 of 1

Installing for the case sensitive HFS+ on OS X

Posted: Fri Aug 07 2015 12:05 am
by kenji
This is a fix to build CopperSpice for the case sensitive HFS+ on OS X.

Code: Select all

diff --git a/src/core/Makefile.am b/src/core/Makefile.am
index c69e928..d3fdebf 100644
--- a/src/core/Makefile.am
+++ b/src/core/Makefile.am
@@ -26,7 +26,7 @@ lib_libCsCore1_la_LDFLAGS += -lole32 -lws2_32 -Wl,-luuid
 endif

 if OSTYPE_DARWIN
-lib_libCsCore1_la_LDFLAGS += -framework CoreFoundation -framework Security -framework ApplicationServices -lObjC
+lib_libCsCore1_la_LDFLAGS += -framework CoreFoundation -framework Security -framework ApplicationServices -lobjc
 endif

 if ZLIB
diff --git a/src/gui/Makefile.am b/src/gui/Makefile.am
index 733195f..09f2fb1 100644
--- a/src/gui/Makefile.am
+++ b/src/gui/Makefile.am
@@ -40,7 +40,7 @@ if OSTYPE_DARWIN
 lib_libCsGui1_la_SOURCES += src/gui/mac/qrc_macresources.cpp
 lib_libCsGui1_la_OBJCXXFLAGS += $(lib_libCsGui1_la_CXXFLAGS)
 lib_libCsGui1_la_CXXFLAGS += -DQT_NO_STYLE_WINDOWSVISTA
-lib_libCsGui1_la_LDFLAGS += -lObjC -framework Carbon
+lib_libCsGui1_la_LDFLAGS += -lobjc -framework Carbon
 endif

 EXTRA_DIST += src/gui/mac/macresources.qrc \

Re: Installing for the case sensitive HFS+ on OS X

Posted: Sat Aug 08 2015 4:38 am
by ansel
Thank you very much for your contribution! We have applied your change and it will be in the next release of CopperSpice.