You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@xerces.apache.org by jb...@apache.org on 2005/06/07 23:31:21 UTC

svn commit: r189445 - in /xerces/c/branches/jberry/3.0-unstable/lib: Makefile.am Makefile.in iswspace.c iswspace.h stricmp.c stricmp.h strnicmp.c strnicmp.h towlower.c towlower.h towupper.c towupper.h xerces_compat.c

Author: jberry
Date: Tue Jun  7 14:31:20 2005
New Revision: 189445

URL: http://svn.apache.org/viewcvs?rev=189445&view=rev
Log:
Set svn:keywords and svn:eol-style on files in lib directory
Fix mixed line ends on stricmp.c.


Modified:
    xerces/c/branches/jberry/3.0-unstable/lib/Makefile.am   (contents, props changed)
    xerces/c/branches/jberry/3.0-unstable/lib/Makefile.in   (contents, props changed)
    xerces/c/branches/jberry/3.0-unstable/lib/iswspace.c   (props changed)
    xerces/c/branches/jberry/3.0-unstable/lib/iswspace.h   (props changed)
    xerces/c/branches/jberry/3.0-unstable/lib/stricmp.c   (contents, props changed)
    xerces/c/branches/jberry/3.0-unstable/lib/stricmp.h   (props changed)
    xerces/c/branches/jberry/3.0-unstable/lib/strnicmp.c   (contents, props changed)
    xerces/c/branches/jberry/3.0-unstable/lib/strnicmp.h   (props changed)
    xerces/c/branches/jberry/3.0-unstable/lib/towlower.c   (props changed)
    xerces/c/branches/jberry/3.0-unstable/lib/towlower.h   (props changed)
    xerces/c/branches/jberry/3.0-unstable/lib/towupper.c   (props changed)
    xerces/c/branches/jberry/3.0-unstable/lib/towupper.h   (props changed)
    xerces/c/branches/jberry/3.0-unstable/lib/xerces_compat.c   (contents, props changed)

Modified: xerces/c/branches/jberry/3.0-unstable/lib/Makefile.am
URL: http://svn.apache.org/viewcvs/xerces/c/branches/jberry/3.0-unstable/lib/Makefile.am?rev=189445&r1=189444&r2=189445&view=diff
==============================================================================
--- xerces/c/branches/jberry/3.0-unstable/lib/Makefile.am (original)
+++ xerces/c/branches/jberry/3.0-unstable/lib/Makefile.am Tue Jun  7 14:31:20 2005
@@ -15,7 +15,7 @@
 #
 
 #
-# $Id: DOM.hpp,v 1.12 2004/09/08 13:55:38 peiyongz Exp $
+# $Id$
 #
 
 

Propchange: xerces/c/branches/jberry/3.0-unstable/lib/Makefile.am
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: xerces/c/branches/jberry/3.0-unstable/lib/Makefile.am
------------------------------------------------------------------------------
    svn:keywords = Author Date Id Revision

Modified: xerces/c/branches/jberry/3.0-unstable/lib/Makefile.in
URL: http://svn.apache.org/viewcvs/xerces/c/branches/jberry/3.0-unstable/lib/Makefile.in?rev=189445&r1=189444&r2=189445&view=diff
==============================================================================
--- xerces/c/branches/jberry/3.0-unstable/lib/Makefile.in (original)
+++ xerces/c/branches/jberry/3.0-unstable/lib/Makefile.in Tue Jun  7 14:31:20 2005
@@ -31,7 +31,7 @@
 #
 
 #
-# $Id: DOM.hpp,v 1.12 2004/09/08 13:55:38 peiyongz Exp $
+# $Id$
 #
 
 SOURCES = $(libcompat_la_SOURCES)

Propchange: xerces/c/branches/jberry/3.0-unstable/lib/Makefile.in
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: xerces/c/branches/jberry/3.0-unstable/lib/Makefile.in
------------------------------------------------------------------------------
    svn:keywords = Author Date Id Revision

Propchange: xerces/c/branches/jberry/3.0-unstable/lib/iswspace.c
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: xerces/c/branches/jberry/3.0-unstable/lib/iswspace.c
------------------------------------------------------------------------------
    svn:keywords = Author Date Id Revision

Propchange: xerces/c/branches/jberry/3.0-unstable/lib/iswspace.h
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: xerces/c/branches/jberry/3.0-unstable/lib/iswspace.h
------------------------------------------------------------------------------
    svn:keywords = Author Date Id Revision

Modified: xerces/c/branches/jberry/3.0-unstable/lib/stricmp.c
URL: http://svn.apache.org/viewcvs/xerces/c/branches/jberry/3.0-unstable/lib/stricmp.c?rev=189445&r1=189444&r2=189445&view=diff
==============================================================================
--- xerces/c/branches/jberry/3.0-unstable/lib/stricmp.c (original)
+++ xerces/c/branches/jberry/3.0-unstable/lib/stricmp.c Tue Jun  7 14:31:20 2005
@@ -21,19 +21,19 @@
 #include "stricmp.h"
 #include "config.h"
 
-#if defined(HAVE_STRING)
-#include <string.h>
-#endif
-
-#if defined(HAVE_STRINGS)
-#include <strings.h>
+#if HAVE_STRING
+#	include <string.h>
+#endif
+#if HAVE_STRINGS
+#	include <strings.h>
 #endif
 
 int stricmp(const char* const str1, const char* const  str2) 
 {
-#if defined(HAVE_STRCASECMP)
+#if HAVE_STRCASECMP
 	return strcasecmp(str1, str2);
 #else
 	#error Need implementation of stricmp compatibility function
-#endif
+#endif
+
 }

Propchange: xerces/c/branches/jberry/3.0-unstable/lib/stricmp.c
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: xerces/c/branches/jberry/3.0-unstable/lib/stricmp.c
------------------------------------------------------------------------------
    svn:keywords = Author Date Id Revision

Propchange: xerces/c/branches/jberry/3.0-unstable/lib/stricmp.h
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: xerces/c/branches/jberry/3.0-unstable/lib/stricmp.h
------------------------------------------------------------------------------
    svn:keywords = Author Date Id Revision

Modified: xerces/c/branches/jberry/3.0-unstable/lib/strnicmp.c
URL: http://svn.apache.org/viewcvs/xerces/c/branches/jberry/3.0-unstable/lib/strnicmp.c?rev=189445&r1=189444&r2=189445&view=diff
==============================================================================
--- xerces/c/branches/jberry/3.0-unstable/lib/strnicmp.c (original)
+++ xerces/c/branches/jberry/3.0-unstable/lib/strnicmp.c Tue Jun  7 14:31:20 2005
@@ -21,13 +21,16 @@
 #include "strnicmp.h"
 #include "config.h"
 
-#if defined(HAVE_STRING)
-#include <string.h>
+#if HAVE_STRING
+#	include <string.h>
+#endif
+#if HAVE_STRINGS
+#	include <strings.h>
 #endif
 
 int strnicmp(const char* const str1, const char* const  str2, const unsigned int count)
 {
-#if defined(HAVE_STRNCASECMP)
+#if HAVE_STRNCASECMP
 	return (count == 0) ? 0 : strncasecmp( str1, str2, count);
 #else
 	#error Need implementation of strnicmp compatibility function

Propchange: xerces/c/branches/jberry/3.0-unstable/lib/strnicmp.c
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: xerces/c/branches/jberry/3.0-unstable/lib/strnicmp.c
------------------------------------------------------------------------------
    svn:keywords = Author Date Id Revision

Propchange: xerces/c/branches/jberry/3.0-unstable/lib/strnicmp.h
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: xerces/c/branches/jberry/3.0-unstable/lib/strnicmp.h
------------------------------------------------------------------------------
    svn:keywords = Author Date Id Revision

Propchange: xerces/c/branches/jberry/3.0-unstable/lib/towlower.c
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: xerces/c/branches/jberry/3.0-unstable/lib/towlower.c
------------------------------------------------------------------------------
    svn:keywords = Author Date Id Revision

Propchange: xerces/c/branches/jberry/3.0-unstable/lib/towlower.h
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: xerces/c/branches/jberry/3.0-unstable/lib/towlower.h
------------------------------------------------------------------------------
    svn:keywords = Author Date Id Revision

Propchange: xerces/c/branches/jberry/3.0-unstable/lib/towupper.c
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: xerces/c/branches/jberry/3.0-unstable/lib/towupper.c
------------------------------------------------------------------------------
    svn:keywords = Author Date Id Revision

Propchange: xerces/c/branches/jberry/3.0-unstable/lib/towupper.h
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: xerces/c/branches/jberry/3.0-unstable/lib/towupper.h
------------------------------------------------------------------------------
    svn:keywords = Author Date Id Revision

Modified: xerces/c/branches/jberry/3.0-unstable/lib/xerces_compat.c
URL: http://svn.apache.org/viewcvs/xerces/c/branches/jberry/3.0-unstable/lib/xerces_compat.c?rev=189445&r1=189444&r2=189445&view=diff
==============================================================================
--- xerces/c/branches/jberry/3.0-unstable/lib/xerces_compat.c (original)
+++ xerces/c/branches/jberry/3.0-unstable/lib/xerces_compat.c Tue Jun  7 14:31:20 2005
@@ -15,7 +15,7 @@
  */
 
 /*
- * $Id: DOM.hpp,v 1.12 2004/09/08 13:55:38 peiyongz Exp $
+ * $Id$
  */
 
 

Propchange: xerces/c/branches/jberry/3.0-unstable/lib/xerces_compat.c
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: xerces/c/branches/jberry/3.0-unstable/lib/xerces_compat.c
------------------------------------------------------------------------------
    svn:keywords = Author Date Id Revision



---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@xerces.apache.org
For additional commands, e-mail: commits-help@xerces.apache.org