mirror of
https://github.com/msgpack/msgpack-python.git
synced 2026-02-06 17:59:52 +00:00
13 lines
303 B
JavaScript
13 lines
303 B
JavaScript
// $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");
|
|
}
|
|
|