From owner-freebsd-gnome Sun May 19 7:54:54 2002 Delivered-To: freebsd-gnome@freebsd.org Received: from kweetal.tue.nl (kweetal.tue.nl [131.155.2.7]) by hub.freebsd.org (Postfix) with ESMTP id A4B5A37B405 for ; Sun, 19 May 2002 07:54:51 -0700 (PDT) Received: from svis02.win.tue.nl (svis02.win.tue.nl [131.155.70.172]) by kweetal.tue.nl (8.12.3/8.12.3) with ESMTP id g4JEsjnf11844080 for ; Sun, 19 May 2002 16:54:45 +0200 (MDT) Received: (from rp@localhost) by svis02.win.tue.nl (8.11.6/8.11.6) id g4JEsnV05435 for gnome@freebsd.org; Sun, 19 May 2002 16:54:49 +0200 (MET DST) Date: Sun, 19 May 2002 16:54:49 +0200 From: Reinier Post To: gnome@freebsd.org Subject: libiconv-1.7 Makefile problem Message-ID: <20020519165448.A5426@win.tue.nl> Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="2oS5YaxWCcQjTEyO" Content-Disposition: inline User-Agent: Mutt/1.2.5i Sender: owner-freebsd-gnome@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG --2oS5YaxWCcQjTEyO Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Hi, Trying to compile the GNU gettext port on my FreeBSD 4.2-RELEASE system, I encountered a problem in libiconv: it calls /usr/bin/gperf with -L, but my /usr/bin/gperf doesn't support that option. /usr/local/bin/gperf, from the gperf port, does support the option. Attached is what I did to fix it; there should probably be something that tries both. I haven't checked if this has been reported before. Thanks for the port, -- Reinier Post --2oS5YaxWCcQjTEyO Content-Type: text/plain; charset=us-ascii Content-Disposition: attachment; filename="libiconv-1.7.diff-u" --- Makefile.orig Thu May 2 04:13:52 2002 +++ Makefile Sun May 19 16:22:43 2002 @@ -24,6 +24,6 @@ MAN3= iconv.3 iconv_open.3 iconv_close.3 pre-build: - @cd ${WRKSRC} ; /usr/bin/gperf -t -L ANSI-C -H aliases_hash -N aliases_lookup -7 -C -k '1,3-11,$$' -i 1 lib/aliases.gperf > lib/aliases.h + @cd ${WRKSRC} ; /usr/local/bin/gperf -t -L ANSI-C -H aliases_hash -N aliases_lookup -7 -C -k '1,3-11,$$' -i 1 lib/aliases.gperf > lib/aliases.h .include --2oS5YaxWCcQjTEyO-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-gnome" in the body of the message