Hi Paul,

> (5)
>
>
> pptpd is attempting to execute aclocal1.9 as part of the build
>
> it should be depending upon the version of autotools inside the leaf
> buildtool environment, not trying to use a hardcoded explicit version in
> the host environment.
>
I finally found the problem (and why I saw different output as you, I have
a different version on my host). I solved it by changing the pptpd
buildtool file like this:

--- buildtool.mk.old    2005-09-25 13:16:20.000000000 +0200
+++ buildtool.mk        2005-12-01 23:24:52.000000000 +0100
@@ -4,6 +4,10 @@
 PPTPD_DIR:=pptpd-1.2.3
 PPTPD_TARGET_DIR:=$(BT_BUILD_DIR)/pptpd

+export AUTOCONF=$(BT_STAGING_DIR)/bin/autoconf
+export AUTOHEADER=$(BT_STAGING_DIR)/bin/autoheader
+export AUTOMAKE=$(BT_STAGING_DIR)/bin/automake-1.9
+
 $(PPTPD_DIR)/.source:
        zcat $(PPTPD_SOURCE) | tar -xvf -
        zcat $(PPTPD_PATCH1) | patch -d $(PPTPD_DIR) -p1
@@ -13,7 +17,7 @@
 source: $(PPTPD_DIR)/.source

 $(PPTPD_DIR)/.configured: $(PPTPD_DIR)/.source
-       (cd $(PPTPD_DIR) ; autoconf ; CC=$(TARGET_CC) LD=$(TARGET_LD) \
+       (cd $(PPTPD_DIR) ; $(AUTOCONF) ; CC=$(TARGET_CC) LD=$(TARGET_LD) \
        ./configure --prefix=/usr --with-libwrap --with-bcrelay)
        touch $(PPTPD_DIR)/.configured



I also updated the automake version in buildtool to 1.9.6.
There are some other sources in buildtool that have something like
"automake" in the buildtool.mk configure part. I general solution would be
to use $(AUTOCONF) instead (or define it globally).

If everything works ok, I will update it in CVS.

Eric



-------------------------------------------------------
This SF.net email is sponsored by: Splunk Inc. Do you grep through log files
for problems?  Stop!  Download the new AJAX search engine that makes
searching your log files as easy as surfing the  web.  DOWNLOAD SPLUNK!
http://ads.osdn.com/?ad_id=7637&alloc_id=16865&op=click

_______________________________________________
leaf-devel mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/leaf-devel

Reply via email to