Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
cpython
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
cpython
Commits
94ac1975
Commit
94ac1975
authored
Aug 24, 2005
by
Raymond Hettinger
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Update the PC configuration and project files for sha256 and sha512.
parent
9c1491f3
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
70 additions
and
4 deletions
+70
-4
PC/VC6/pythoncore.dsp
PC/VC6/pythoncore.dsp
+8
-0
PC/config.c
PC/config.c
+8
-4
PCbuild/pythoncore.vcproj
PCbuild/pythoncore.vcproj
+54
-0
No files found.
PC/VC6/pythoncore.dsp
View file @
94ac1975
...
...
@@ -539,6 +539,14 @@ SOURCE=..\..\Modules\shamodule.c
# End 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
# End Source File
# Begin Source File
...
...
PC/config.c
View file @
94ac1975
...
...
@@ -17,7 +17,7 @@ extern void initgc(void);
extern
void
initimageop
(
void
);
#endif
extern
void
initmath
(
void
);
extern
void
initmd5
(
void
);
extern
void
init
_
md5
(
void
);
extern
void
initnt
(
void
);
extern
void
initoperator
(
void
);
extern
void
initregex
(
void
);
...
...
@@ -25,7 +25,9 @@ extern void initregex(void);
extern
void
initrgbimg
(
void
);
#endif
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
initstruct
(
void
);
extern
void
inittime
(
void
);
...
...
@@ -86,7 +88,7 @@ struct _inittab _PyImport_Inittab[] = {
{
"imageop"
,
initimageop
},
#endif
{
"math"
,
initmath
},
{
"
md5"
,
init
md5
},
{
"
_md5"
,
init_
md5
},
{
"nt"
,
initnt
},
/* Use the NT os functions, not posix */
{
"operator"
,
initoperator
},
{
"regex"
,
initregex
},
...
...
@@ -94,7 +96,9 @@ struct _inittab _PyImport_Inittab[] = {
{
"rgbimg"
,
initrgbimg
},
#endif
{
"signal"
,
initsignal
},
{
"sha"
,
initsha
},
{
"_sha"
,
init_sha
},
{
"_sha256"
,
init_sha256
},
{
"_sha512"
,
init_sha512
},
{
"strop"
,
initstrop
},
{
"struct"
,
initstruct
},
{
"time"
,
inittime
},
...
...
PCbuild/pythoncore.vcproj
View file @
94ac1975
...
...
@@ -2763,6 +2763,60 @@
PreprocessorDefinitions=
"NDEBUG;WIN32;_WINDOWS;USE_DL_EXPORT;$(NoInherit)"
/>
</FileConfiguration>
</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
RelativePath=
"..\Modules\signalmodule.c"
>
<FileConfiguration
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment