Added ability to specify MySQL DB engine type.
git-svn-id: http://svn.zoneminder.com/svn/zm/trunk@2725 e3e1d417-86f3-4887-817a-d78f3d33393f
This commit is contained in:
parent
dde584a12a
commit
25dc98a39f
15
configure.ac
15
configure.ac
|
@ -9,11 +9,12 @@ AC_SUBST(PATH_BUILD)
|
||||||
TIME_BUILD=`date +'%s'`
|
TIME_BUILD=`date +'%s'`
|
||||||
AC_SUBST(TIME_BUILD)
|
AC_SUBST(TIME_BUILD)
|
||||||
|
|
||||||
AC_ARG_VAR(ZM_DB_HOST,[Hostname where ZoneMinder database located])
|
AC_ARG_VAR(ZM_DB_HOST,[Hostname where ZoneMinder database located, default localhost])
|
||||||
AC_ARG_VAR(ZM_DB_NAME,[Name of ZoneMinder database])
|
AC_ARG_VAR(ZM_DB_NAME,[Name of ZoneMinder database, default zm])
|
||||||
AC_ARG_VAR(ZM_DB_USER,[Name of ZoneMinder database user])
|
AC_ARG_VAR(ZM_DB_USER,[Name of ZoneMinder database user, default zmuser])
|
||||||
AC_ARG_VAR(ZM_DB_PASS,[Password of ZoneMinder database user])
|
AC_ARG_VAR(ZM_DB_PASS,[Password of ZoneMinder database user, default zmpass])
|
||||||
AC_ARG_VAR(ZM_SSL_LIB,[Library to use for ssl functions])
|
AC_ARG_VAR(ZM_SSL_LIB,[Library to use for ssl functions, default gnutls])
|
||||||
|
AC_ARG_VAR(ZM_MYSQL_ENGINE,[MySQL engine to use with database, default MyISAM])
|
||||||
|
|
||||||
if test "$ZM_DB_HOST" == ""; then
|
if test "$ZM_DB_HOST" == ""; then
|
||||||
AC_SUBST(ZM_DB_HOST,[localhost])
|
AC_SUBST(ZM_DB_HOST,[localhost])
|
||||||
|
@ -30,6 +31,9 @@ fi
|
||||||
if test "$ZM_SSL_LIB" == ""; then
|
if test "$ZM_SSL_LIB" == ""; then
|
||||||
AC_SUBST(ZM_SSL_LIB,gnutls)
|
AC_SUBST(ZM_SSL_LIB,gnutls)
|
||||||
fi
|
fi
|
||||||
|
if test "$ZM_MYSQL_ENGINE" == ""; then
|
||||||
|
AC_SUBST(ZM_MYSQL_ENGINE,MyISAM)
|
||||||
|
fi
|
||||||
|
|
||||||
LIB_ARCH=lib
|
LIB_ARCH=lib
|
||||||
AC_ARG_WITH(libarch,
|
AC_ARG_WITH(libarch,
|
||||||
|
@ -184,7 +188,6 @@ else
|
||||||
fi
|
fi
|
||||||
AC_SUBST(ENABLE_MMAP)
|
AC_SUBST(ENABLE_MMAP)
|
||||||
|
|
||||||
|
|
||||||
# Compiler
|
# Compiler
|
||||||
AC_LANG_CPLUSPLUS
|
AC_LANG_CPLUSPLUS
|
||||||
|
|
||||||
|
|
|
@ -17,7 +17,7 @@
|
||||||
-- Current Database: `@ZM_DB_NAME@`
|
-- Current Database: `@ZM_DB_NAME@`
|
||||||
--
|
--
|
||||||
|
|
||||||
CREATE DATABASE /*!32312 IF NOT EXISTS*/ `@ZM_DB_NAME@` /*!40100 DEFAULT CHARACTER SET latin1 */;
|
CREATE DATABASE /*!32312 IF NOT EXISTS*/ `@ZM_DB_NAME@`;
|
||||||
|
|
||||||
USE `@ZM_DB_NAME@`;
|
USE `@ZM_DB_NAME@`;
|
||||||
|
|
||||||
|
@ -41,7 +41,7 @@ CREATE TABLE `Config` (
|
||||||
`Readonly` tinyint(3) unsigned NOT NULL default '0',
|
`Readonly` tinyint(3) unsigned NOT NULL default '0',
|
||||||
`Requires` text,
|
`Requires` text,
|
||||||
PRIMARY KEY (`Name`)
|
PRIMARY KEY (`Name`)
|
||||||
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
|
) ENGINE=@ZM_MYSQL_ENGINE@;
|
||||||
|
|
||||||
--
|
--
|
||||||
-- Table structure for table `ControlPresets`
|
-- Table structure for table `ControlPresets`
|
||||||
|
@ -53,7 +53,7 @@ CREATE TABLE `ControlPresets` (
|
||||||
`Preset` int(10) unsigned NOT NULL default '0',
|
`Preset` int(10) unsigned NOT NULL default '0',
|
||||||
`Label` varchar(64) NOT NULL default '',
|
`Label` varchar(64) NOT NULL default '',
|
||||||
PRIMARY KEY (`MonitorId`,`Preset`)
|
PRIMARY KEY (`MonitorId`,`Preset`)
|
||||||
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
|
) ENGINE=@ZM_MYSQL_ENGINE@;
|
||||||
|
|
||||||
--
|
--
|
||||||
-- Table structure for table `Controls`
|
-- Table structure for table `Controls`
|
||||||
|
@ -161,7 +161,7 @@ CREATE TABLE `Controls` (
|
||||||
`CanAutoScan` tinyint(3) unsigned NOT NULL default '0',
|
`CanAutoScan` tinyint(3) unsigned NOT NULL default '0',
|
||||||
`NumScanPaths` tinyint(3) unsigned NOT NULL default '0',
|
`NumScanPaths` tinyint(3) unsigned NOT NULL default '0',
|
||||||
PRIMARY KEY (`Id`)
|
PRIMARY KEY (`Id`)
|
||||||
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
|
) ENGINE=@ZM_MYSQL_ENGINE@;
|
||||||
|
|
||||||
--
|
--
|
||||||
-- Table structure for table `Devices`
|
-- Table structure for table `Devices`
|
||||||
|
@ -174,7 +174,7 @@ CREATE TABLE `Devices` (
|
||||||
`Type` enum('X10') NOT NULL default 'X10',
|
`Type` enum('X10') NOT NULL default 'X10',
|
||||||
`KeyString` varchar(32) NOT NULL default '',
|
`KeyString` varchar(32) NOT NULL default '',
|
||||||
PRIMARY KEY (`Id`)
|
PRIMARY KEY (`Id`)
|
||||||
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
|
) ENGINE=@ZM_MYSQL_ENGINE@;
|
||||||
|
|
||||||
--
|
--
|
||||||
-- Table structure for table `Events`
|
-- Table structure for table `Events`
|
||||||
|
@ -208,7 +208,7 @@ CREATE TABLE `Events` (
|
||||||
KEY `StartTime` (`StartTime`),
|
KEY `StartTime` (`StartTime`),
|
||||||
KEY `Frames` (`Frames`),
|
KEY `Frames` (`Frames`),
|
||||||
KEY `Archived` (`Archived`)
|
KEY `Archived` (`Archived`)
|
||||||
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
|
) ENGINE=@ZM_MYSQL_ENGINE@;
|
||||||
|
|
||||||
--
|
--
|
||||||
-- Table structure for table `Filters`
|
-- Table structure for table `Filters`
|
||||||
|
@ -228,7 +228,7 @@ CREATE TABLE `Filters` (
|
||||||
`AutoDelete` tinyint(3) unsigned NOT NULL default '0',
|
`AutoDelete` tinyint(3) unsigned NOT NULL default '0',
|
||||||
`Background` tinyint(1) unsigned NOT NULL default '0',
|
`Background` tinyint(1) unsigned NOT NULL default '0',
|
||||||
PRIMARY KEY (`Name`)
|
PRIMARY KEY (`Name`)
|
||||||
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
|
) ENGINE=@ZM_MYSQL_ENGINE@;
|
||||||
|
|
||||||
--
|
--
|
||||||
-- Table structure for table `Frames`
|
-- Table structure for table `Frames`
|
||||||
|
@ -245,7 +245,7 @@ CREATE TABLE `Frames` (
|
||||||
PRIMARY KEY (`EventId`,`FrameId`),
|
PRIMARY KEY (`EventId`,`FrameId`),
|
||||||
KEY `Type` (`Type`),
|
KEY `Type` (`Type`),
|
||||||
KEY `TimeStamp` (`TimeStamp`)
|
KEY `TimeStamp` (`TimeStamp`)
|
||||||
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
|
) ENGINE=@ZM_MYSQL_ENGINE@;
|
||||||
|
|
||||||
--
|
--
|
||||||
-- Table structure for table `Groups`
|
-- Table structure for table `Groups`
|
||||||
|
@ -257,7 +257,7 @@ CREATE TABLE `Groups` (
|
||||||
`Name` varchar(64) NOT NULL default '',
|
`Name` varchar(64) NOT NULL default '',
|
||||||
`MonitorIds` tinytext NOT NULL,
|
`MonitorIds` tinytext NOT NULL,
|
||||||
PRIMARY KEY (`Id`)
|
PRIMARY KEY (`Id`)
|
||||||
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
|
) ENGINE=@ZM_MYSQL_ENGINE@;
|
||||||
|
|
||||||
--
|
--
|
||||||
-- Table structure for table `MonitorPresets`
|
-- Table structure for table `MonitorPresets`
|
||||||
|
@ -288,7 +288,7 @@ CREATE TABLE `MonitorPresets` (
|
||||||
`DefaultRate` smallint(5) unsigned NOT NULL default '100',
|
`DefaultRate` smallint(5) unsigned NOT NULL default '100',
|
||||||
`DefaultScale` smallint(5) unsigned NOT NULL default '100',
|
`DefaultScale` smallint(5) unsigned NOT NULL default '100',
|
||||||
PRIMARY KEY (`Id`)
|
PRIMARY KEY (`Id`)
|
||||||
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
|
) ENGINE=@ZM_MYSQL_ENGINE@;
|
||||||
|
|
||||||
--
|
--
|
||||||
-- Table structure for table `Monitors`
|
-- Table structure for table `Monitors`
|
||||||
|
@ -352,7 +352,7 @@ CREATE TABLE `Monitors` (
|
||||||
`WebColour` varchar(32) NOT NULL default 'red',
|
`WebColour` varchar(32) NOT NULL default 'red',
|
||||||
`Sequence` smallint(5) unsigned default NULL,
|
`Sequence` smallint(5) unsigned default NULL,
|
||||||
PRIMARY KEY (`Id`)
|
PRIMARY KEY (`Id`)
|
||||||
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
|
) ENGINE=@ZM_MYSQL_ENGINE@;
|
||||||
|
|
||||||
--
|
--
|
||||||
-- Table structure for table `States`
|
-- Table structure for table `States`
|
||||||
|
@ -363,7 +363,7 @@ CREATE TABLE `States` (
|
||||||
`Name` varchar(64) NOT NULL default '',
|
`Name` varchar(64) NOT NULL default '',
|
||||||
`Definition` text NOT NULL,
|
`Definition` text NOT NULL,
|
||||||
PRIMARY KEY (`Name`)
|
PRIMARY KEY (`Name`)
|
||||||
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
|
) ENGINE=@ZM_MYSQL_ENGINE@;
|
||||||
|
|
||||||
--
|
--
|
||||||
-- Table structure for table `Stats`
|
-- Table structure for table `Stats`
|
||||||
|
@ -390,7 +390,7 @@ CREATE TABLE `Stats` (
|
||||||
KEY `EventId` (`EventId`),
|
KEY `EventId` (`EventId`),
|
||||||
KEY `MonitorId` (`MonitorId`),
|
KEY `MonitorId` (`MonitorId`),
|
||||||
KEY `ZoneId` (`ZoneId`)
|
KEY `ZoneId` (`ZoneId`)
|
||||||
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
|
) ENGINE=@ZM_MYSQL_ENGINE@;
|
||||||
|
|
||||||
--
|
--
|
||||||
-- Table structure for table `TriggersX10`
|
-- Table structure for table `TriggersX10`
|
||||||
|
@ -403,7 +403,7 @@ CREATE TABLE `TriggersX10` (
|
||||||
`AlarmInput` varchar(32) default NULL,
|
`AlarmInput` varchar(32) default NULL,
|
||||||
`AlarmOutput` varchar(32) default NULL,
|
`AlarmOutput` varchar(32) default NULL,
|
||||||
PRIMARY KEY (`MonitorId`)
|
PRIMARY KEY (`MonitorId`)
|
||||||
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
|
) ENGINE=@ZM_MYSQL_ENGINE@;
|
||||||
|
|
||||||
--
|
--
|
||||||
-- Table structure for table `Users`
|
-- Table structure for table `Users`
|
||||||
|
@ -426,7 +426,7 @@ CREATE TABLE `Users` (
|
||||||
`MonitorIds` tinytext NOT NULL,
|
`MonitorIds` tinytext NOT NULL,
|
||||||
PRIMARY KEY (`Id`),
|
PRIMARY KEY (`Id`),
|
||||||
UNIQUE KEY `UC_Username` (`Username`)
|
UNIQUE KEY `UC_Username` (`Username`)
|
||||||
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
|
) ENGINE=@ZM_MYSQL_ENGINE@;
|
||||||
|
|
||||||
--
|
--
|
||||||
-- Table structure for table `ZonePresets`
|
-- Table structure for table `ZonePresets`
|
||||||
|
@ -453,7 +453,7 @@ CREATE TABLE `ZonePresets` (
|
||||||
`MaxBlobs` smallint(5) unsigned default NULL,
|
`MaxBlobs` smallint(5) unsigned default NULL,
|
||||||
`OverloadFrames` smallint(5) unsigned NOT NULL default '0',
|
`OverloadFrames` smallint(5) unsigned NOT NULL default '0',
|
||||||
PRIMARY KEY (`Id`)
|
PRIMARY KEY (`Id`)
|
||||||
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
|
) ENGINE=@ZM_MYSQL_ENGINE@;
|
||||||
|
|
||||||
--
|
--
|
||||||
-- Table structure for table `Zones`
|
-- Table structure for table `Zones`
|
||||||
|
@ -486,7 +486,7 @@ CREATE TABLE `Zones` (
|
||||||
`OverloadFrames` smallint(5) unsigned NOT NULL default '0',
|
`OverloadFrames` smallint(5) unsigned NOT NULL default '0',
|
||||||
PRIMARY KEY (`Id`),
|
PRIMARY KEY (`Id`),
|
||||||
KEY `MonitorId` (`MonitorId`)
|
KEY `MonitorId` (`MonitorId`)
|
||||||
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
|
) ENGINE=@ZM_MYSQL_ENGINE@;
|
||||||
|
|
||||||
/*!40101 SET SQL_MODE=@OLD_SQL_MODE */;
|
/*!40101 SET SQL_MODE=@OLD_SQL_MODE */;
|
||||||
/*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */;
|
/*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */;
|
||||||
|
|
Loading…
Reference in New Issue