pike.git/
lib/
modules/
Sql.pmod/
mysql.pike
Branch:
Tag:
Non-build tags
All tags
No tags
2010-11-02
2010-11-02 13:06:22 by Martin Stjernholm <mast@lysator.liu.se>
a59c79123296d5d74771b1888af6529ea825ecea (
7
lines) (+
6
/-
1
)
[
Show
|
Annotate
]
Branch:
7.9
Don't dump sql driver files that depend on system libraries.
1:
/*
-
*
$Id: mysql.pike,v 1.46 2010/01/04 17:18:18 mast Exp $
+
*
$Id$
* * Glue for the Mysql-module */
9:
#pike __REAL_VERSION__
+
// Cannot dump this since the #if constant(...) check below may depend
+
// on the presence of system libs at runtime.
+
constant dont_dump_program = 1;
+
#if constant(Mysql.mysql) inherit Mysql.mysql;