]> www.wagner.pp.ru Git - oss/fgis.git/blobdiff - configure.ac
*** empty log message ***
[oss/fgis.git] / configure.ac
index 118885ee67ed0fd65d5ae82d8949c605ac11f006..5c556ee2088e0416339ffcae9df8049609eba5f1 100644 (file)
@@ -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
+