Commit 94ac1975 authored by Raymond Hettinger's avatar Raymond Hettinger

Update the PC configuration and project files for sha256 and sha512.

parent 9c1491f3
...@@ -539,6 +539,14 @@ SOURCE=..\..\Modules\shamodule.c ...@@ -539,6 +539,14 @@ SOURCE=..\..\Modules\shamodule.c
# End Source File # End Source File
# Begin Source File # Begin Source File
SOURCE=..\..\Modules\sha256module.c
# End Source File
# Begin Source File
SOURCE=..\..\Modules\sha512module.c
# End Source File
# Begin Source File
SOURCE=..\..\Modules\signalmodule.c SOURCE=..\..\Modules\signalmodule.c
# End Source File # End Source File
# Begin Source File # Begin Source File
......
...@@ -17,7 +17,7 @@ extern void initgc(void); ...@@ -17,7 +17,7 @@ extern void initgc(void);
extern void initimageop(void); extern void initimageop(void);
#endif #endif
extern void initmath(void); extern void initmath(void);
extern void initmd5(void); extern void init_md5(void);
extern void initnt(void); extern void initnt(void);
extern void initoperator(void); extern void initoperator(void);
extern void initregex(void); extern void initregex(void);
...@@ -25,7 +25,9 @@ extern void initregex(void); ...@@ -25,7 +25,9 @@ extern void initregex(void);
extern void initrgbimg(void); extern void initrgbimg(void);
#endif #endif
extern void initsignal(void); extern void initsignal(void);
extern void initsha(void); extern void init_sha(void);
extern void init_sha256(void);
extern void init_sha512(void);
extern void initstrop(void); extern void initstrop(void);
extern void initstruct(void); extern void initstruct(void);
extern void inittime(void); extern void inittime(void);
...@@ -86,7 +88,7 @@ struct _inittab _PyImport_Inittab[] = { ...@@ -86,7 +88,7 @@ struct _inittab _PyImport_Inittab[] = {
{"imageop", initimageop}, {"imageop", initimageop},
#endif #endif
{"math", initmath}, {"math", initmath},
{"md5", initmd5}, {"_md5", init_md5},
{"nt", initnt}, /* Use the NT os functions, not posix */ {"nt", initnt}, /* Use the NT os functions, not posix */
{"operator", initoperator}, {"operator", initoperator},
{"regex", initregex}, {"regex", initregex},
...@@ -94,7 +96,9 @@ struct _inittab _PyImport_Inittab[] = { ...@@ -94,7 +96,9 @@ struct _inittab _PyImport_Inittab[] = {
{"rgbimg", initrgbimg}, {"rgbimg", initrgbimg},
#endif #endif
{"signal", initsignal}, {"signal", initsignal},
{"sha", initsha}, {"_sha", init_sha},
{"_sha256", init_sha256},
{"_sha512", init_sha512},
{"strop", initstrop}, {"strop", initstrop},
{"struct", initstruct}, {"struct", initstruct},
{"time", inittime}, {"time", inittime},
......
...@@ -2763,6 +2763,60 @@ ...@@ -2763,6 +2763,60 @@
PreprocessorDefinitions="NDEBUG;WIN32;_WINDOWS;USE_DL_EXPORT;$(NoInherit)"/> PreprocessorDefinitions="NDEBUG;WIN32;_WINDOWS;USE_DL_EXPORT;$(NoInherit)"/>
</FileConfiguration> </FileConfiguration>
</File> </File>
<File
RelativePath="..\Modules\shamodule256.c">
<FileConfiguration
Name="Release|Win32">
<Tool
Name="VCCLCompilerTool"
Optimization="2"
AdditionalIncludeDirectories=""
PreprocessorDefinitions="NDEBUG;WIN32;_WINDOWS;USE_DL_EXPORT;$(NoInherit)"/>
</FileConfiguration>
<FileConfiguration
Name="Debug|Win32">
<Tool
Name="VCCLCompilerTool"
Optimization="0"
AdditionalIncludeDirectories=""
PreprocessorDefinitions="_DEBUG;USE_DL_EXPORT;WIN32;_WINDOWS;$(NoInherit)"/>
</FileConfiguration>
<FileConfiguration
Name="ReleaseItanium|Win32">
<Tool
Name="VCCLCompilerTool"
Optimization="2"
AdditionalIncludeDirectories=""
PreprocessorDefinitions="NDEBUG;WIN32;_WINDOWS;USE_DL_EXPORT;$(NoInherit)"/>
</FileConfiguration>
</File>
<File
RelativePath="..\Modules\shamodule512.c">
<FileConfiguration
Name="Release|Win32">
<Tool
Name="VCCLCompilerTool"
Optimization="2"
AdditionalIncludeDirectories=""
PreprocessorDefinitions="NDEBUG;WIN32;_WINDOWS;USE_DL_EXPORT;$(NoInherit)"/>
</FileConfiguration>
<FileConfiguration
Name="Debug|Win32">
<Tool
Name="VCCLCompilerTool"
Optimization="0"
AdditionalIncludeDirectories=""
PreprocessorDefinitions="_DEBUG;USE_DL_EXPORT;WIN32;_WINDOWS;$(NoInherit)"/>
</FileConfiguration>
<FileConfiguration
Name="ReleaseItanium|Win32">
<Tool
Name="VCCLCompilerTool"
Optimization="2"
AdditionalIncludeDirectories=""
PreprocessorDefinitions="NDEBUG;WIN32;_WINDOWS;USE_DL_EXPORT;$(NoInherit)"/>
</FileConfiguration>
</File>
<File <File
RelativePath="..\Modules\signalmodule.c"> RelativePath="..\Modules\signalmodule.c">
<FileConfiguration <FileConfiguration
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment