mirror of
https://github.com/php/php-src.git
synced 2025-08-17 14:38:49 +02:00
9 lines
224 B
JavaScript
9 lines
224 B
JavaScript
// $Id$
|
|
// vim:ft=javascript
|
|
|
|
ARG_ENABLE("filepro", "Enable the bundled read-only filePro support.", "no");
|
|
|
|
if (PHP_FILEPRO != "no") {
|
|
EXTENSION("filepro", "filepro.c");
|
|
AC_DEFINE('HAVE_FILEPRO', 1, 'filepro support');
|
|
}
|