mirror of
https://github.com/php/php-src.git
synced 2025-01-25 21:23:45 +08:00
fbe2b4bbc3
and built-in extension on windows.
11 lines
282 B
JavaScript
11 lines
282 B
JavaScript
// $Id$
|
|
// vim:ft=javascript
|
|
|
|
ARG_ENABLE("dbase", "Enable the bundled dbase library", "no");
|
|
|
|
if (PHP_DBASE != "no") {
|
|
EXTENSION("dbase", "dbase.c dbf_head.c dbf_misc.c dbf_ndx.c dbf_rec.c");
|
|
AC_DEFINE('HAVE_DBASE', 1, 'dbase support');
|
|
ADD_FLAG("CFLAGS_DBASE", "/D DBASE=1");
|
|
}
|