diff options
author | Christian Ambach <ambi@samba.org> | 2013-06-25 18:37:35 +0200 |
---|---|---|
committer | Christian Ambach <ambi@samba.org> | 2013-08-09 22:46:51 +0200 |
commit | a742e87b39bed97ac59f5ec8bff9bf3cedf8b68a (patch) | |
tree | 6534a60b7e6f195f4642f7872bd2126cd0bc65c0 /buildtools | |
parent | ce8fbdf76ee2792d011d9da4d0116f04d9656886 (diff) | |
download | samba-a742e87b39bed97ac59f5ec8bff9bf3cedf8b68a.tar.gz samba-a742e87b39bed97ac59f5ec8bff9bf3cedf8b68a.tar.bz2 samba-a742e87b39bed97ac59f5ec8bff9bf3cedf8b68a.zip |
waf: add --without-gettext option
Signed-off-by: Christian Ambach <ambi@samba.org>
Reviewed-by: Andrew Bartlett <abartlet@samba.org>
Diffstat (limited to 'buildtools')
-rwxr-xr-x | buildtools/wafsamba/wscript | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/buildtools/wafsamba/wscript b/buildtools/wafsamba/wscript index d115b5f4c6..fe2e51507e 100755 --- a/buildtools/wafsamba/wscript +++ b/buildtools/wafsamba/wscript @@ -82,6 +82,9 @@ def set_options(opt): help='additional directory to search for gettext', action='store', dest='gettext_location', default='/usr/local', match = ['Checking for library intl', 'Checking for header libintl.h']) + opt.add_option('--without-gettext', + help=("Disable use of gettext"), + action="store_true", dest='disable_gettext', default=False) gr = opt.option_group('developer options') |