[SCM] Samba Shared Repository - branch master updated

Volker Lendecke vlendec at samba.org
Wed Jan 2 13:11:02 UTC 2019


The branch, master has been updated
       via  f353c930969 waf: let CHECK_SIZEOF check for 64 bit also
      from  3d016d6f327 Happy New Year 2019!

https://git.samba.org/?p=samba.git;a=shortlog;h=master


- Log -----------------------------------------------------------------
commit f353c930969f08a5aabe6a7c409f98dbcf90fe9e
Author: Bjoern Jacke <bj at sernet.de>
Date:   Fri Dec 21 20:27:32 2018 -0600

    waf: let CHECK_SIZEOF check for 64 bit also
    
    wafsamba: utmp can be 64 bit also (like on AIX)
    
    BUG: https://bugzilla.samba.org/show_bug.cgi?id=12017
    
    Signed-off-by: Bjoern Jacke <bj at sernet.de>
    Reviewed-by: Volker Lendecke <vl at samba.org>
    
    Autobuild-User(master): Volker Lendecke <vl at samba.org>
    Autobuild-Date(master): Wed Jan  2 14:10:41 CET 2019 on sn-devel-144

-----------------------------------------------------------------------

Summary of changes:
 buildtools/wafsamba/samba_autoconf.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)


Changeset truncated at 500 lines:

diff --git a/buildtools/wafsamba/samba_autoconf.py b/buildtools/wafsamba/samba_autoconf.py
index 58800d24351..6208e3b0439 100644
--- a/buildtools/wafsamba/samba_autoconf.py
+++ b/buildtools/wafsamba/samba_autoconf.py
@@ -323,7 +323,7 @@ def CHECK_SIZEOF(conf, vars, headers=None, define=None, critical=True):
         ret = False
         if v_define is None:
             v_define = 'SIZEOF_%s' % v.upper().replace(' ', '_')
-        for size in list((1, 2, 4, 8, 16, 32)):
+        for size in list((1, 2, 4, 8, 16, 32, 64)):
             if CHECK_CODE(conf,
                       'static int test_array[1 - 2 * !(((long int)(sizeof(%s))) <= %d)];' % (v, size),
                       define=v_define,


-- 
Samba Shared Repository



More information about the samba-cvs mailing list