mirror of
https://github.com/php/php-src.git
synced 2024-11-25 19:05:31 +08:00
14 lines
348 B
JavaScript
14 lines
348 B
JavaScript
// $Id$
|
|
// vim:ft=javascript
|
|
|
|
ARG_ENABLE("enchant", "Enchant Support", "no");
|
|
|
|
if (PHP_ENCHANT == "yes") {
|
|
if (CHECK_HEADER_ADD_INCLUDE("enchant.h", "CFLAGS_ENCHANT", PHP_ENCHANT)) {
|
|
EXTENSION("enchant", "enchant.c");
|
|
AC_DEFINE('HAVE_ENCHANT', 1, 'Have Enchant support', false);
|
|
} else {
|
|
WARNING('Could not find enchant.h; skipping');
|
|
}
|
|
}
|