summaryrefslogtreecommitdiff
path: root/ext/simplexml/config.m4
AgeCommit message (Collapse)AuthorFilesLines
2005-10-01- Allow xpl/simplexml integration with simplexml being built sharedMarcus Boerger1-0/+1
2005-04-27- Made the libxml related stuff to error out if someone does --disable-allfoobar1-3/+7
or --disable-libxml. Better than silently just leave the ext out..
2004-07-18Implement extension load-order deps.Wez Furlong1-0/+1
2003-11-12- Fixed bug #26072 (--disable-libxml does not work).foobar1-1/+1
2003-06-30- Cleanup, simplifying, etc.foobar1-4/+7
2003-06-25fineSterling Hughes1-1/+1
2003-06-25Experimental extensions are never enabled by default..foobar1-1/+1
2003-06-25these should be enabled by default. At least this much was agreed upon whenSterling Hughes1-1/+1
the decision to debundle libxml2 was made.
2003-05-20- Make it build with the unbundled libxml againDerick Rethans1-1/+10
2003-05-18add very basic code for the simplexml extension. The following works ::Sterling Hughes1-0/+9
person.xml -- <person> <name> <first>Sterling</first> <last>Hughes</last> </name> </person> person.php -- <?php $p = simplexml_load_file('person.xml'); echo $p->name->last . ', ' . $p->name->first; ?> Still needs lots of work.