~ubuntu-branches/ubuntu/hardy/php5/hardy-updates

« back to all changes in this revision

Viewing changes to ext/xml/config.w32

  • Committer: Bazaar Package Importer
  • Author(s): Adam Conrad
  • Date: 2005-10-09 03:14:32 UTC
  • Revision ID: james.westby@ubuntu.com-20051009031432-kspik3lobxstafv9
Tags: upstream-5.0.5
ImportĀ upstreamĀ versionĀ 5.0.5

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
// $Id: config.w32,v 1.3 2003/12/22 13:16:42 wez Exp $
 
2
// vim:ft=javascript
 
3
 
 
4
ARG_WITH("xml", "XML support", "yes");
 
5
 
 
6
if (PHP_XML == "yes" && PHP_LIBXML == "yes") {
 
7
        EXTENSION("xml", "xml.c compat.c");
 
8
        AC_DEFINE("HAVE_XML", 1, "XML support");
 
9
        if (!PHP_XML_SHARED) {
 
10
                ADD_FLAG("CFLAGS_XML", "/D LIBXML_STATIC ");
 
11
        }
 
12
        ADD_EXTENSION_DEP('xml', 'libxml');
 
13
}
 
14
 
 
15