mirror of
https://github.com/python/cpython.git
synced 2024-11-24 08:52:25 +01:00
2032722e51
svn+ssh://pythondev@svn.python.org/python/trunk ........ r72898 | antoine.pitrou | 2009-05-24 22:23:57 +0200 (dim., 24 mai 2009) | 6 lines 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. ........
14 lines
253 B
PkgConfig
14 lines
253 B
PkgConfig
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@
|
|
|