You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

10 lines
282 B

  1. // $Id$
  2. // vim:ft=javascript
  3. ARG_ENABLE("dbase", "Enable the bundled dbase library", "no");
  4. if (PHP_DBASE != "no") {
  5. EXTENSION("dbase", "dbase.c dbf_head.c dbf_misc.c dbf_ndx.c dbf_rec.c");
  6. AC_DEFINE('HAVE_DBASE', 1, 'dbase support');
  7. ADD_FLAG("CFLAGS_DBASE", "/D DBASE=1");
  8. }