summaryrefslogtreecommitdiff
path: root/ext/tidy/config.w32
diff options
context:
space:
mode:
authorSVN Migration <svn@php.net>2006-10-15 21:09:28 +0000
committerSVN Migration <svn@php.net>2006-10-15 21:09:28 +0000
commit88ec761548b66f58acc1a86cdd0fc164ca925476 (patch)
treed0af978fa00d83bb1d82c613f66477fbd6bb18aa /ext/tidy/config.w32
parent268984b4787e797db6054313fc9ba3b9e845306e (diff)
downloadphp-git-PECL_OPENSSL.tar.gz
This commit was manufactured by cvs2svn to create branch 'PECL_OPENSSL'.PECL_OPENSSL
Diffstat (limited to 'ext/tidy/config.w32')
-rw-r--r--ext/tidy/config.w3222
1 files changed, 0 insertions, 22 deletions
diff --git a/ext/tidy/config.w32 b/ext/tidy/config.w32
deleted file mode 100644
index e9e2a225f7..0000000000
--- a/ext/tidy/config.w32
+++ /dev/null
@@ -1,22 +0,0 @@
-// $Id$
-// vim:ft=javascript
-
-ARG_WITH("tidy", "TIDY support", "no");
-
-if (PHP_TIDY != "no") {
- if (CHECK_LIB("libtidy.lib", "tidy", PHP_TIDY) &&
- (
- CHECK_HEADER_ADD_INCLUDE("tidy.h", "CFLAGS_TIDY") ||
- CHECK_HEADER_ADD_INCLUDE("tidy/tidy.h", "CFLAGS_TIDY", null, null, true) ||
- CHECK_HEADER_ADD_INCLUDE("libtidy/tidy.h", "CFLAGS_TIDY", null, null, true)
- )) {
- EXTENSION("tidy", "tidy.c");
- AC_DEFINE('HAVE_TIDY', 1, 'Have TIDY library');
- if (!PHP_TIDY_SHARED) {
- ADD_DEF_FILE("ext\\tidy\\php_tidy.def");
- }
- } else {
- WARNING("tidy not enabled; libraries and headers not found");
- }
-}
-