diff options
author | Seemant Kulleen <seemant@gentoo.org> | 2002-07-13 21:54:22 +0000 |
---|---|---|
committer | Seemant Kulleen <seemant@gentoo.org> | 2002-07-13 21:54:22 +0000 |
commit | 12790320098f8ca2fc38d8a26883c8da366ce7fb (patch) | |
tree | a97c1bd411d016d659dc9f41c623e5b55513f1b5 /app-text/sablotron/files | |
parent | fixed typo in deps (diff) | |
download | gentoo-2-12790320098f8ca2fc38d8a26883c8da366ce7fb.tar.gz gentoo-2-12790320098f8ca2fc38d8a26883c8da366ce7fb.tar.bz2 gentoo-2-12790320098f8ca2fc38d8a26883c8da366ce7fb.zip |
php fix
Diffstat (limited to 'app-text/sablotron/files')
-rw-r--r-- | app-text/sablotron/files/digest-sablotron-0.90 | 1 | ||||
-rw-r--r-- | app-text/sablotron/files/digest-sablotron-0.95-r1 | 1 | ||||
-rw-r--r-- | app-text/sablotron/files/sablotron-0.95-gentoo.patch | 26 |
3 files changed, 27 insertions, 1 deletions
diff --git a/app-text/sablotron/files/digest-sablotron-0.90 b/app-text/sablotron/files/digest-sablotron-0.90 deleted file mode 100644 index 7190bc9d4435..000000000000 --- a/app-text/sablotron/files/digest-sablotron-0.90 +++ /dev/null @@ -1 +0,0 @@ -MD5 48af1160b228310dd2dbc65b28075b61 Sablot-0.90.tar.gz 346863 diff --git a/app-text/sablotron/files/digest-sablotron-0.95-r1 b/app-text/sablotron/files/digest-sablotron-0.95-r1 new file mode 100644 index 000000000000..dd356f90f2a8 --- /dev/null +++ b/app-text/sablotron/files/digest-sablotron-0.95-r1 @@ -0,0 +1 @@ +MD5 5dbcb6eabe8a962f9b84719cdb100390 Sablot-0.95.tar.gz 373842 diff --git a/app-text/sablotron/files/sablotron-0.95-gentoo.patch b/app-text/sablotron/files/sablotron-0.95-gentoo.patch new file mode 100644 index 000000000000..c20cc3c3affc --- /dev/null +++ b/app-text/sablotron/files/sablotron-0.95-gentoo.patch @@ -0,0 +1,26 @@ +*** sxpath.h Fri Jun 7 21:01:31 2002 +--- sxpath.h Thu Jun 27 13:35:17 2002 +*************** +*** 66,74 **** + typedef void *QueryContext; + + /*option constants */ +! const unsigned long SXPF_DISPOSE_NAMES = 1; +! const unsigned long SXPF_DISPOSE_VALUES = 2; +! const unsigned long SXPF_SUPPORTS_UNPARSED_ENTITIES = 4; + + /* + * DOM handler functions +--- 66,77 ---- + typedef void *QueryContext; + + /*option constants */ +! typedef enum +! { +! SXPF_DISPOSE_NAMES = 0x1, +! SXPF_DISPOSE_VALUES = 0x2, +! SXPF_SUPPORTS_UNPARSED_ENTITIES =0x4 +! } SXPFlags; + + /* + * DOM handler functions |