From cc2acd6d36b2835eb9a7e5a4e6f79bfbcaef5d1f Mon Sep 17 00:00:00 2001 From: stan Date: Mon, 17 Sep 2007 15:48:02 +0000 Subject: [PATCH] Removed dependency on General module due to missing symbols. git-svn-id: http://svn.zoneminder.com/svn/zm/trunk@2203 e3e1d417-86f3-4887-817a-d78f3d33393f --- scripts/zmupdate.pl | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/scripts/zmupdate.pl b/scripts/zmupdate.pl index fa14304ae..b77fbb451 100644 --- a/scripts/zmupdate.pl +++ b/scripts/zmupdate.pl @@ -45,7 +45,10 @@ use constant CHECK_INTERVAL => (1*24*60*60); # Interval between version checks # # ========================================================================== -use ZoneMinder; +use ZoneMinder::Base qw(:all); +use ZoneMinder::Config qw(:all); +use ZoneMinder::Debug qw(:all); +use ZoneMinder::Database qw(:all); use ZoneMinder::ConfigAdmin qw( :functions ); use POSIX; use DBI;