https://issues.apache.org/bugzilla/show_bug.cgi?id=48776
Summary: APR 1.4.x buildconf fails on Mac OS X 10.6.2 - needs
fix backported from trunk
Product: APR
Version: HEAD
Platform: PC
OS/Version: Mac OS X 10.4
Status: NEW
Severity: normal
Priority: P2
Component: APR
AssignedTo: bugs@apr.apache.org
ReportedBy: poirier@pobox.com
APR 1.4.x buildconf fails on Mac OS X 10.6.2 with this output:
$ ./buildconf
buildconf: checking installation...
buildconf: python version 2.6.1 (ok)
buildconf: autoconf version 2.61 (ok)
buildconf: libtool version 2.2.4 (ok)
Copying libtool helper files ...
$_prefix/share/aclocal/libtool.m4 not found
This is due to buildconf trying to get the value of aclocal_dir by parsing
glibtoolize. In this case the relevant lines from /usr/bin/glibtoolize are:
prefix=/usr
...
aclocaldir=$_prefix/share/aclocal
so aclocal_dir ends up set to '$_prefix/share/aclocal' when it ought to be
/usr/share/aclocal.
Backporting r748902 and r757363 from trunk to 1.4 appears to resolve the
problem by getting the information in a different way.
--
Configure bugmail: https://issues.apache.org/bugzilla/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug.
---------------------------------------------------------------------
To unsubscribe, e-mail: bugs-unsubscribe@apr.apache.org
For additional commands, e-mail: bugs-help@apr.apache.org
|