mirror of https://github.com/python/cpython
Added hfsplusapi module.
This commit is contained in:
parent
6952177dba
commit
df222d2691
Binary file not shown.
|
@ -81,6 +81,7 @@ extern void initpcre();
|
||||||
extern void initunicodedata();
|
extern void initunicodedata();
|
||||||
extern void init_codecs();
|
extern void init_codecs();
|
||||||
extern void initNav();
|
extern void initNav();
|
||||||
|
extern void inithfsplus();
|
||||||
#ifdef USE_MACCTB
|
#ifdef USE_MACCTB
|
||||||
extern void initctb();
|
extern void initctb();
|
||||||
#endif
|
#endif
|
||||||
|
@ -247,7 +248,10 @@ struct _inittab _PyImport_Inittab[] = {
|
||||||
#if TARGET_API_MAC_CARBON
|
#if TARGET_API_MAC_CARBON
|
||||||
{"_CF", init_CF},
|
{"_CF", init_CF},
|
||||||
#endif
|
#endif
|
||||||
|
#if TARGET_API_MAC_CARBON
|
||||||
|
{"hfsplus", inithfsplus},
|
||||||
#endif
|
#endif
|
||||||
|
#endif /* USE_TOOLBOX */
|
||||||
#ifdef USE_QT
|
#ifdef USE_QT
|
||||||
{"_Cm", init_Cm},
|
{"_Cm", init_Cm},
|
||||||
{"_Qt", init_Qt},
|
{"_Qt", init_Qt},
|
||||||
|
|
|
@ -292,6 +292,7 @@ I_CARBON_PLUGINS : (buildmwproject, "CWIE", [
|
||||||
(":Mac:Build:waste.carbon.mcp", "waste.carbon"),
|
(":Mac:Build:waste.carbon.mcp", "waste.carbon"),
|
||||||
(":Mac:Build:zlib.carbon.mcp", "zlib.carbon"),
|
(":Mac:Build:zlib.carbon.mcp", "zlib.carbon"),
|
||||||
(":Mac:Build:_dummy_tkinter.mcp", "_tkinter.carbon"),
|
(":Mac:Build:_dummy_tkinter.mcp", "_tkinter.carbon"),
|
||||||
|
(":Mac:Build:hfsplus.mcp", "hfsplus.carbon"),
|
||||||
## (":Extensions:Imaging:_tkinter.carbon.mcp", "_tkinter.carbon"),
|
## (":Extensions:Imaging:_tkinter.carbon.mcp", "_tkinter.carbon"),
|
||||||
(":Mac:Build:ColorPicker.carbon.mcp", "ColorPicker.carbon"),
|
(":Mac:Build:ColorPicker.carbon.mcp", "ColorPicker.carbon"),
|
||||||
(":Mac:Build:_AE.carbon.mcp", "_AE.carbon"),
|
(":Mac:Build:_AE.carbon.mcp", "_AE.carbon"),
|
||||||
|
|
|
@ -157,6 +157,7 @@ def genallprojects(force=0):
|
||||||
outputdir="::Lib:Carbon")
|
outputdir="::Lib:Carbon")
|
||||||
# Carbon Only?
|
# Carbon Only?
|
||||||
genpluginproject("carbon", "_CF", outputdir="::Lib:Carbon")
|
genpluginproject("carbon", "_CF", outputdir="::Lib:Carbon")
|
||||||
|
genpluginproject("carbon", "hfsplus")
|
||||||
|
|
||||||
# Other Mac modules
|
# Other Mac modules
|
||||||
genpluginproject("all", "calldll", sources=["calldll.c"])
|
genpluginproject("all", "calldll", sources=["calldll.c"])
|
||||||
|
|
Loading…
Reference in New Issue