diff options
author | Dan Winship <danw@src.gnome.org> | 2002-07-22 23:35:36 +0800 |
---|---|---|
committer | Dan Winship <danw@src.gnome.org> | 2002-07-22 23:35:36 +0800 |
commit | 1e79524cbbd43ed9d4f9c22079e228cc254f23fb (patch) | |
tree | 4e9a0fccb03283255e30f5b595458093b11c18f8 /configure.in | |
parent | 3be22927c9e78febdd6206c2866703128e27e116 (diff) | |
download | gsoc2013-evolution-1e79524cbbd43ed9d4f9c22079e228cc254f23fb.tar.gz gsoc2013-evolution-1e79524cbbd43ed9d4f9c22079e228cc254f23fb.tar.zst gsoc2013-evolution-1e79524cbbd43ed9d4f9c22079e228cc254f23fb.zip |
Check if we're trying to build with the old libversit module borrowed from
* configure.in: Check if we're trying to build with the old
libversit module borrowed from gnome-pim instead of our own new
one, and refuse to build if so.
* libversit/Makefile.am: Remove libversit.la stuff since we don't
want it and it messes up the build slightly.
svn path=/trunk/; revision=17526
Diffstat (limited to 'configure.in')
-rw-r--r-- | configure.in | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/configure.in b/configure.in index 60a1bfe8e4..bfcd6e686a 100644 --- a/configure.in +++ b/configure.in @@ -2,6 +2,21 @@ AC_INIT(camel) AM_CONFIG_HEADER(config.h) +if test -f libversit/CVS/Repository; then + case `cat libversit/CVS/Repository` in + gnome-pim*) + echo "" + echo "ERROR: CVS working directory is out of date" + echo "Please do:" + echo " rm -rf libversit" + echo " cvs update -d libversit" + echo " automake libversit/Makefile" + echo "and try again. We apologize for the inconvenience" + exit 1 + ;; + esac +fi + EVOLUTION_MAJOR_VERSION=1 EVOLUTION_MINOR_VERSION=1 EVOLUTION_MICRO_VERSION=0 |