r756 - trunk

DONOTREPLY at icculus.org DONOTREPLY at icculus.org
Sat Jul 23 21:01:35 EDT 2005


Author: icculus
Date: 2005-07-23 21:01:35 -0400 (Sat, 23 Jul 2005)
New Revision: 756

Modified:
   trunk/CHANGELOG
   trunk/physfs_internal.h
Log:
Assert define fix.


Modified: trunk/CHANGELOG
===================================================================
--- trunk/CHANGELOG	2005-07-24 00:21:00 UTC (rev 755)
+++ trunk/CHANGELOG	2005-07-24 01:01:35 UTC (rev 756)
@@ -7,7 +7,7 @@
            includes the security fix. Fixed "make dist" to handle .svn dirs
            and other file changes. Removed "debian" directory. Allow a mount
            point of NULL to be "/", per the documentation. Fixed warning in
-           physfs.c. Updated CWProjects.sit.
+           physfs.c. Assert definition fix. Updated CWProjects.sit.
            Upped version to 1.1.0 ... first release of 1.1 dev branch!
 07212005 - Patched to compile on OS/2 again.
 07132005 - Updated zlib to 1.2.2, and patched it for this security hole:

Modified: trunk/physfs_internal.h
===================================================================
--- trunk/physfs_internal.h	2005-07-24 00:21:00 UTC (rev 755)
+++ trunk/physfs_internal.h	2005-07-24 01:01:35 UTC (rev 756)
@@ -18,7 +18,7 @@
 
 #ifdef HAVE_ASSERT_H
 #include <assert.h>
-#else
+#elif (!defined assert)
 #define assert(x)
 #endif
 




More information about the physfs-commits mailing list