X-Git-Url: http://www.wagner.pp.ru/gitweb/?p=oss%2Ffgis.git;a=blobdiff_plain;f=configure.ac;fp=configure.ac;h=5c556ee2088e0416339ffcae9df8049609eba5f1;hp=118885ee67ed0fd65d5ae82d8949c605ac11f006;hb=8d7c92e1a47c24c89b96e384aac6b808e5d4ecde;hpb=ed514d6406b2a9110a2dcc043b4c6a1af755e081 diff --git a/configure.ac b/configure.ac index 118885e..5c556ee 100644 --- a/configure.ac +++ b/configure.ac @@ -1,8 +1,6 @@ # Process this file with autoconf to produce a configure script. AC_INIT(fGIS, 0.0.1, dron@remotesensing.org) -# AC_CONFIG_HEADERS([config.h]) AM_INIT_AUTOMAKE -# AC_CONFIG_SRCDIR([include/regex.h]) AM_CONFIG_HEADER(include/config.h) dnl Checks for programs. @@ -49,13 +47,32 @@ dnl --------------------------------------------------------------------------- dnl Handle global configuration file placement dnl --------------------------------------------------------------------------- -AC_DEFINE_DIR(FGIS_CONFIG, "$sysconfdir", [Define this to the location of the global config file]) +dnl FIXME: won't works +dnl AC_DEFINE_DIR(FGIS_CONFIG, "$sysconfdir", [Define this to the location of the global config file]) +AC_SUBST_DIR(FGIS_CONFIG,"$sysconfdir") +AC_DEFINE_UNQUOTED(FGIS_CONFIG,"$FGIS_CONFIG",[Define this to the location of the global config file]) +AC_SUBST(FGIS_CONFIG,$FGIS_CONFIG) dnl --------------------------------------------------------------------------- dnl Handle placement of the engine module (fgis.so) dnl --------------------------------------------------------------------------- AC_SUBST_DIR(FGIS_LIBDIR,"$libdir") +AC_SUBST(FGIS_LIBDIR,$FGIS_LIBDIR) + +dnl --------------------------------------------------------------------------- +dnl Handle placement of the fGIS Tcl/Tk modules +dnl --------------------------------------------------------------------------- + +AC_SUBST_DIR(FGIS_SCRIPTS,"$libdir/fgis/tcl") +AC_SUBST(FGIS_SCRIPTS,$FGIS_SCRIPTS) + +dnl --------------------------------------------------------------------------- +dnl Define path for EPPL7 library sources. Temporary hack, the whole this +dnl library will be removed soon +dnl --------------------------------------------------------------------------- + +AC_SUBST(LIBEPP,../lib/libepp.la) dnl --------------------------------------------------------------------------- dnl Check for Tcl/Tk installation @@ -78,11 +95,13 @@ CY_AC_PATH_TKH CY_AC_PATH_TKCONFIG CY_AC_LOAD_TKCONFIG AC_SUBST(TK_INC_DIR,$TK_INC_DIR) -if [[ $TK_VERSION < "8.4" ]]; then - AC_DEFINE([TK_84PREV], [0], [Define this variable if your Tk version less then 8.4]) +if [[[ $TK_VERSION < "8.4" ]]]; then + AC_DEFINE([TK_84PREV], , [Define this variable if your Tk version less then 8.4]) fi AC_CONFIG_FILES([Makefile + etc/Makefile + etc/fgis.rc dll/Makefile epu/Makefile include/Makefile @@ -90,3 +109,4 @@ AC_CONFIG_FILES([Makefile tcl/Makefile tcl/pkgIndex.tcl]) AC_OUTPUT +