Index: packages/isoinfra/current/ChangeLog
===================================================================
RCS file: /var/local/group/firmware/cvsroot/ecos/packages/isoinfra/current/ChangeLog,v
retrieving revision 1.1.1.1
diff -u -r1.1.1.1 ChangeLog
--- packages/isoinfra/current/ChangeLog	7 Dec 2005 12:06:35 -0000	1.1.1.1
+++ packages/isoinfra/current/ChangeLog	7 Mar 2006 16:22:55 -0000
@@ -1,3 +1,10 @@
+2006-03-07  Sergei Organov  <[EMAIL PROTECTED]>
+
+	* include/assert.h: Replace #if defined(CYGINT_xxx) with #if
+	CYGINT_xxx. CYGINT_xxx configuration variables are always
+	defined to either 0 or 1, so checks of the former form are always
+	evaluated to true.
+					 
 2005-10-20  Alexander Neundorf <[EMAIL PROTECTED]>
 	    Andrew Lunn  <[EMAIL PROTECTED]>
 
Index: packages/isoinfra/current/include/assert.h
===================================================================
RCS file: /var/local/group/firmware/cvsroot/ecos/packages/isoinfra/current/include/assert.h,v
retrieving revision 1.1.1.1
diff -u -r1.1.1.1 assert.h
--- packages/isoinfra/current/include/assert.h	7 Dec 2005 12:06:35 -0000	1.1.1.1
+++ packages/isoinfra/current/include/assert.h	7 Mar 2006 15:27:50 -0000
@@ -73,7 +73,7 @@
 
 /* First preference is to be standards compliant */
 
-#if defined(CYGINT_ISO_STDIO_FORMATTED_IO) && defined(CYGINT_ISO_EXIT)
+#if CYGINT_ISO_STDIO_FORMATTED_IO && CYGINT_ISO_EXIT
 
 # include <stdio.h>
 # include <stdlib.h>

Reply via email to