X-Git-Url: http://git.draconx.ca/gitweb/gob-dx.git/blobdiff_plain/b3db2950b11fc5f3abd9ecdae855746e2d19c836..3e833eea9cb9822f04c639e143212c4b6f7940d4:/configure.in diff --git a/configure.in b/configure.in index ab05205..da4b965 100644 --- a/configure.in +++ b/configure.in @@ -2,7 +2,7 @@ dnl Process this file with autoconf to produce a configure script. AC_PREREQ(2.2) AC_INIT(src/treefuncs.h) AM_CONFIG_HEADER(config.h) -AM_INIT_AUTOMAKE(gob2,2.0.8) +AM_INIT_AUTOMAKE(gob2,2.0.16) AM_MAINTAINER_MODE GLIB_REQUIRED=2.0.0 @@ -12,19 +12,22 @@ dnl An utter hack to allow embedding of gob inside other packages. dnl if a file is found in the parent directory named NOINST_GOB, then dnl gob is not installed dnl + +AM_CONDITIONAL(NOINSTGOB, test -f ../NOINST_GOB) + +dnl Is there a way to test NOINSTGOB here ? if test -f ../NOINST_GOB ; then - DOINSTGOB= - NOINSTGOB=gob2 AC_MSG_RESULT([*** NOT Going to install GOB ***]) SUBDIRS="src examples" - AC_SUBST(SUBDIRS) + INSTGOB="" + NOINSTGOB="gob2" else - DOINSTGOB=gob2 - NOINSTGOB= SUBDIRS="src examples doc" - AC_SUBST(SUBDIRS) + INSTGOB="gob2" + NOINSTGOB="" fi -AC_SUBST(DOINSTGOB) +AC_SUBST(SUBDIRS) +AC_SUBST(INSTGOB) AC_SUBST(NOINSTGOB) dnl Checks for programs.