From a18d2496b96867d4ad3cb852cc7db7ee855718f9 Mon Sep 17 00:00:00 2001 From: stan Date: Fri, 24 Jan 2003 16:24:13 +0000 Subject: [PATCH] Added warning to run zmconfig.pl git-svn-id: http://svn.zoneminder.com/svn/zm/trunk@369 e3e1d417-86f3-4887-817a-d78f3d33393f --- configure | 26 ++++++++++++++++++++++++++ configure.in | 2 ++ 2 files changed, 28 insertions(+) diff --git a/configure b/configure index 8aa25d83f..1b5e764d4 100755 --- a/configure +++ b/configure @@ -2095,3 +2095,29 @@ chmod +x $CONFIG_STATUS rm -fr confdefs* $ac_clean_files test "$no_create" = yes || ${CONFIG_SHELL-/bin/sh} $CONFIG_STATUS || exit 1 + + +ac_safe=`echo "zmconfig.txt" | sed 'y%./+-%__p_%'` +echo $ac_n "checking for zmconfig.txt""... $ac_c" 1>&6 +echo "configure:2103: checking for zmconfig.txt" >&5 +if eval "test \"`echo '$''{'ac_cv_file_$ac_safe'+set}'`\" = set"; then + echo $ac_n "(cached) $ac_c" 1>&6 +else + if test "$cross_compiling" = yes; then + { echo "configure: error: Cannot check for file existence when cross compiling" 1>&2; exit 1; } +else + if test -r zmconfig.txt; then + eval "ac_cv_file_$ac_safe=yes" + else + eval "ac_cv_file_$ac_safe=no" + fi +fi +fi +if eval "test \"`echo '$ac_cv_file_'$ac_safe`\" = yes"; then + echo "$ac_t""yes" 1>&6 + : +else + echo "$ac_t""no" 1>&6 +echo "configure: warning: Now run 'perl zmconfig.pl' to create your ZoneMinder configuration" 1>&2 +fi + diff --git a/configure.in b/configure.in index e705a5e40..85cc2e43f 100644 --- a/configure.in +++ b/configure.in @@ -74,3 +74,5 @@ AC_CHECK_LIB(dl,dlsym,,AC_MSG_ERROR(zm requires libdl.a)) AC_SUBST(bindir) AC_OUTPUT(Makefile src/Makefile web/Makefile scripts/Makefile db/Makefile zmconfig.pl) + +AC_CHECK_FILE(zmconfig.txt,,AC_MSG_WARN([Now run 'perl zmconfig.pl' to create your ZoneMinder configuration]))