Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 196991
Collapse All | Expand All

(-)configure.ac (-1 / +1 lines)
Lines 119-125 Link Here
119
IT_PROG_INTLTOOL([0.35.0])
119
IT_PROG_INTLTOOL([0.35.0])
120
120
121
# required versions
121
# required versions
122
SQLITE_REQUIRED=3.0
122
SQLITE_REQUIRED=3.7.0
123
GTKMM_REQUIRED=2.12.0
123
GTKMM_REQUIRED=2.12.0
124
GLIBMM_REQUIRED=2.12.0
124
GLIBMM_REQUIRED=2.12.0
125
GIOMM_REQUIRED=2.10.0
125
GIOMM_REQUIRED=2.10.0
(-)control (-1 / +1 lines)
Lines 4-10 Link Here
4
Maintainer: me-tv team <https://launchpad.net/~me-tv-administration>
4
Maintainer: me-tv team <https://launchpad.net/~me-tv-administration>
5
Build-Depends: debhelper (>= 7.0.50~), autotools-dev, pkg-config, intltool,
5
Build-Depends: debhelper (>= 7.0.50~), autotools-dev, pkg-config, intltool,
6
               libgtkmm-2.4-dev (>=2.12), libx11-dev,
6
               libgtkmm-2.4-dev (>=2.12), libx11-dev,
7
               libsqlite3-dev, libgconfmm-2.6-dev, libunique-dev,
7
               libsqlite3-dev (>=3.7.0), libgconfmm-2.6-dev, libunique-dev,
8
               libdbus-glib-1-dev, libxml++2.6-dev, libvlc-dev,
8
               libdbus-glib-1-dev, libxml++2.6-dev, libvlc-dev,
9
               libgstreamer0.10-dev, libgstreamer-plugins-base0.10-dev
9
               libgstreamer0.10-dev, libgstreamer-plugins-base0.10-dev
10
Standards-Version: 3.9.1
10
Standards-Version: 3.9.1
(-)server/data.cc (+17 lines)
Lines 74-79 Link Here
74
	{
74
	{
75
		throw SQLiteException(connection, _("Failed to finalise statement"));
75
		throw SQLiteException(connection, _("Failed to finalise statement"));
76
	}
76
	}
77
78
	statement = NULL;
77
}
79
}
78
80
79
void Statement::reset()
81
void Statement::reset()
Lines 178-183 Link Here
178
	}
180
	}
179
	
181
	
180
	database_created = !database_exists;
182
	database_created = !database_exists;
183
184
	// Enable WAL journal
185
	Statement* stmnt = new Statement(*this, "PRAGMA journal_mode=WAL");
186
	stmnt->step();
187
	delete stmnt;
188
189
	// Set page size
190
	stmnt = new Statement(*this, "PRAGMA page_size=8192");
191
	stmnt->step();
192
	delete stmnt;
193
194
	// Synchronous mode
195
	stmnt = new Statement(*this, "PRAGMA synchronous=NORMAL");
196
	stmnt->step();
197
	delete stmnt;
181
}
198
}
182
199
183
Connection::~Connection()
200
Connection::~Connection()

Return to bug 196991