I succeeded
Hi, I had the same problem on HP-UX 11.23 IA64.
and I succeeded by installing GNUbase, and editing configure file.
Hi, I had the same problem on HP-UX 11.23 IA64.
and I succeeded by installing GNUbase, and editing configure file.
Code:
swlist -l file | egrep 'iconv\.(h|a|la|so)' GNUbase.GNUBASE-IPF-RUN: /usr/local/include/iconv.h GNUbase.GNUBASE-IPF-RUN: /usr/local/lib/hpux32/libiconv.a GNUbase.GNUBASE-IPF-RUN: /usr/local/lib/hpux32/libiconv.la GNUbase.GNUBASE-IPF-RUN: /usr/local/lib/hpux32/libiconv.so
Code:
diff -C2 configure.org configure
*** configure.org Tue Feb 28 01:18:03 2012
--- configure Tue Feb 28 01:19:06 2012
***************
*** 13464,13472 ****
echo $ECHO_N "checking for ICONV support... $ECHO_C" >&6; }
! if test -f /usr/include/iconv.h; then
! found_iconv="yes"
! elif test -f /usr/local/include/iconv.h; then
ICONV_CFLAGS="-I/usr/local/include"
! ICONV_LDFLAGS="-L/usr/local/lib"
found_iconv="yes"
else
--- 13464,13470 ----
echo $ECHO_N "checking for ICONV support... $ECHO_C" >&6; }
! if test -f /usr/local/include/iconv.h; then
ICONV_CFLAGS="-I/usr/local/include"
! ICONV_LDFLAGS="-L/usr/local/lib/hpux32"
found_iconv="yes"
else
Comment