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.
 
 
 
 
 
 

15 lines
401 B

// $Id$
// vim:ft=javascript
ARG_WITH("fdf", "Include FDF support.", "no");
if (PHP_FDF != "no") {
if (CHECK_LIB("fdftk.lib", "fdf", PHP_FDF) &&
CHECK_HEADER_ADD_INCLUDE("FdfTk.h", "CFLAGS_FDF")) {
EXTENSION("fdf", "fdf.c");
AC_DEFINE('HAVE_FDFLIB', 1, 'FDF support');
ADD_FLAG("CFLAGS_FDF", "/D HAVE_FDFTK_5");
} else {
WARNING("fdf not enabled; libraries and headers not found");
}
}