Added version number config.
git-svn-id: http://svn.zoneminder.com/svn/zm/trunk@372 e3e1d417-86f3-4887-817a-d78f3d33393f
This commit is contained in:
parent
2cdc4038cc
commit
9ef40a1e82
|
@ -21,6 +21,7 @@
|
|||
|
||||
// This section contains options substituted by the zmconfig.pl utility, do not edit these directly
|
||||
//
|
||||
define( "ZM_VERSION", "<from zmconfig>" ); // Version Number
|
||||
define( "ZM_PATH_BIN", "<from zmconfig>" ); // Path to binaries
|
||||
define( "ZM_PATH_WEB", "<from zmconfig>" ); // Path to web files
|
||||
define( "ZM_PATH_CGI", "<from zmconfig>" ); // Path to cgi files
|
||||
|
|
|
@ -79,6 +79,13 @@ my $bindir = "${exec_prefix}/bin";
|
|||
|
||||
my @options =
|
||||
(
|
||||
{
|
||||
name => "ZM_VERSION",
|
||||
default => "@VERSION@",
|
||||
description => "ZoneMinder version number, autogenerated do not change",
|
||||
type => $types{anything},
|
||||
readonly => 1,
|
||||
},
|
||||
{
|
||||
name => "ZM_PATH_BIN",
|
||||
default => "$bindir",
|
||||
|
|
Loading…
Reference in New Issue