r820 - in trunk: . archivers platform test
DONOTREPLY at icculus.org
DONOTREPLY at icculus.org
Sun Mar 11 05:44:21 EDT 2007
Author: icculus
Date: 2007-03-11 05:44:21 -0400 (Sun, 11 Mar 2007)
New Revision: 820
Modified:
trunk/archivers/dir.c
trunk/archivers/grp.c
trunk/archivers/hog.c
trunk/archivers/lzma.c
trunk/archivers/mvl.c
trunk/archivers/qpak.c
trunk/archivers/wad.c
trunk/archivers/zip.c
trunk/physfs.c
trunk/physfs_byteorder.c
trunk/physfs_unicode.c
trunk/platform/beos.cpp
trunk/platform/macclassic.c
trunk/platform/os2.c
trunk/platform/pocketpc.c
trunk/platform/posix.c
trunk/platform/skeleton.c
trunk/platform/unix.c
trunk/platform/windows.c
trunk/test/test_physfs.c
Log:
Removed config.h references from old autotools build system.
Modified: trunk/archivers/dir.c
===================================================================
--- trunk/archivers/dir.c 2007-03-11 09:30:08 UTC (rev 819)
+++ trunk/archivers/dir.c 2007-03-11 09:44:21 UTC (rev 820)
@@ -6,10 +6,6 @@
* This file written by Ryan C. Gordon.
*/
-#if HAVE_CONFIG_H
-# include <config.h>
-#endif
-
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
Modified: trunk/archivers/grp.c
===================================================================
--- trunk/archivers/grp.c 2007-03-11 09:30:08 UTC (rev 819)
+++ trunk/archivers/grp.c 2007-03-11 09:44:21 UTC (rev 820)
@@ -24,10 +24,6 @@
* This file written by Ryan C. Gordon.
*/
-#if HAVE_CONFIG_H
-# include <config.h>
-#endif
-
#if (defined PHYSFS_SUPPORTS_GRP)
#include <stdio.h>
Modified: trunk/archivers/hog.c
===================================================================
--- trunk/archivers/hog.c 2007-03-11 09:30:08 UTC (rev 819)
+++ trunk/archivers/hog.c 2007-03-11 09:44:21 UTC (rev 820)
@@ -29,10 +29,6 @@
* Based on grp.c by Ryan C. Gordon.
*/
-#if HAVE_CONFIG_H
-# include <config.h>
-#endif
-
#if (defined PHYSFS_SUPPORTS_HOG)
#include <stdio.h>
Modified: trunk/archivers/lzma.c
===================================================================
--- trunk/archivers/lzma.c 2007-03-11 09:30:08 UTC (rev 819)
+++ trunk/archivers/lzma.c 2007-03-11 09:44:21 UTC (rev 820)
@@ -7,10 +7,6 @@
* by Igor Pavlov.
*/
-#if HAVE_CONFIG_H
-# include <config.h>
-#endif
-
#if (defined PHYSFS_SUPPORTS_7Z)
#include <stdlib.h>
Modified: trunk/archivers/mvl.c
===================================================================
--- trunk/archivers/mvl.c 2007-03-11 09:30:08 UTC (rev 819)
+++ trunk/archivers/mvl.c 2007-03-11 09:44:21 UTC (rev 820)
@@ -27,10 +27,6 @@
* Based on grp.c by Ryan C. Gordon.
*/
-#if HAVE_CONFIG_H
-# include <config.h>
-#endif
-
#if (defined PHYSFS_SUPPORTS_MVL)
#include <stdio.h>
Modified: trunk/archivers/qpak.c
===================================================================
--- trunk/archivers/qpak.c 2007-03-11 09:30:08 UTC (rev 819)
+++ trunk/archivers/qpak.c 2007-03-11 09:44:21 UTC (rev 820)
@@ -29,10 +29,6 @@
* This file written by Ryan C. Gordon.
*/
-#if HAVE_CONFIG_H
-# include <config.h>
-#endif
-
#if (defined PHYSFS_SUPPORTS_QPAK)
#include <stdio.h>
Modified: trunk/archivers/wad.c
===================================================================
--- trunk/archivers/wad.c 2007-03-11 09:30:08 UTC (rev 819)
+++ trunk/archivers/wad.c 2007-03-11 09:44:21 UTC (rev 820)
@@ -42,10 +42,6 @@
* Ryan C. Gordon.
*/
-#if HAVE_CONFIG_H
-# include <config.h>
-#endif
-
#if (defined PHYSFS_SUPPORTS_WAD)
#include <stdio.h>
Modified: trunk/archivers/zip.c
===================================================================
--- trunk/archivers/zip.c 2007-03-11 09:30:08 UTC (rev 819)
+++ trunk/archivers/zip.c 2007-03-11 09:44:21 UTC (rev 820)
@@ -7,10 +7,6 @@
* by Gilles Vollant.
*/
-#if HAVE_CONFIG_H
-# include <config.h>
-#endif
-
#if (defined PHYSFS_SUPPORTS_ZIP)
#include <stdio.h>
Modified: trunk/physfs.c
===================================================================
--- trunk/physfs.c 2007-03-11 09:30:08 UTC (rev 819)
+++ trunk/physfs.c 2007-03-11 09:44:21 UTC (rev 820)
@@ -8,10 +8,6 @@
* This file written by Ryan C. Gordon.
*/
-#if HAVE_CONFIG_H
-# include <config.h>
-#endif
-
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
Modified: trunk/physfs_byteorder.c
===================================================================
--- trunk/physfs_byteorder.c 2007-03-11 09:30:08 UTC (rev 819)
+++ trunk/physfs_byteorder.c 2007-03-11 09:44:21 UTC (rev 820)
@@ -8,10 +8,6 @@
* This file written by Ryan C. Gordon.
*/
-#if HAVE_CONFIG_H
-# include <config.h>
-#endif
-
#include <stdio.h>
#include <stdlib.h>
Modified: trunk/physfs_unicode.c
===================================================================
--- trunk/physfs_unicode.c 2007-03-11 09:30:08 UTC (rev 819)
+++ trunk/physfs_unicode.c 2007-03-11 09:44:21 UTC (rev 820)
@@ -1,7 +1,3 @@
-#if HAVE_CONFIG_H
-# include <config.h>
-#endif
-
#include "physfs.h"
#define __PHYSICSFS_INTERNAL__
Modified: trunk/platform/beos.cpp
===================================================================
--- trunk/platform/beos.cpp 2007-03-11 09:30:08 UTC (rev 819)
+++ trunk/platform/beos.cpp 2007-03-11 09:44:21 UTC (rev 820)
@@ -6,10 +6,6 @@
* This file written by Ryan C. Gordon.
*/
-#if HAVE_CONFIG_H
-# include <config.h>
-#endif
-
#ifdef __BEOS__
#include <be/kernel/OS.h>
Modified: trunk/platform/macclassic.c
===================================================================
--- trunk/platform/macclassic.c 2007-03-11 09:30:08 UTC (rev 819)
+++ trunk/platform/macclassic.c 2007-03-11 09:44:21 UTC (rev 820)
@@ -6,10 +6,6 @@
* This file written by Ryan C. Gordon.
*/
-#if HAVE_CONFIG_H
-# include <config.h>
-#endif
-
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
Modified: trunk/platform/os2.c
===================================================================
--- trunk/platform/os2.c 2007-03-11 09:30:08 UTC (rev 819)
+++ trunk/platform/os2.c 2007-03-11 09:44:21 UTC (rev 820)
@@ -6,10 +6,6 @@
* This file written by Ryan C. Gordon.
*/
-#if HAVE_CONFIG_H
-# include <config.h>
-#endif
-
#if (defined OS2)
#define INCL_DOSSEMAPHORES
Modified: trunk/platform/pocketpc.c
===================================================================
--- trunk/platform/pocketpc.c 2007-03-11 09:30:08 UTC (rev 819)
+++ trunk/platform/pocketpc.c 2007-03-11 09:44:21 UTC (rev 820)
@@ -6,10 +6,6 @@
* This file written by Ryan C. Gordon.
*/
-#if HAVE_CONFIG_H
-# include <config.h>
-#endif
-
#include <stdio.h>
#include <windows.h>
Modified: trunk/platform/posix.c
===================================================================
--- trunk/platform/posix.c 2007-03-11 09:30:08 UTC (rev 819)
+++ trunk/platform/posix.c 2007-03-11 09:44:21 UTC (rev 820)
@@ -6,10 +6,6 @@
* This file written by Ryan C. Gordon.
*/
-#if HAVE_CONFIG_H
-# include <config.h>
-#endif
-
#if ((!defined WIN32) && (!defined OS2))
#if (defined __STRICT_ANSI__)
Modified: trunk/platform/skeleton.c
===================================================================
--- trunk/platform/skeleton.c 2007-03-11 09:30:08 UTC (rev 819)
+++ trunk/platform/skeleton.c 2007-03-11 09:44:21 UTC (rev 820)
@@ -6,10 +6,6 @@
* This file written by Ryan C. Gordon.
*/
-#if HAVE_CONFIG_H
-# include <config.h>
-#endif
-
#define __PHYSICSFS_INTERNAL__
#include "physfs_internal.h"
Modified: trunk/platform/unix.c
===================================================================
--- trunk/platform/unix.c 2007-03-11 09:30:08 UTC (rev 819)
+++ trunk/platform/unix.c 2007-03-11 09:44:21 UTC (rev 820)
@@ -6,10 +6,6 @@
* This file written by Ryan C. Gordon.
*/
-#if HAVE_CONFIG_H
-# include <config.h>
-#endif
-
/* BeOS uses beos.cpp and posix.c ... Cygwin and such use windows.c ... */
#if ((!defined __BEOS__) && (!defined WIN32))
Modified: trunk/platform/windows.c
===================================================================
--- trunk/platform/windows.c 2007-03-11 09:30:08 UTC (rev 819)
+++ trunk/platform/windows.c 2007-03-11 09:44:21 UTC (rev 820)
@@ -6,10 +6,6 @@
* This file written by Ryan C. Gordon, and made sane by Gregory S. Read.
*/
-#if HAVE_CONFIG_H
-# include <config.h>
-#endif
-
#ifdef WIN32
#include <windows.h>
Modified: trunk/test/test_physfs.c
===================================================================
--- trunk/test/test_physfs.c 2007-03-11 09:30:08 UTC (rev 819)
+++ trunk/test/test_physfs.c 2007-03-11 09:44:21 UTC (rev 820)
@@ -6,10 +6,6 @@
* This file written by Ryan C. Gordon.
*/
-#if HAVE_CONFIG_H
-# include <config.h>
-#endif
-
#include <stdio.h>
#include <stdlib.h>
#include <errno.h>
More information about the physfs-commits
mailing list