Skip to content

Commit

Permalink
Removed config.h references from old autotools build system.
Browse files Browse the repository at this point in the history
  • Loading branch information
icculus committed Mar 11, 2007
1 parent 54ba677 commit ca24894
Show file tree
Hide file tree
Showing 20 changed files with 0 additions and 80 deletions.
4 changes: 0 additions & 4 deletions archivers/dir.c
Expand Up @@ -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>
Expand Down
4 changes: 0 additions & 4 deletions archivers/grp.c
Expand Up @@ -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>
Expand Down
4 changes: 0 additions & 4 deletions archivers/hog.c
Expand Up @@ -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>
Expand Down
4 changes: 0 additions & 4 deletions archivers/lzma.c
Expand Up @@ -7,10 +7,6 @@
* by Igor Pavlov.
*/

#if HAVE_CONFIG_H
# include <config.h>
#endif

#if (defined PHYSFS_SUPPORTS_7Z)

#include <stdlib.h>
Expand Down
4 changes: 0 additions & 4 deletions archivers/mvl.c
Expand Up @@ -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>
Expand Down
4 changes: 0 additions & 4 deletions archivers/qpak.c
Expand Up @@ -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>
Expand Down
4 changes: 0 additions & 4 deletions archivers/wad.c
Expand Up @@ -42,10 +42,6 @@
* Ryan C. Gordon.
*/

#if HAVE_CONFIG_H
# include <config.h>
#endif

#if (defined PHYSFS_SUPPORTS_WAD)

#include <stdio.h>
Expand Down
4 changes: 0 additions & 4 deletions archivers/zip.c
Expand Up @@ -7,10 +7,6 @@
* by Gilles Vollant.
*/

#if HAVE_CONFIG_H
# include <config.h>
#endif

#if (defined PHYSFS_SUPPORTS_ZIP)

#include <stdio.h>
Expand Down
4 changes: 0 additions & 4 deletions physfs.c
Expand Up @@ -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>
Expand Down
4 changes: 0 additions & 4 deletions physfs_byteorder.c
Expand Up @@ -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>

Expand Down
4 changes: 0 additions & 4 deletions physfs_unicode.c
@@ -1,7 +1,3 @@
#if HAVE_CONFIG_H
# include <config.h>
#endif

#include "physfs.h"

#define __PHYSICSFS_INTERNAL__
Expand Down
4 changes: 0 additions & 4 deletions platform/beos.cpp
Expand Up @@ -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>
Expand Down
4 changes: 0 additions & 4 deletions platform/macclassic.c
Expand Up @@ -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>
Expand Down
4 changes: 0 additions & 4 deletions platform/os2.c
Expand Up @@ -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
Expand Down
4 changes: 0 additions & 4 deletions platform/pocketpc.c
Expand Up @@ -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>

Expand Down
4 changes: 0 additions & 4 deletions platform/posix.c
Expand Up @@ -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__)
Expand Down
4 changes: 0 additions & 4 deletions platform/skeleton.c
Expand Up @@ -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"

Expand Down
4 changes: 0 additions & 4 deletions platform/unix.c
Expand Up @@ -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))

Expand Down
4 changes: 0 additions & 4 deletions platform/windows.c
Expand Up @@ -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>
Expand Down
4 changes: 0 additions & 4 deletions test/test_physfs.c
Expand Up @@ -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>
Expand Down

0 comments on commit ca24894

Please sign in to comment.