1
0
mirror of https://github.com/samba-team/samba.git synced 2025-02-24 13:57:43 +03:00

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
This commit is contained in:
Andrew Bartlett 2012-05-18 08:28:18 +10:00
parent 4626f25b53
commit 8e5badc256

View File

@ -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')