This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author vapier
Recipients vapier
Date 2012-07-30.17:52:20
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1343670741.23.0.818269374942.issue15506@psf.upfronthosting.co.za>
In-reply-to
Content
the current configure script open codes the pkg-config look up:
AC_PATH_TOOL([PKG_CONFIG], [pkg-config])

rather than using the standard macro from pkg-config's own pkg.m4:
PKG_PROG_PKG_CONFIG

this causes the build env to not operate exactly like other pkg-config autoconf builds :(

simple fix:
-AC_PATH_TOOL([PKG_CONFIG], [pkg-config])
+PKG_PROG_PKG_CONFIG
History
Date User Action Args
2012-07-30 17:52:21vapiersetrecipients: + vapier
2012-07-30 17:52:21vapiersetmessageid: <1343670741.23.0.818269374942.issue15506@psf.upfronthosting.co.za>
2012-07-30 17:52:20vapierlinkissue15506 messages
2012-07-30 17:52:20vapiercreate