summaryrefslogtreecommitdiff
path: root/buildtools
diff options
context:
space:
mode:
authorAndrew Bartlett <abartlet@samba.org>2012-05-18 08:28:18 +1000
committerAndrew Bartlett <abartlet@samba.org>2012-05-18 15:44:43 +1000
commit8e5badc2564019bc2d8b923971bd37bd8e5bb039 (patch)
tree5e62d02e801f7ede92aadb3b3583f29cb5cfe7e0 /buildtools
parent4626f25b5353c4c648e9403c6593feb2c9a2e347 (diff)
downloadsamba-8e5badc2564019bc2d8b923971bd37bd8e5bb039.tar.gz
samba-8e5badc2564019bc2d8b923971bd37bd8e5bb039.tar.bz2
samba-8e5badc2564019bc2d8b923971bd37bd8e5bb039.zip
build: Also look for iconv in /usr/local by default
This should help the build find iconv on FreeBSD and similar systems, and make it possible to operate with 8-bit character sets. Andrew Bartlett
Diffstat (limited to 'buildtools')
-rwxr-xr-xbuildtools/wafsamba/wscript4
1 files changed, 2 insertions, 2 deletions
diff --git a/buildtools/wafsamba/wscript b/buildtools/wafsamba/wscript
index 7bbec946c5..7bf6a13fa9 100755
--- a/buildtools/wafsamba/wscript
+++ b/buildtools/wafsamba/wscript
@@ -78,8 +78,8 @@ def set_options(opt):
action="store", dest='PRIVATELIBDIR', default=None)
opt.add_option('--with-libiconv',
- help='installation directory for libiconv',
- action='store', dest='iconv_open', default=None,
+ help='additional directory to search for for libiconv',
+ action='store', dest='iconv_open', default='/usr/local',
match = ['Checking for library iconv', 'Checking for iconv_open', 'Checking for header iconv.h'])
gr = opt.option_group('developer options')