diff options
author | Ryan Phillips <rphillips@gentoo.org> | 2002-09-29 23:44:08 +0000 |
---|---|---|
committer | Ryan Phillips <rphillips@gentoo.org> | 2002-09-29 23:44:08 +0000 |
commit | fe98142b0fb4eb28d2f2e841cb684d39457220c2 (patch) | |
tree | fc30ec801df8c233cb6b73cd01241b28c9a2e3f5 /app-text/sablotron/files | |
parent | Added thread-safe-client support. Fixes #8411. Submitted by Peter Ruskin (diff) | |
download | gentoo-2-fe98142b0fb4eb28d2f2e841cb684d39457220c2.tar.gz gentoo-2-fe98142b0fb4eb28d2f2e841cb684d39457220c2.tar.bz2 gentoo-2-fe98142b0fb4eb28d2f2e841cb684d39457220c2.zip |
Changed version of patch to match current ebuild's
Diffstat (limited to 'app-text/sablotron/files')
-rw-r--r-- | app-text/sablotron/files/sablotron-0.95-r1-gentoo.patch | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/app-text/sablotron/files/sablotron-0.95-r1-gentoo.patch b/app-text/sablotron/files/sablotron-0.95-r1-gentoo.patch new file mode 100644 index 000000000000..c20cc3c3affc --- /dev/null +++ b/app-text/sablotron/files/sablotron-0.95-r1-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 |