Installing for the case sensitive HFS+ on OS X

Discuss issues related to installing or building
Post Reply
kenji
Posts: 1
Joined: Thu Aug 06 2015 3:00 pm

Installing for the case sensitive HFS+ on OS X

Post 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 \
ansel
Posts: 152
Joined: Fri Apr 10 2015 8:23 am

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

Post by ansel »

Thank you very much for your contribution! We have applied your change and it will be in the next release of CopperSpice.
Ansel Sermersheim
CopperSpice Cofounder
Post Reply