[New-bugs-announce] [issue15506] configure should use PKG_PROG_PKG_CONFIG

Mike Frysinger report at bugs.python.org
Mon Jul 30 19:52:21 CEST 2012


New submission from Mike Frysinger:

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

----------
components: Build
messages: 166915
nosy: vapier
priority: normal
severity: normal
status: open
title: configure should use PKG_PROG_PKG_CONFIG
type: compile error

_______________________________________
Python tracker <report at bugs.python.org>
<http://bugs.python.org/issue15506>
_______________________________________


More information about the New-bugs-announce mailing list