diff options
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/ACKS | 1 | ||||
-rw-r--r-- | Misc/NEWS | 4 | ||||
-rw-r--r-- | Misc/python.pc.in | 13 |
3 files changed, 18 insertions, 0 deletions
@@ -618,6 +618,7 @@ Saskia van Rossum Donald Wallace Rouse II Liam Routt Craig Rowland +Clinton Roy Paul Rubin Sam Ruby Audun S. Runde @@ -971,6 +971,10 @@ Tools/Demos Build ----- +- Issue #3585: Add pkg-config support. It creates a python-2.7.pc file + and a python.pc symlink in the $(LIBDIR)/pkgconfig directory. Patch by + Clinton Roy. + - Issue #6094: Build correctly with Subversion 1.7. - Issue #5847: Remove -n switch on "Edit with IDLE" menu item. diff --git a/Misc/python.pc.in b/Misc/python.pc.in new file mode 100644 index 0000000..08481a9 --- /dev/null +++ b/Misc/python.pc.in @@ -0,0 +1,13 @@ +prefix=@prefix@ +exec_prefix=@exec_prefix@ +libdir=@libdir@ +includedir=@includedir@ + +Name: Python +Description: Python library +Requires: +Version: @VERSION@ +Libs.private: @LIBS@ +Libs: -L${libdir} -lpython@VERSION@ +Cflags: -I${includedir}/python@VERSION@ + |