XMLRPC requires iconv.
PR: ports/36888 Submitted by: Alex Dupre <sysadmin@alexdupre.com>
This commit is contained in:
parent
a0d47f1e3e
commit
8667b64309
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=57783
2 changed files with 8 additions and 2 deletions
|
@ -37,7 +37,7 @@ OpenLDAP2 "OpenLDAP 2.x support" OFF \
|
|||
OpenSSL "OpenSSL support" OFF \
|
||||
SNMP "SNMP support" OFF \
|
||||
XML "XML support" OFF \
|
||||
XMLRPC "XMLRPC-EPI support (implies XML)" OFF \
|
||||
XMLRPC "XMLRPC-EPI support (implies XML and iconv)" OFF \
|
||||
XSLT "Sablotron support (implies XML and iconv)" OFF \
|
||||
WDDX "WDDX support (implies XML)" OFF \
|
||||
DOMXML "DOM support" OFF \
|
||||
|
@ -260,6 +260,9 @@ while [ "$1" ]; do
|
|||
if [ -z "$XML" ]; then
|
||||
set $* \"XML\"
|
||||
fi
|
||||
if [ -z "$ICONV" ]; then
|
||||
set $* \"iconv\"
|
||||
fi
|
||||
;;
|
||||
\"XSLT\")
|
||||
echo "LIB_DEPENDS+= sablot.67:\${PORTSDIR}/textproc/sablotron"
|
||||
|
|
|
@ -37,7 +37,7 @@ OpenLDAP2 "OpenLDAP 2.x support" OFF \
|
|||
OpenSSL "OpenSSL support" OFF \
|
||||
SNMP "SNMP support" OFF \
|
||||
XML "XML support" OFF \
|
||||
XMLRPC "XMLRPC-EPI support (implies XML)" OFF \
|
||||
XMLRPC "XMLRPC-EPI support (implies XML and iconv)" OFF \
|
||||
XSLT "Sablotron support (implies XML and iconv)" OFF \
|
||||
WDDX "WDDX support (implies XML)" OFF \
|
||||
DOMXML "DOM support" OFF \
|
||||
|
@ -260,6 +260,9 @@ while [ "$1" ]; do
|
|||
if [ -z "$XML" ]; then
|
||||
set $* \"XML\"
|
||||
fi
|
||||
if [ -z "$ICONV" ]; then
|
||||
set $* \"iconv\"
|
||||
fi
|
||||
;;
|
||||
\"XSLT\")
|
||||
echo "LIB_DEPENDS+= sablot.67:\${PORTSDIR}/textproc/sablotron"
|
||||
|
|
Loading…
Reference in a new issue