Re: [PHP-DEV] Weird PHP5 APXS libtools errors

2003-02-13 Thread Derick Rethans
On Thu, 13 Feb 2003, John Coggeshall wrote:

 I'm not familiar enough with the build environment as a whole, but I've
 been building HEAD for quite some time now and I'm not sure why now it'd
 just choke like thisAny suggestions welcome.

upgrade your libtool to 1.4.3, it is required now.

Derick

-- 

-
 Derick Rethans http://derickrethans.nl/ 
 PHP Magazine - PHP Magazine for Professionals   http://php-mag.net/
-


-- 
PHP Development Mailing List http://www.php.net/
To unsubscribe, visit: http://www.php.net/unsub.php




RE: [PHP-DEV] Weird PHP5 APXS libtools errors

2003-02-13 Thread John Coggeshall
upgrade your libtool to 1.4.3, it is required now.

[user@localhost php5]# ./buildconf
using default Zend directory
buildconf: checking installation...
buildconf: autoconf version 2.13 (ok)
buildconf: automake version 1.4-p5 (ok)
buildconf: libtool version 1.4.3 (ok)

And just to be sure..

[user@localhost php5]# libtool --version
ltmain.sh (GNU libtool) 1.4.3 (1.922.2.110 2002/10/23 01:39:54)

Any other thoughts? If there's anything else you need to know, 
let me know.

John


-- 
PHP Development Mailing List http://www.php.net/
To unsubscribe, visit: http://www.php.net/unsub.php




RE: [PHP-DEV] Weird PHP5 APXS libtools errors

2003-02-13 Thread Edin Kadribasic
On Thu, 13 Feb 2003, John Coggeshall wrote:

 upgrade your libtool to 1.4.3, it is required now.
 
 [user@localhost php5]# ./buildconf
 using default Zend directory
 buildconf: checking installation...
 buildconf: autoconf version 2.13 (ok)
 buildconf: automake version 1.4-p5 (ok)
 buildconf: libtool version 1.4.3 (ok)
 
 And just to be sure..
 
 [user@localhost php5]# libtool --version
 ltmain.sh (GNU libtool) 1.4.3 (1.922.2.110 2002/10/23 01:39:54)
 
 Any other thoughts? If there's anything else you need to know, 
 let me know.

Does a snapshot from snaps.php.net compile without running ./buildconf?

Edin



-- 
PHP Development Mailing List http://www.php.net/
To unsubscribe, visit: http://www.php.net/unsub.php




RE: [PHP-DEV] Weird PHP5 APXS libtools errors

2003-02-13 Thread Jani Taskinen

If output of 'm4 --version' != 'GNU m4 1.4'
you need to update it and rebuild autoconf with
the working m4.

--Jani


On Thu, 13 Feb 2003, John Coggeshall wrote:

upgrade your libtool to 1.4.3, it is required now.

[user@localhost php5]# ./buildconf
using default Zend directory
buildconf: checking installation...
buildconf: autoconf version 2.13 (ok)
buildconf: automake version 1.4-p5 (ok)
buildconf: libtool version 1.4.3 (ok)

And just to be sure..

[user@localhost php5]# libtool --version
ltmain.sh (GNU libtool) 1.4.3 (1.922.2.110 2002/10/23 01:39:54)

Any other thoughts? If there's anything else you need to know, 
let me know.

John




-- 
- For Sale! -


-- 
PHP Development Mailing List http://www.php.net/
To unsubscribe, visit: http://www.php.net/unsub.php




RE: [PHP-DEV] Weird PHP5 APXS libtools errors

2003-02-13 Thread John Coggeshall

Does a snapshot from snaps.php.net compile without running ./buildconf?

Yep it does, actually... 

I'll investigate further into it when I get some sleep :)

John


-- 
PHP Development Mailing List http://www.php.net/
To unsubscribe, visit: http://www.php.net/unsub.php




Re: [PHP-DEV] Weird PHP5 APXS libtools errors

2003-02-13 Thread Timm Friebe
On Thu, 2003-02-13 at 09:52, John Coggeshall wrote:
 From HEAD:
[...]
 libtool: s%^.*/%%: No such file or directory
 libtool: -e: command not found
 libtool: -e: command not found
 libtool: -e: command not found
 libtool: -e: command not found
 libtool: -e: command not found
 (more of these)

Try
$ SED=sed ./configure ...
or 
$ export SED=sed
$ ./configure ...

Somehow, the variable SED is not set.

- Timm


-- 
PHP Development Mailing List http://www.php.net/
To unsubscribe, visit: http://www.php.net/unsub.php




RE: [PHP-DEV] Weird PHP5 APXS libtools errors

2003-02-13 Thread John Coggeshall
 
   $ export SED=sed
   $ ./configure ...

Somehow, the variable SED is not set.

I was just looking at the MakeFile trying to figure this out and I was
thinking it must be something like that. It works now -- thanks... But
why would SED suddenly stop being defined? Did I break something
unintentially (meaning SED should always be defined?) or is PHP failing
to define it for some reason?

John


-- 
PHP Development Mailing List http://www.php.net/
To unsubscribe, visit: http://www.php.net/unsub.php