|
From: <ai...@us...> - 2010-04-19 16:23:34
|
Revision: 10926
http://plplot.svn.sourceforge.net/plplot/?rev=10926&view=rev
Author: airwin
Date: 2010-04-19 16:23:26 +0000 (Mon, 19 Apr 2010)
Log Message:
-----------
TEST_FOR_MISSING_GLYPHS ==> PL_TEST_FOR_MISSING_GLYPHS
Modified Paths:
--------------
trunk/src/CMakeLists.txt
trunk/src/plsym.c
Modified: trunk/src/CMakeLists.txt
===================================================================
--- trunk/src/CMakeLists.txt 2010-04-19 02:37:25 UTC (rev 10925)
+++ trunk/src/CMakeLists.txt 2010-04-19 16:23:26 UTC (rev 10926)
@@ -74,7 +74,7 @@
endif(NOT PLSYM_COMPILE_PROPS)
set_source_files_properties(
plsym.c
- PROPERTIES COMPILE_FLAGS "${PLSYM_COMPILE_PROPS} -DTEST_FOR_MISSING_GLYPHS"
+ PROPERTIES COMPILE_FLAGS "${PLSYM_COMPILE_PROPS} -DPL_TEST_FOR_MISSING_GLYPHS"
)
endif(NOT HERSHEY_FALLBACK)
Modified: trunk/src/plsym.c
===================================================================
--- trunk/src/plsym.c 2010-04-19 02:37:25 UTC (rev 10925)
+++ trunk/src/plsym.c 2010-04-19 16:23:26 UTC (rev 10926)
@@ -239,7 +239,7 @@
* If the function KNOWS there isn't a unicode equivalent, then it will
* try to render it as a hershey font. Understandably, this might make
* testing out the unicode functions a little tricky, so if you want
- * to disable this behaviour, recompile with TEST_FOR_MISSING_GLYPHS
+ * to disable this behaviour, recompile with PL_TEST_FOR_MISSING_GLYPHS
* defined.
\*--------------------------------------------------------------------------*/
@@ -267,7 +267,7 @@
if ( ( unicode_char == 0 ) || ( idx == -1 ) )
{
-#ifndef TEST_FOR_MISSING_GLYPHS
+#ifndef PL_TEST_FOR_MISSING_GLYPHS
plhrsh2( ch, x, y );
#endif
}
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|