mirror of
https://github.com/php/pecl-console-termbox.git
synced 2026-03-23 22:52:10 +01:00
14 lines
303 B
JavaScript
14 lines
303 B
JavaScript
// $Id$
|
|
// vim:ft=javascript
|
|
|
|
// If your extension references something external, use ARG_WITH
|
|
// ARG_WITH("termbox", "for termbox support", "no");
|
|
|
|
// Otherwise, use ARG_ENABLE
|
|
// ARG_ENABLE("termbox", "enable termbox support", "no");
|
|
|
|
if (PHP_TERMBOX != "no") {
|
|
EXTENSION("termbox", "termbox.c");
|
|
}
|
|
|