forked from php/php-src
-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.xml
64 lines (64 loc) · 1.86 KB
/
package.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
<?xml version="1.0" encoding="ISO-8859-1" ?>
<!DOCTYPE package SYSTEM "../pear/package.dtd">
<package>
<name>mysql</name>
<summary>MySQL database access functions</summary>
<maintainers>
<maintainer>
<user>georg</user>
<name>Georg Richter</name>
<email>georg@php.net</email>
<role>lead</role>
</maintainer>
<maintainer>
<user>zak</user>
<name>Zak Greant</name>
<email>zak@php.net</email>
<role>developer</role>
</maintainer>
<maintainer>
<user>zeev</user>
<name>Zeev Suraski</name>
<email>zeev@php.net</email>
<role>developer</role>
</maintainer>
</maintainers>
<description>
These functions allow you to access MySQL database servers.
</description>
<license>PHP</license>
<release>
<state>stable</state>
<version>1.0</version>
<date>2005-09-04</date>
<notes>
This is the MySQL driver, taken from the PHP 5.1 release.
It can also be built against PHP 4.
</notes>
<configureoptions>
<configureoption name="with-mysql" default="autodetect" prompt="mysql installation dir?"/>
<configureoption name="with-mysql-sock" default="autodetect" prompt="MySQL Unix socket?"/>
<configureoption name="with-zlib-dir" default="autodetect" prompt="zlib installation dir?"/>
</configureoptions>
<filelist>
<file role="src" name="config.m4"/>
<file role="src" name="config.w32"/>
<file role="doc" name="CREDITS"/>
<file role="src" name="mysql.dsp"/>
<file role="src" name="mysql.mak"/>
<file role="src" name="php_mysql.c"/>
<file role="src" name="php_mysql.h"/>
<file role="test" name="tests/001.phpt"/>
<file role="test" name="tests/002.phpt"/>
<file role="test" name="tests/003.phpt"/>
<file role="test" name="tests/connect.inc"/>
<file role="test" name="tests/skipif.inc"/>
</filelist>
<deps>
<dep type="php" rel="ge" version="4" />
</deps>
</release>
</package>
<!--
vim:et:ts=1:sw=1
-->