mirror of
https://github.com/php/php-src.git
synced 2025-08-17 22:48:57 +02:00
10 lines
282 B
JavaScript
10 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");
|
|
}
|