diff options
author | David E. O'Brien <obrien@FreeBSD.org> | 2008-12-30 01:44:22 +0000 |
---|---|---|
committer | David E. O'Brien <obrien@FreeBSD.org> | 2008-12-30 01:44:22 +0000 |
commit | c945d33d06bd43304f2b2446860f701f5e85c9ea (patch) | |
tree | f4aa9268f9a7ad6f7f241739942273c7f97b8c10 /net/rdesktop | |
parent | a15aa2e989fd63b1dd6119be4a82bbbc82e1aa1b (diff) | |
download | ports-c945d33d06bd43304f2b2446860f701f5e85c9ea.tar.gz ports-c945d33d06bd43304f2b2446860f701f5e85c9ea.zip |
Add WITH_ICONV knob. Victor Sudakov reports he needs this patch in order
to properly build Cyrillic filenames support.
Submitted by: Victor Sudakov <sudakov@sibptus.tomsk.ru>
Notes
Notes:
svn path=/head/; revision=224967
Diffstat (limited to 'net/rdesktop')
-rw-r--r-- | net/rdesktop/Makefile | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/net/rdesktop/Makefile b/net/rdesktop/Makefile index 9c272c1a5f5c..1b9ed43d85c3 100644 --- a/net/rdesktop/Makefile +++ b/net/rdesktop/Makefile @@ -26,6 +26,11 @@ MAN1= rdesktop.1 CONFIGURE_ARGS+= --with-ipv6 .endif +.if defined(WITH_ICONV) +USE_ICONV= yes +CONFIGURE_ARGS+= --with-libiconv-prefix=${LOCALBASE} +.endif + .if defined(WITH_RDESKTOP_DEBUG) CONFIGURE_ARGS+= --with-debug\ --with-debug-kbd\ |