Zsh Mailing List Archive
Messages sorted by:
Reverse Date,
Date,
Thread,
Author
Re: 4.2.4 failure on MacOS X
- X-seq: zsh-workers 20785
- From: Motoi Washida <a66@xxxxxxxxxxxxx>
- To: Peter Stephenson <pws@xxxxxxx>
- Subject: Re: 4.2.4 failure on MacOS X
- Date: Fri, 4 Feb 2005 04:01:02 +0900
- Cc: Zsh hackers list <zsh-workers@xxxxxxxxxx>
- In-reply-to: <200502031615.j13GFnuc005915@xxxxxxxxxxxxxx>
- Mailing-list: contact zsh-workers-help@xxxxxxxxxx; run by ezmlm
- References: <200502031615.j13GFnuc005915@xxxxxxxxxxxxxx>
I also failed to build zsh on Mac OS X 10.3.7.
I think this is because configure can't find iconv(), because iconv()
is defined as libiconv() in /usr/include/iconv.h and the configure
script checks iconv() without using the header file.
I modified configure.ac a bit and seems to work. Here is the patch.
--
Motoi Washida
Index: configure.ac
===================================================================
RCS file: /cvsroot/zsh/zsh/configure.ac,v
retrieving revision 1.25
diff -d -u -r1.25 configure.ac
--- configure.ac 1 Feb 2005 10:53:10 -0000 1.25
+++ configure.ac 3 Feb 2005 18:42:05 -0000
@@ -729,10 +729,11 @@
AC_CHECK_LIB(iconv, iconv)
-if test "$host_os" = cygwin; then
-dnl cygwin iconv() is really libiconv()
-AC_CHECK_LIB(iconv, libiconv)
-fi
+case "$host_os" in
+ cygwin | darwin*)
+ dnl cygwin iconv() is really libiconv()
+ AC_CHECK_LIB(iconv, libiconv) ;;
+esac
if test x$enable_pcre = xyes; then
dnl pcre-config should probably be employed here
Messages sorted by:
Reverse Date,
Date,
Thread,
Author