On Thu, Nov 11, 2010 at 03:58:45PM +0700, james croft wrote: > Hi, > I'm trying to get Nominatim up and running on a dev box. I am checking out > the osm2pgsql code from git and am running into a problem > with gazetteer-functions.sql. It used to be that running 'make' in the > gazetteer directory created a gazetteer.so file that I could reference from > the gazetteer-functions.sql script. I just replaced the following with the > location of the file. > > CREATE OR REPLACE FUNCTION transliteration(text) RETURNS text > AS '/home/twain/osm2pgsql2/gazetteer/gazetteer.so', 'transliteration' > LANGUAGE c IMMUTABLE STRICT; > > It now appears that automake and libtool (things I know nothing about) are > being used and this file is no longer generated. What do I replace the > references in the gazetteer-functions.sql script to now?
You probably need to run ./autogen.sh to create the ./configure script. Then run ./configure (possibly with preferences) Finally run make. PS: where's the git repo for osm2pgsql ? --strk; () Free GIS & Flash consultant/developer /\ http://strk.keybit.net/services.html _______________________________________________ dev mailing list [email protected] http://lists.openstreetmap.org/listinfo/dev

