r757 - branches/stable-1.0

DONOTREPLY at icculus.org DONOTREPLY at icculus.org
Sat Jul 23 21:02:12 EDT 2005


Author: icculus
Date: 2005-07-23 21:02:11 -0400 (Sat, 23 Jul 2005)
New Revision: 757

Modified:
   branches/stable-1.0/CHANGELOG
   branches/stable-1.0/physfs_internal.h
Log:
Assert define fix.


Modified: branches/stable-1.0/CHANGELOG
===================================================================
--- branches/stable-1.0/CHANGELOG	2005-07-24 01:01:35 UTC (rev 756)
+++ branches/stable-1.0/CHANGELOG	2005-07-24 01:02:11 UTC (rev 757)
@@ -8,7 +8,7 @@
            1.2.3, which properly includes the security fix. Fixed "make dist"
            to handle .svn dirs and other file changes. Removed "debian"
            directory. Fixed warning in physfs.c. Updated CWProjects.sit.
-           Upped version to 1.0.1.
+           Assert define fix. Upped version to 1.0.1.
 07132005 - Moved to zlib122, and security fix discussed here:
            http://www.cve.mitre.org/cgi-bin/cvename.cgi?name=CAN-2005-2096
 06122005 - Added support for mingw to Unix build process (thanks, Matze!).

Modified: branches/stable-1.0/physfs_internal.h
===================================================================
--- branches/stable-1.0/physfs_internal.h	2005-07-24 01:01:35 UTC (rev 756)
+++ branches/stable-1.0/physfs_internal.h	2005-07-24 01:02:11 UTC (rev 757)
@@ -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