blob: 50e9bec27df9daed95bfbad4927298dd4e090a59 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
// $Id$
// vim:ft=javascript
// If your extension references something external, use ARG_WITH
// ARG_WITH("msgpack", "for msgpack support", "no");
// Otherwise, use ARG_ENABLE
// ARG_ENABLE("msgpack", "enable msgpack support", "no");
if (PHP_MSGPACK != "no") {
EXTENSION("msgpack", "msgpack.c");
}
|