diff options
author | Victor Stinner <victor.stinner@haypocalc.com> | 2011-09-28 23:12:24 (GMT) |
---|---|---|
committer | Victor Stinner <victor.stinner@haypocalc.com> | 2011-09-28 23:12:24 (GMT) |
commit | dfb866d127c852dfd2d36dfb766d90a518aaf516 (patch) | |
tree | 572946c48d4f217f51f5233746cfaa43889d8566 /Makefile.pre.in | |
parent | 2bdc7f591b729c7c0351f92a80d090e41a7cea49 (diff) | |
download | cpython-dfb866d127c852dfd2d36dfb766d90a518aaf516.zip cpython-dfb866d127c852dfd2d36dfb766d90a518aaf516.tar.gz cpython-dfb866d127c852dfd2d36dfb766d90a518aaf516.tar.bz2 |
Enhance Py_ARRAY_LENGTH(): fail at build time if the argument is not an array
Move other various macros to pymcacro.h
Thanks Rusty Russell for having written these amazing C macros!
Diffstat (limited to 'Makefile.pre.in')
-rw-r--r-- | Makefile.pre.in | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Makefile.pre.in b/Makefile.pre.in index 6123946..52743e4 100644 --- a/Makefile.pre.in +++ b/Makefile.pre.in @@ -493,7 +493,7 @@ $(PYTHONFRAMEWORKDIR)/Versions/$(VERSION)/$(PYTHONFRAMEWORK): \ -install_name $(DESTDIR)$(PYTHONFRAMEWORKINSTALLDIR)/Versions/$(VERSION)/$(PYTHONFRAMEWORK) \ -compatibility_version $(VERSION) \ -current_version $(VERSION) \ - -framework CoreFoundation $(LIBS); + -framework CoreFoundation $(LIBS); $(INSTALL) -d -m $(DIRMODE) \ $(PYTHONFRAMEWORKDIR)/Versions/$(VERSION)/Resources/English.lproj $(INSTALL_DATA) $(RESSRCDIR)/Info.plist \ @@ -718,6 +718,7 @@ PYTHON_HEADERS= \ Include/pyfpe.h \ Include/pymath.h \ Include/pygetopt.h \ + Include/pymacro.h \ Include/pymem.h \ Include/pyport.h \ Include/pystate.h \ |