On Fri, Jan 8, 2010 at 4:12 AM, chombee <[email protected]> wrote: > On Thu, Jan 07, 2010 at 08:18:14PM -0800, Rob Farmer wrote: >> >> So I suspect you don't have gettext installed, are trying to use the >> --without-gettext confgure option (which is broken), or it can't find >> the library. > > Aha! Gettext and many other things are installed in a strange location > on this system, it's /usr/pkg/bin/gettext. I often have to correct > programs about the locations of things in /usr/pkg/bin. That could be > it. Is it just the gettext binary that it's looking for? Is there some > way to inform configure or make about the location of gettext? Thanks
I'm not familiar with NetBSD, but I assume it is fairly similar to FreeBSD for stuff like this (I'm the maintainer for the fish port). Try setting your environment variables to something like: CPPFLAGS= -I/usr/pkg/include LDFLAGS= -L/usr/pkg/lib LIBS= -L/usr/pkg/lib and see if this works. On FreeBSD, it still doesn't and I have to patch the configure script, so try: http://www.predatorlabs.net/v/*checkout*/ports/shells/fish/files/patch-configure.ac?revision=1.2 > > > ------------------------------------------------------------------------------ > This SF.Net email is sponsored by the Verizon Developer Community > Take advantage of Verizon's best-in-class app development support > A streamlined, 14 day to market process makes app distribution fast and easy > Join now and get one step closer to millions of Verizon customers > http://p.sf.net/sfu/verizon-dev2dev > _______________________________________________ > Fish-users mailing list > [email protected] > https://lists.sourceforge.net/lists/listinfo/fish-users > -- Rob Farmer ------------------------------------------------------------------------------ This SF.Net email is sponsored by the Verizon Developer Community Take advantage of Verizon's best-in-class app development support A streamlined, 14 day to market process makes app distribution fast and easy Join now and get one step closer to millions of Verizon customers http://p.sf.net/sfu/verizon-dev2dev _______________________________________________ Fish-users mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/fish-users
