فهرست منبع

Removed config.h references from old autotools build system.

Ryan C. Gordon 19 سال پیش
والد
کامیت
ca2489418e
20فایلهای تغییر یافته به همراه0 افزوده شده و 80 حذف شده
  1. 0 4
      archivers/dir.c
  2. 0 4
      archivers/grp.c
  3. 0 4
      archivers/hog.c
  4. 0 4
      archivers/lzma.c
  5. 0 4
      archivers/mvl.c
  6. 0 4
      archivers/qpak.c
  7. 0 4
      archivers/wad.c
  8. 0 4
      archivers/zip.c
  9. 0 4
      physfs.c
  10. 0 4
      physfs_byteorder.c
  11. 0 4
      physfs_unicode.c
  12. 0 4
      platform/beos.cpp
  13. 0 4
      platform/macclassic.c
  14. 0 4
      platform/os2.c
  15. 0 4
      platform/pocketpc.c
  16. 0 4
      platform/posix.c
  17. 0 4
      platform/skeleton.c
  18. 0 4
      platform/unix.c
  19. 0 4
      platform/windows.c
  20. 0 4
      test/test_physfs.c

+ 0 - 4
archivers/dir.c

@@ -6,10 +6,6 @@
  *  This file written by Ryan C. Gordon.
  *  This file written by Ryan C. Gordon.
  */
  */
 
 
-#if HAVE_CONFIG_H
-#  include <config.h>
-#endif
-
 #include <stdio.h>
 #include <stdio.h>
 #include <stdlib.h>
 #include <stdlib.h>
 #include <string.h>
 #include <string.h>

+ 0 - 4
archivers/grp.c

@@ -24,10 +24,6 @@
  *  This file written by Ryan C. Gordon.
  *  This file written by Ryan C. Gordon.
  */
  */
 
 
-#if HAVE_CONFIG_H
-#  include <config.h>
-#endif
-
 #if (defined PHYSFS_SUPPORTS_GRP)
 #if (defined PHYSFS_SUPPORTS_GRP)
 
 
 #include <stdio.h>
 #include <stdio.h>

+ 0 - 4
archivers/hog.c

@@ -29,10 +29,6 @@
  *  Based on grp.c by Ryan C. Gordon.
  *  Based on grp.c by Ryan C. Gordon.
  */
  */
 
 
-#if HAVE_CONFIG_H
-#  include <config.h>
-#endif
-
 #if (defined PHYSFS_SUPPORTS_HOG)
 #if (defined PHYSFS_SUPPORTS_HOG)
 
 
 #include <stdio.h>
 #include <stdio.h>

+ 0 - 4
archivers/lzma.c

@@ -7,10 +7,6 @@
  *   by Igor Pavlov.
  *   by Igor Pavlov.
  */
  */
 
 
-#if HAVE_CONFIG_H
-#  include <config.h>
-#endif
-
 #if (defined PHYSFS_SUPPORTS_7Z)
 #if (defined PHYSFS_SUPPORTS_7Z)
 
 
 #include <stdlib.h>
 #include <stdlib.h>

+ 0 - 4
archivers/mvl.c

@@ -27,10 +27,6 @@
  *  Based on grp.c by Ryan C. Gordon.
  *  Based on grp.c by Ryan C. Gordon.
  */
  */
 
 
-#if HAVE_CONFIG_H
-#  include <config.h>
-#endif
-
 #if (defined PHYSFS_SUPPORTS_MVL)
 #if (defined PHYSFS_SUPPORTS_MVL)
 
 
 #include <stdio.h>
 #include <stdio.h>

+ 0 - 4
archivers/qpak.c

@@ -29,10 +29,6 @@
  *  This file written by Ryan C. Gordon.
  *  This file written by Ryan C. Gordon.
  */
  */
 
 
-#if HAVE_CONFIG_H
-#  include <config.h>
-#endif
-
 #if (defined PHYSFS_SUPPORTS_QPAK)
 #if (defined PHYSFS_SUPPORTS_QPAK)
 
 
 #include <stdio.h>
 #include <stdio.h>

+ 0 - 4
archivers/wad.c

@@ -42,10 +42,6 @@
  *  Ryan C. Gordon.
  *  Ryan C. Gordon.
  */
  */
 
 
-#if HAVE_CONFIG_H
-#  include <config.h>
-#endif
-
 #if (defined PHYSFS_SUPPORTS_WAD)
 #if (defined PHYSFS_SUPPORTS_WAD)
 
 
 #include <stdio.h>
 #include <stdio.h>

+ 0 - 4
archivers/zip.c

@@ -7,10 +7,6 @@
  *   by Gilles Vollant.
  *   by Gilles Vollant.
  */
  */
 
 
-#if HAVE_CONFIG_H
-#  include <config.h>
-#endif
-
 #if (defined PHYSFS_SUPPORTS_ZIP)
 #if (defined PHYSFS_SUPPORTS_ZIP)
 
 
 #include <stdio.h>
 #include <stdio.h>

+ 0 - 4
physfs.c

@@ -8,10 +8,6 @@
  *  This file written by Ryan C. Gordon.
  *  This file written by Ryan C. Gordon.
  */
  */
 
 
-#if HAVE_CONFIG_H
-#  include <config.h>
-#endif
-
 #include <stdio.h>
 #include <stdio.h>
 #include <stdlib.h>
 #include <stdlib.h>
 #include <string.h>
 #include <string.h>

+ 0 - 4
physfs_byteorder.c

@@ -8,10 +8,6 @@
  *  This file written by Ryan C. Gordon.
  *  This file written by Ryan C. Gordon.
  */
  */
 
 
-#if HAVE_CONFIG_H
-#  include <config.h>
-#endif
-
 #include <stdio.h>
 #include <stdio.h>
 #include <stdlib.h>
 #include <stdlib.h>
 
 

+ 0 - 4
physfs_unicode.c

@@ -1,7 +1,3 @@
-#if HAVE_CONFIG_H
-#  include <config.h>
-#endif
-
 #include "physfs.h"
 #include "physfs.h"
 
 
 #define __PHYSICSFS_INTERNAL__
 #define __PHYSICSFS_INTERNAL__

+ 0 - 4
platform/beos.cpp

@@ -6,10 +6,6 @@
  *  This file written by Ryan C. Gordon.
  *  This file written by Ryan C. Gordon.
  */
  */
 
 
-#if HAVE_CONFIG_H
-#  include <config.h>
-#endif
-
 #ifdef __BEOS__
 #ifdef __BEOS__
 
 
 #include <be/kernel/OS.h>
 #include <be/kernel/OS.h>

+ 0 - 4
platform/macclassic.c

@@ -6,10 +6,6 @@
  *  This file written by Ryan C. Gordon.
  *  This file written by Ryan C. Gordon.
  */
  */
 
 
-#if HAVE_CONFIG_H
-#  include <config.h>
-#endif
-
 #include <stdio.h>
 #include <stdio.h>
 #include <stdlib.h>
 #include <stdlib.h>
 #include <string.h>
 #include <string.h>

+ 0 - 4
platform/os2.c

@@ -6,10 +6,6 @@
  *  This file written by Ryan C. Gordon.
  *  This file written by Ryan C. Gordon.
  */
  */
 
 
-#if HAVE_CONFIG_H
-#  include <config.h>
-#endif
-
 #if (defined OS2)
 #if (defined OS2)
 
 
 #define INCL_DOSSEMAPHORES
 #define INCL_DOSSEMAPHORES

+ 0 - 4
platform/pocketpc.c

@@ -6,10 +6,6 @@
  *  This file written by Ryan C. Gordon.
  *  This file written by Ryan C. Gordon.
  */
  */
 
 
-#if HAVE_CONFIG_H
-#  include <config.h>
-#endif
-
 #include <stdio.h>
 #include <stdio.h>
 #include <windows.h>
 #include <windows.h>
 
 

+ 0 - 4
platform/posix.c

@@ -6,10 +6,6 @@
  *  This file written by Ryan C. Gordon.
  *  This file written by Ryan C. Gordon.
  */
  */
 
 
-#if HAVE_CONFIG_H
-#  include <config.h>
-#endif
-
 #if ((!defined WIN32) && (!defined OS2))
 #if ((!defined WIN32) && (!defined OS2))
 
 
 #if (defined __STRICT_ANSI__)
 #if (defined __STRICT_ANSI__)

+ 0 - 4
platform/skeleton.c

@@ -6,10 +6,6 @@
  *  This file written by Ryan C. Gordon.
  *  This file written by Ryan C. Gordon.
  */
  */
 
 
-#if HAVE_CONFIG_H
-#  include <config.h>
-#endif
-
 #define __PHYSICSFS_INTERNAL__
 #define __PHYSICSFS_INTERNAL__
 #include "physfs_internal.h"
 #include "physfs_internal.h"
 
 

+ 0 - 4
platform/unix.c

@@ -6,10 +6,6 @@
  *  This file written by Ryan C. Gordon.
  *  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 ... */
 /* BeOS uses beos.cpp and posix.c ... Cygwin and such use windows.c ... */
 #if ((!defined __BEOS__) && (!defined WIN32))
 #if ((!defined __BEOS__) && (!defined WIN32))
 
 

+ 0 - 4
platform/windows.c

@@ -6,10 +6,6 @@
  *  This file written by Ryan C. Gordon, and made sane by Gregory S. Read.
  *  This file written by Ryan C. Gordon, and made sane by Gregory S. Read.
  */
  */
 
 
-#if HAVE_CONFIG_H
-#  include <config.h>
-#endif
-
 #ifdef WIN32
 #ifdef WIN32
 
 
 #include <windows.h>
 #include <windows.h>

+ 0 - 4
test/test_physfs.c

@@ -6,10 +6,6 @@
  *  This file written by Ryan C. Gordon.
  *  This file written by Ryan C. Gordon.
  */
  */
 
 
-#if HAVE_CONFIG_H
-#  include <config.h>
-#endif
-
 #include <stdio.h>
 #include <stdio.h>
 #include <stdlib.h>
 #include <stdlib.h>
 #include <errno.h>
 #include <errno.h>