You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@harmony.apache.org by dl...@apache.org on 2005/10/19 10:48:58 UTC

svn commit: r326485 - /incubator/harmony/enhanced/trunk/sandbox/contribs/bootjvm/bootJVM/jvm/src/classpath.h

Author: dlydick
Date: Wed Oct 19 01:48:49 2005
New Revision: 326485

URL: http://svn.apache.org/viewcvs?rev=326485&view=rev
Log:
Added support for CygWin from 'config/config.h'

Updated ARCH_xxx() macros for better diagnostic support.

Modified:
    incubator/harmony/enhanced/trunk/sandbox/contribs/bootjvm/bootJVM/jvm/src/classpath.h

Modified: incubator/harmony/enhanced/trunk/sandbox/contribs/bootjvm/bootJVM/jvm/src/classpath.h
URL: http://svn.apache.org/viewcvs/incubator/harmony/enhanced/trunk/sandbox/contribs/bootjvm/bootJVM/jvm/src/classpath.h?rev=326485&r1=326484&r2=326485&view=diff
==============================================================================
--- incubator/harmony/enhanced/trunk/sandbox/contribs/bootjvm/bootJVM/jvm/src/classpath.h (original)
+++ incubator/harmony/enhanced/trunk/sandbox/contribs/bootjvm/bootJVM/jvm/src/classpath.h Wed Oct 19 01:48:49 2005
@@ -41,7 +41,9 @@
  *
  * @section Control
  *
- * \$URL$ \$Id$
+ * \$URL$
+ *
+ * \$Id$
  *
  * Copyright 2005 The Apache Software Foundation
  * or its licensors, as applicable.
@@ -65,20 +67,23 @@
  * @date \$LastChangedDate$
  *
  * @author \$LastChangedBy$
+ *
  *         Original code contributed by Daniel Lydick on 09/28/2005.
  *
  * @section Reference
  *
  */
 
-ARCH_COPYRIGHT_APACHE(classpath, h, "$URL$ $Id$");
+ARCH_HEADER_COPYRIGHT_APACHE(classpath, h,
+"$URL$",
+"$Id$");
 
 
 /*!
  * @brief Delimiter betwen members of @b CLASSPATH string
  *
  */
-#ifdef CONFIG_WINDOWS
+#if defined(CONFIG_WINDOWS) || defined(CONFIG_CYGWIN)
 #define CLASSPATH_ITEM_DELIMITER_CHAR       ';'
 
 #else