#include <limits.h>
#endif
-/* config.h may or may not define DL_IMPORT */
+/* pyconfig.h may or may not define DL_IMPORT */
#ifndef DL_IMPORT /* declarations for DLL import/export */
#define DL_IMPORT(RTYPE) RTYPE
#endif
#include "pyconfig.h"
-/* config.h may or may not define DL_IMPORT */
+/* pyconfig.h may or may not define DL_IMPORT */
#ifndef DL_IMPORT /* declarations for DLL import/export */
#define DL_IMPORT(RTYPE) RTYPE
#endif
d_malloc(size_t n, char* src_file, unsigned long src_line) c.s.
- In this case, you would define (for example in config.h) :
+ In this case, you would define (for example in pyconfig.h) :
#define PyCore_MALLOC_FUNC d_malloc
...
* #define DONT_HAVE_STAT
* and/or
* #define DONT_HAVE_FSTAT
- * to your config.h. Python code beyond this should check HAVE_STAT and
+ * to your pyconfig.h. Python code beyond this should check HAVE_STAT and
* HAVE_FSTAT instead.
* Also
* #define DONT_HAVE_SYS_STAT_H
#define Py_CONFIG_H
/**********************************************************************
- * config.h. NOT Generated automatically by configure.
+ * pyconfig.h. NOT Generated automatically by configure.
*
* This is a manually maintained version used for the IBM VisualAge
* C/C++ compiler on the OS/2 platform. It is a standard part of
#ifndef Py_CONFIG_H
#define Py_CONFIG_H
-/* config.h. NOT Generated automatically by configure.
+/* pyconfig.h. NOT Generated automatically by configure.
This is a manually maintained version used for the Watcom,
Borland and and Microsoft Visual C++ compilers. It is a
(or makefile) provided. This will enable you to change any source\r
files or build settings so you can make custom builds.\r
\r
-config.h An important configuration file specific to PC's.\r
+pyconfig.h An important configuration file specific to PC's.\r
\r
config.c The list of C modules to include in the Python PC\r
version. Manually edit this file to add or\r
Source: Lib\lib-old\*.py; DestDir: "{app}\Lib\lib-old"; CopyMode: alwaysoverwrite; Components: main
Source: Lib\site-packages\README; DestDir: "{app}\Lib\site-packages"; DestName: README.txt; CopyMode: alwaysoverwrite; Components: main
Source: Include\*.h; DestDir: "{app}\include"; CopyMode: alwaysoverwrite; Components: main
-Source: PC\config.h; DestDir: "{app}\include"; CopyMode: alwaysoverwrite; Components: main
+Source: PC\pyconfig.h; DestDir: "{app}\include"; CopyMode: alwaysoverwrite; Components: main
Source: Tools\scripts\*.py; DestDir: "{app}\Tools\Scripts"; CopyMode: alwaysoverwrite; Components: tools
Source: Tools\scripts\*.pyw; DestDir: "{app}\Tools\Scripts"; CopyMode: alwaysoverwrite; Components: tools
#include "pyconfig.h"
-/* config.h may or may not define DL_IMPORT */
+/* pyconfig.h may or may not define DL_IMPORT */
#ifndef DL_IMPORT /* declarations for DLL import/export */
#define DL_IMPORT(RTYPE) RTYPE
#endif
for ext in self.extensions[:]:
ext.sources = [ os.path.join(moddir, filename)
for filename in ext.sources ]
- ext.include_dirs.append( '.' ) # to get config.h
+ ext.include_dirs.append( '.' ) # to get pyconfig.h
ext.include_dirs.append( os.path.join(srcdir, './Include') )
# If a module has already been built statically,