nominatim refactoring

This commit is contained in:
Brian Quinion
2010-10-23 23:12:37 +00:00
commit ab6a996772
40 changed files with 7486 additions and 0 deletions

15
nominatim/configure.ac Normal file
View File

@@ -0,0 +1,15 @@
dnl Process this file with autoconf to produce a configure script.
AC_INIT(nominatim, 0.1)
dnl Generate configuration header file
AC_CONFIG_HEADER(config.h)
dnl Find C compiler
AC_PROG_CC
dnl Find C++ compiler
AC_PROG_CXX
dnl Generate Makefile
AC_OUTPUT(Makefile)