Re: [PHP-DEV] configure broken

2003-01-27 Thread Jani Taskinen

HEAD only or also with 4.2.3?
And what configure options you used? 

--Jani


On Tue, 28 Jan 2003, Sebastian Bergmann wrote:

./configure: line 30289: syntax error near unexpected token `fi'
./configure: line 30289: `fi'

  Here's what my configure looks like arount that line:

30287 if (eval $ac_cpp conftest.$ac_ext) 25 |
30288   $EGREP yes /dev/null 21; then
30289
30290   THIS_LIBS=$LIB
30291   break
30292
30293 else
30294
30295 fi
30296 rm -f conftest*
30297
30298
30299 fi



-- 
- For Sale! -


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




Re: [PHP-DEV] configure broken

2003-01-27 Thread Sebastian Bergmann
Jani Taskinen wrote:
 HEAD only or also with 4.2.3?

  I only tried HEAD.

 And what configure options you used?

sb@wopr-mobile:/usr/src/php5 cat config.apache2
#! /bin/sh
#
# Created by configure

'./configure' \
'--enable-debug' \
'--with-apxs2=/usr/local/apache2/bin/apxs' \
'--with-mysql=/usr/local/mysql' \
'--with-pgsql=/usr/local/postgresql' \
'--with-srm=/usr/local/srm' \
'--with-gd' \
'--with-jpeg-dir=/usr' \
'--with-png-dir=/usr' \
'--with-xpm-dir=/usr' \
'--with-ttf=/usr' \
'--with-freetype-dir=/usr/local' \
'--with-gettext=/usr/local' \
'--with-dom=/usr/local' \
'--with-dom-xslt=/usr/local' \
'--with-dom-exslt=/usr/local' \
'--with-zlib' \
$@

-- 
  Sebastian Bergmann
  http://sebastian-bergmann.de/ http://phpOpenTracker.de/

  Did I help you? Consider a gift: http://wishlist.sebastian-bergmann.de/

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




Re: [PHP-DEV] configure broken

2003-01-27 Thread Marcus Börger
At 06:14 28.01.2003, Sebastian Bergmann wrote:

./configure: line 30289: syntax error near unexpected token `fi'
./configure: line 30289: `fi'




Should be fixed by now.

marcus


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




Re: [PHP-DEV] configure broken

2003-01-27 Thread Sebastian Bergmann
Marcus Börger wrote:

Should be fixed by now.


 It is.

--
 Sebastian Bergmann
 http://sebastian-bergmann.de/ http://phpOpenTracker.de/

 Did I help you? Consider a gift: http://wishlist.sebastian-bergmann.de/

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




[PHP-DEV] configure broken for imap and mcal extensions..

2002-04-03 Thread Jani Taskinen


This patch broke the build for MCAL and IMAP extensions:

  revision 1.177
  date: 2002/03/27 11:09:20;  author: sas;  state: Exp;  lines: +48 -46
  Factorize a few library/libpath-related functions

The PHP_ADD_LIBRARY_DEFER() and PHP_ADD_LIBRARY_DEFER_WITH_PATH()
macros no longer do what they were originally designed to do,
ie. place the libraries into DLIBS instead of LIBS.

--Jani



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




Re: [PHP-DEV] configure broken: Iconv detection still not right...

2002-03-22 Thread Derick Rethans

Hello,

Iconv is *still* broken for me. Without --with-iconv I get the message 
that XMLRPC needs iconv which could not be found.

Derick

On Wed, 20 Mar 2002, Wez Furlong wrote:

 Hey guys,
 
 There's something screwy with the iconv detection/config that's
 mangling configure - it's generating code like this:
 
 Line 28183 or so of configure:
 
  case $iconv_lib_name in
 c|c_r|pthread*
fi
 ;;
 *)
 
LIBS=-l$iconv_lib_name $LIBS
 
 ;;
 esac
 
 The fi looks totally bogus to me, and it looks like there is
 a missing ) after pthread* 
 
 --Wez.
 
 
 
 
 
 -- 
 PHP Development Mailing List http://www.php.net/
 To unsubscribe, visit: http://www.php.net/unsub.php
 

Derick Rethans

-
PHP: Scripting the Web - www.php.net - [EMAIL PROTECTED]
All your branches are belong to me!
   SRM: Script Running Machine - www.vl-srm.net
-


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




Re: [PHP-DEV] configure broken: Iconv detection still not right...

2002-03-22 Thread Rasmus Lerdorf

Same goes for xslt.  Adding --with-iconv fixes it

On Fri, 22 Mar 2002, Derick Rethans wrote:

 Hello,

 Iconv is *still* broken for me. Without --with-iconv I get the message
 that XMLRPC needs iconv which could not be found.

 Derick

 On Wed, 20 Mar 2002, Wez Furlong wrote:

  Hey guys,
 
  There's something screwy with the iconv detection/config that's
  mangling configure - it's generating code like this:
 
  Line 28183 or so of configure:
 
   case $iconv_lib_name in
  c|c_r|pthread*
 fi
  ;;
  *)
 
 LIBS=-l$iconv_lib_name $LIBS
 
  ;;
  esac
 
  The fi looks totally bogus to me, and it looks like there is
  a missing ) after pthread*
 
  --Wez.
 
 
 
 
 
  --
  PHP Development Mailing List http://www.php.net/
  To unsubscribe, visit: http://www.php.net/unsub.php
 

 Derick Rethans

 -
 PHP: Scripting the Web - www.php.net - [EMAIL PROTECTED]
 All your branches are belong to me!
SRM: Script Running Machine - www.vl-srm.net
 -


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



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




Re: [PHP-DEV] configure broken: Iconv detection still not right...

2002-03-22 Thread Jani Taskinen


This should be fixed now. 

--Jani

On Fri, 22 Mar 2002, Rasmus Lerdorf wrote:

Same goes for xslt.  Adding --with-iconv fixes it

On Fri, 22 Mar 2002, Derick Rethans wrote:

 Hello,

 Iconv is *still* broken for me. Without --with-iconv I get the message
 that XMLRPC needs iconv which could not be found.

 Derick

 On Wed, 20 Mar 2002, Wez Furlong wrote:

  Hey guys,
 
  There's something screwy with the iconv detection/config that's
  mangling configure - it's generating code like this:
 
  Line 28183 or so of configure:
 
   case $iconv_lib_name in
  c|c_r|pthread*
 fi
  ;;
  *)
 
 LIBS=-l$iconv_lib_name $LIBS
 
  ;;
  esac
 
  The fi looks totally bogus to me, and it looks like there is
  a missing ) after pthread*
 
  --Wez.
 
 
 
 
 
  --
  PHP Development Mailing List http://www.php.net/
  To unsubscribe, visit: http://www.php.net/unsub.php
 

 Derick Rethans

 -
 PHP: Scripting the Web - www.php.net - [EMAIL PROTECTED]
 All your branches are belong to me!
SRM: Script Running Machine - www.vl-srm.net
 -


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





-- 


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




Re: [PHP-DEV] configure broken: Iconv detection still not right...

2002-03-20 Thread Jani Taskinen


Can you try the latest CVS now? I accidently committed 
something that is only available in autoconf 2.52.
(odd thing is that it worked for me even with 2.13)

--Jani


On Sun, 24 Mar 2002, Adam Maccabee Trachtenberg wrote:

It happens with me w/ latest CVS.

autoconf 2.13, automake 1.4p5, libtool 1.4.

-adam


On Wed, 20 Mar 2002, Jani Taskinen wrote:

 
 And this happens with latest CVS?
 Which autoconf/automake/etc versions you have?
 
 --Jani
 
 
 
 On Wed, 20 Mar 2002, Wez Furlong wrote:
 
 Hey guys,
 
 There's something screwy with the iconv detection/config that's
 mangling configure - it's generating code like this:
 
 Line 28183 or so of configure:
 
  case $iconv_lib_name in
 c|c_r|pthread*
fi
 ;;
 *)
 
LIBS=-l$iconv_lib_name $LIBS
 
 ;;
 esac
 
 The fi looks totally bogus to me, and it looks like there is
 a missing ) after pthread* 
 
 --Wez.
 
 
 
 
 
 
 
 



-- 


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




Re: [PHP-DEV] configure broken: Iconv detection still not right...

2002-03-20 Thread Wez Furlong

On 20/03/02, Jani Taskinen [EMAIL PROTECTED] wrote:
 Can you try the latest CVS now? I accidently committed 
 something that is only available in autoconf 2.52.
 (odd thing is that it worked for me even with 2.13)

Still not quite right; configure is no longer mangled but
much later, mysql detection fails because it can't find
iconv:

config.log:
configure:39290: checking for mysql_error in -lmysqlclient
configure:39309: gcc -o conftest -g -O2
   -L/usr/lib -L/usr/lib/mysql
   -Wl,-rpath,/usr/local/lib -L/usr/local/lib -Wl,-rpath,/usr
   -L/usr conftest.c -lmysqlclient -lz -liconv -lintl -lgd
   -lfreetype -lpng -lz -ljpeg -lbz2 -lz -lcrypt -lssl -lcrypto
   -lresolv -lm -ldl -lnsl  -lresolv -lcrypt 15

/usr/i486-suse-linux/bin/ld: cannot find -liconv

I'm running SuSE 7.0 on that box; glibc 2.1 with iconv in libc (IIRC).

Actually, a lot of tests fail for the same reason.

--Wez.


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




Re: [PHP-DEV] configure broken: Iconv detection still not right...

2002-03-20 Thread Jani Taskinen


I think Sascha fixed this..can you check it?
 
--Jani


On Wed, 20 Mar 2002, Wez Furlong wrote:

On 20/03/02, Jani Taskinen [EMAIL PROTECTED] wrote:
 Can you try the latest CVS now? I accidently committed 
 something that is only available in autoconf 2.52.
 (odd thing is that it worked for me even with 2.13)

Still not quite right; configure is no longer mangled but
much later, mysql detection fails because it can't find
iconv:

config.log:
configure:39290: checking for mysql_error in -lmysqlclient
configure:39309: gcc -o conftest -g -O2
   -L/usr/lib -L/usr/lib/mysql
   -Wl,-rpath,/usr/local/lib -L/usr/local/lib -Wl,-rpath,/usr
   -L/usr conftest.c -lmysqlclient -lz -liconv -lintl -lgd
   -lfreetype -lpng -lz -ljpeg -lbz2 -lz -lcrypt -lssl -lcrypto
   -lresolv -lm -ldl -lnsl  -lresolv -lcrypt 15

/usr/i486-suse-linux/bin/ld: cannot find -liconv

I'm running SuSE 7.0 on that box; glibc 2.1 with iconv in libc (IIRC).

Actually, a lot of tests fail for the same reason.

--Wez.



-- 


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




[PHP-DEV] configure broken: Iconv detection still not right...

2002-03-19 Thread Wez Furlong

Hey guys,

There's something screwy with the iconv detection/config that's
mangling configure - it's generating code like this:

Line 28183 or so of configure:

 case $iconv_lib_name in
c|c_r|pthread*
   fi
;;
*)

   LIBS=-l$iconv_lib_name $LIBS

;;
esac

The fi looks totally bogus to me, and it looks like there is
a missing ) after pthread* 

--Wez.





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




Re: [PHP-DEV] configure broken: Iconv detection still not right...

2002-03-19 Thread Jani Taskinen


And this happens with latest CVS?
Which autoconf/automake/etc versions you have?

--Jani



On Wed, 20 Mar 2002, Wez Furlong wrote:

Hey guys,

There's something screwy with the iconv detection/config that's
mangling configure - it's generating code like this:

Line 28183 or so of configure:

 case $iconv_lib_name in
c|c_r|pthread*
   fi
;;
*)

   LIBS=-l$iconv_lib_name $LIBS

;;
esac

The fi looks totally bogus to me, and it looks like there is
a missing ) after pthread* 

--Wez.







-- 


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




Re: [PHP-DEV] configure broken: Iconv detection still not right...

2002-03-19 Thread Adam Maccabee Trachtenberg

It happens with me w/ latest CVS.

autoconf 2.13, automake 1.4p5, libtool 1.4.

-adam


On Wed, 20 Mar 2002, Jani Taskinen wrote:

 
 And this happens with latest CVS?
 Which autoconf/automake/etc versions you have?
 
 --Jani
 
 
 
 On Wed, 20 Mar 2002, Wez Furlong wrote:
 
 Hey guys,
 
 There's something screwy with the iconv detection/config that's
 mangling configure - it's generating code like this:
 
 Line 28183 or so of configure:
 
  case $iconv_lib_name in
 c|c_r|pthread*
fi
 ;;
 *)
 
LIBS=-l$iconv_lib_name $LIBS
 
 ;;
 esac
 
 The fi looks totally bogus to me, and it looks like there is
 a missing ) after pthread* 
 
 --Wez.
 
 
 
 
 
 
 
 

-- 
adam maccabee trachtenberg
[EMAIL PROTECTED]


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