From: <ale...@us...> - 2010-10-05 12:17:56
|
Revision: 51628 http://firebird.svn.sourceforge.net/firebird/?rev=51628&view=rev Author: alexpeshkoff Date: 2010-10-05 12:17:50 +0000 (Tue, 05 Oct 2010) Log Message: ----------- Fixed CORE-3156: Problems using UDFs on Mac Modified Paths: -------------- firebird/branches/B2_5_Release/builds/posix/darwin.defaults Modified: firebird/branches/B2_5_Release/builds/posix/darwin.defaults =================================================================== --- firebird/branches/B2_5_Release/builds/posix/darwin.defaults 2010-10-05 03:16:56 UTC (rev 51627) +++ firebird/branches/B2_5_Release/builds/posix/darwin.defaults 2010-10-05 12:17:50 UTC (rev 51628) @@ -46,7 +46,7 @@ # Per-library link rules LINK_UDF = $(LIB_LINK) $(LIB_BUNDLE_OPTIONS) -L$(LIB) -LINK_UDF_LIBS = -lm -lib_util $(THR_FLAGS) $(THR_LIBS) +LINK_UDF_LIBS = -lm $(THR_FLAGS) $(THR_LIBS) LINK_IB_UTIL = $(LIB_LINK) $(LINK_IBUTIL_SYMBOLS) $(LIB_LINK_OPTIONS)\ $(LIB_LINK_RPATH) $(LIB_LINK_SONAME) This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <pau...@us...> - 2014-09-17 12:55:32
|
Revision: 60044 http://sourceforge.net/p/firebird/code/60044 Author: paulbeach Date: 2014-09-17 12:55:29 +0000 (Wed, 17 Sep 2014) Log Message: ----------- Fix typo Modified Paths: -------------- firebird/branches/B2_5_Release/builds/posix/darwin.defaults Modified: firebird/branches/B2_5_Release/builds/posix/darwin.defaults =================================================================== --- firebird/branches/B2_5_Release/builds/posix/darwin.defaults 2014-09-17 01:22:54 UTC (rev 60043) +++ firebird/branches/B2_5_Release/builds/posix/darwin.defaults 2014-09-17 12:55:29 UTC (rev 60044) @@ -42,7 +42,7 @@ PLAT_CLASSIC_POST_TARGET=darwin_finish_cs_framework PLAT_SUPER_PRE_TARGET=darwin_setup_framework -PLAT_SUPER_POST_TRAGET=darwin_finish_ss_framework +PLAT_SUPER_POST_TARGET=darwin_finish_ss_framework PLATFORM_POSTBUILD_TARGET=darwin_postbuild_target This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ma...@us...> - 2015-06-15 15:11:09
|
Revision: 61829 http://sourceforge.net/p/firebird/code/61829 Author: mapopa Date: 2015-06-15 15:11:07 +0000 (Mon, 15 Jun 2015) Log Message: ----------- Apply libo patch for El Capitan https://github.com/LibreOffice/core/commit/a799d7c9a66464f33bd8ee42d535e29a976d64ae Modified Paths: -------------- firebird/branches/B2_5_Release/builds/posix/darwin.defaults Modified: firebird/branches/B2_5_Release/builds/posix/darwin.defaults =================================================================== --- firebird/branches/B2_5_Release/builds/posix/darwin.defaults 2015-06-15 14:54:42 UTC (rev 61828) +++ firebird/branches/B2_5_Release/builds/posix/darwin.defaults 2015-06-15 15:11:07 UTC (rev 61829) @@ -57,7 +57,7 @@ LINK_TRACE = $(LIB_LINK) $(LIB_BUNDLE_OPTIONS) -LINK_CLIENT = $(LIB_LINK) -nodefaultlibs $(LINK_FIREBIRD_CLIENT_SYMBOLS) $(LIB_LINK_OPTIONS) $(LIB_LINK_IMPLIB)\ +LINK_CLIENT = $(LIB_LINK) $(LINK_FIREBIRD_CLIENT_SYMBOLS) $(LIB_LINK_OPTIONS) $(LIB_LINK_IMPLIB)\ $(LIB_CLIENT_LINK_OPTIONS) $(LIB_LINK_SONAME) ifeq (@VOID_PTR_SIZE@,8) This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <pau...@us...> - 2015-06-16 11:24:30
|
Revision: 61834 http://sourceforge.net/p/firebird/code/61834 Author: paulbeach Date: 2015-06-16 11:24:28 +0000 (Tue, 16 Jun 2015) Log Message: ----------- Fix for gcc 4.1 problem is no longer needed. gcc 4.2 from MacOSX 10.8 Modified Paths: -------------- firebird/branches/B2_5_Release/builds/posix/darwin.defaults Modified: firebird/branches/B2_5_Release/builds/posix/darwin.defaults =================================================================== --- firebird/branches/B2_5_Release/builds/posix/darwin.defaults 2015-06-16 00:13:28 UTC (rev 61833) +++ firebird/branches/B2_5_Release/builds/posix/darwin.defaults 2015-06-16 11:24:28 UTC (rev 61834) @@ -60,11 +60,6 @@ LINK_CLIENT = $(LIB_LINK) $(LINK_FIREBIRD_CLIENT_SYMBOLS) $(LIB_LINK_OPTIONS) $(LIB_LINK_IMPLIB)\ $(LIB_CLIENT_LINK_OPTIONS) $(LIB_LINK_SONAME) -ifeq (@VOID_PTR_SIZE@,8) -GCCS=-lgcc_s.10.5 -else -GCCS=-lgcc_s.10.4 -endif STATIC_CXX_SUPPORT = -lsupc++ $(GCCS) -lgcc_eh -lSystem LINK_EMBED = $(LIB_LINK) $(LINK_FIREBIRD_EMBED_SYMBOLS) $(LIB_LINK_OPTIONS)\ This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |