php.net |  support |  documentation |  report a bug |  advanced search |  search howto |  statistics |  random bug |  login
Bug #10742 iconv failure
Submitted: 2001-05-09 02:21 UTC Modified: 2001-05-21 18:22 UTC
From: dnl at socix dot com Assigned:
Status: Closed Package: Compile Failure
PHP Version: 4.0.5 OS: redhat7.1
Private report: No CVE-ID: None
Welcome back! If you're the original bug submitter, here's where you can edit the bug or add additional notes.
If you forgot your password, you can retrieve your password here.
Password:
Status:
Package:
Bug Type:
Summary:
From: dnl at socix dot com
New email:
PHP Version: OS:

 

 [2001-05-09 02:21 UTC] dnl at socix dot com
error source:
  if test -f $ICONV_DIR/lib/libconv.a -o -f $ICONV_DIR/lib/libiconv.so ; then
    AC_CHECK_LIB(iconv, iconv_open, AC_DEFINE(HAVE_ICONV, 1, [ ]))
    AC_ADD_LIBRARY_WITH_PATH(iconv, $ICONV_DIR/lib, ICONV_SHARED_LIBADD)
  else
    AC_CHECK_LIB(c, iconv_open, AC_DEFINE(HAVE_ICONV, 1, [ ]))
  fi

right source:

  if test -f $ICONV_DIR/lib/libconv.a -o -f $ICONV_DIR/lib/libiconv.so ; then
    AC_ADD_LIBRARY_WITH_PATH(iconv, $ICONV_DIR/lib, ICONV_SHARED_LIBADD)
    AC_CHECK_LIB(iconv, iconv_open, AC_DEFINE(HAVE_ICONV, 1, [ ]))
  else
    AC_CHECK_LIB(c, iconv_open, AC_DEFINE(HAVE_ICONV, 1, [ ]))
  fi

Patches

Pull Requests

History

AllCommentsChangesGit/SVN commitsRelated reports
 [2001-05-09 14:33 UTC] derick@php.net
Sascha, Sterling, can you please comment on this one?
 [2001-05-09 22:40 UTC] dnl at socix dot com
filename is iconv/config.m4
 [2001-05-09 22:45 UTC] dnl at socix dot com
filename is config.m4,
if use error source,you cannot make iconv for php4.05.

please use right replace error.
error begin row 30.
 [2001-05-21 18:22 UTC] sniper@php.net
Fixed in CVS. Thanks!

--Jani

 
PHP Copyright © 2001-2024 The PHP Group
All rights reserved.
Last updated: Sun Dec 22 05:01:30 2024 UTC