# HG changeset patch # User Pascal Bellard # Date 1241939067 -7200 # Node ID c9b47f8233e2c9e92cc14ce872c3ad543b5dd0a3 # Parent d951eebf7fba88705e79b74b44130b90ee8b65ef rsync: disable iconv support diff -r d951eebf7fba -r c9b47f8233e2 rsync/receipt --- a/rsync/receipt Sun May 10 00:02:45 2009 +0200 +++ b/rsync/receipt Sun May 10 09:04:27 2009 +0200 @@ -18,7 +18,11 @@ ./configure \ --prefix=/usr \ --mandir=/usr/share/man \ - $CONFIGURE_ARGS && + --disable-iconv --disable-iconv-open \ + $CONFIGURE_ARGS + sed -i -e 's/HAVE_ICONV_H ./HAVE_ICONV_H 0/' \ + -e 's/HAVE_ICONV_OPEN ./HAVE_ICONV_OPEN 0/' config.h + sed -i 's/-liconv//' Makefile make && make DESTDIR=$PWD/_pkg install }