From: <ai...@us...> - 2014-06-20 20:14:04
|
Revision: 13129 http://sourceforge.net/p/plplot/code/13129 Author: airwin Date: 2014-06-20 20:13:56 +0000 (Fri, 20 Jun 2014) Log Message: ----------- If -fvisibility=hidden is one of the options in CFLAGS then drop that option since it produces incorrect results for the freetype library. Modified Paths: -------------- trunk/cmake/epa_build/freetype/CMakeLists.txt trunk/cmake/epa_build/freetype_nohb/CMakeLists.txt Modified: trunk/cmake/epa_build/freetype/CMakeLists.txt =================================================================== --- trunk/cmake/epa_build/freetype/CMakeLists.txt 2014-05-21 22:13:13 UTC (rev 13128) +++ trunk/cmake/epa_build/freetype/CMakeLists.txt 2014-06-20 20:13:56 UTC (rev 13129) @@ -44,6 +44,8 @@ ) set(CFLAGS "$ENV{CFLAGS}") +# Drop -fvisibility=hidden since that option does not work for this package. +string(REGEX REPLACE "-fvisibility=hidden" "" CFLAGS "${CFLAGS}") # Data that is related to downloads. set(URL http://downloads.sourceforge.net/freetype/freetype-2.5.3.tar.bz2) Modified: trunk/cmake/epa_build/freetype_nohb/CMakeLists.txt =================================================================== --- trunk/cmake/epa_build/freetype_nohb/CMakeLists.txt 2014-05-21 22:13:13 UTC (rev 13128) +++ trunk/cmake/epa_build/freetype_nohb/CMakeLists.txt 2014-06-20 20:13:56 UTC (rev 13129) @@ -44,6 +44,8 @@ ) set(CFLAGS "$ENV{CFLAGS}") +# Drop -fvisibility=hidden since that option does not work for this package. +string(REGEX REPLACE "-fvisibility=hidden" "" CFLAGS "${CFLAGS}") # Data that is related to downloads. set(URL http://downloads.sourceforge.net/freetype/freetype-2.5.3.tar.bz2) This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |