Update of /cvsroot/adobe-source/sandbox/adobe-source/adobe/config/compiler
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv25760/adobe/config/compiler
Modified Files:
gcc.hpp visualc.hpp
Log Message:
the state of things. We've been working to isolate static_text_t (now called label_t) but it has been slow going because we're trying to wrestle with perfecting the API and what effect that has on other components that were using label_t in a way that isn't in accordance with the new API we're trying to write. As it stands static_disabled_text_m is broken on both platforms, but everything else should be working better.
Index: gcc.hpp
===================================================================
RCS file: /cvsroot/adobe-source/sandbox/adobe-source/adobe/config/compiler/gcc.hpp,v
retrieving revision 1.3
retrieving revision 1.4
diff -C2 -d -r1.3 -r1.4
*** gcc.hpp 3 Feb 2006 18:33:35 -0000 1.3
--- gcc.hpp 23 Feb 2006 23:28:54 -0000 1.4
***************
*** 7,12 ****
/*************************************************************************************************/
! #ifndef ADOBE_CONFIG_COMPILER_DARWIN_HPP
! #define ADOBE_CONFIG_COMPILER_DARWIN_HPP
/*************************************************************************************************/
--- 7,12 ----
/*************************************************************************************************/
! #ifndef ADOBE_CONFIG_COMPILER_GCC_HPP
! #define ADOBE_CONFIG_COMPILER_GCC_HPP
/*************************************************************************************************/
***************
*** 18,21 ****
--- 18,27 ----
/*************************************************************************************************/
+ #ifndef ADOBE_COMPILER_GCC
+ #define ADOBE_COMPILER_GCC 1
+ #endif
+
+ /*************************************************************************************************/
+
// test exceptions here
Index: visualc.hpp
===================================================================
RCS file: /cvsroot/adobe-source/sandbox/adobe-source/adobe/config/compiler/visualc.hpp,v
retrieving revision 1.3
retrieving revision 1.4
diff -C2 -d -r1.3 -r1.4
*** visualc.hpp 3 Feb 2006 18:33:35 -0000 1.3
--- visualc.hpp 23 Feb 2006 23:28:54 -0000 1.4
***************
*** 18,21 ****
--- 18,27 ----
/*************************************************************************************************/
+ #ifndef ADOBE_COMPILER_MSVC
+ #define ADOBE_COMPILER_MSVC 1
+ #endif
+
+ /*************************************************************************************************/
+
#ifndef ADOBE_TEST_MICROSOFT_NO_DEPRECATE
#define ADOBE_TEST_MICROSOFT_NO_DEPRECATE 1
|