[SCM] Samba Shared Repository - branch master updated

Stefan Metzmacher metze at samba.org
Mon Jun 18 18:43:05 MDT 2012


The branch, master has been updated
       via  59daf91 wafsamba/irixcc: add '-c99' option to cc
      from  26e868b Revert "s3: temporary hack to make the waf build work withouth autotools being required"

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


- Log -----------------------------------------------------------------
commit 59daf91f397c2ebef283ab9e6ecaabbe9dc58fc5
Author: Stefan Metzmacher <metze at samba.org>
Date:   Tue Jun 19 00:46:51 2012 +0200

    wafsamba/irixcc: add '-c99' option to cc
    
    Lets see if this fixes the build on IRIX.
    
    metze
    
    Autobuild-User(master): Stefan Metzmacher <metze at samba.org>
    Autobuild-Date(master): Tue Jun 19 02:42:21 CEST 2012 on sn-devel-104

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

Summary of changes:
 buildtools/wafsamba/irixcc.py |    4 +++-
 1 files changed, 3 insertions(+), 1 deletions(-)


Changeset truncated at 500 lines:

diff --git a/buildtools/wafsamba/irixcc.py b/buildtools/wafsamba/irixcc.py
index a7b0a74..f29f9a0 100644
--- a/buildtools/wafsamba/irixcc.py
+++ b/buildtools/wafsamba/irixcc.py
@@ -17,7 +17,9 @@ def find_irixcc(conf):
     cc = None
     if v['CC']: cc = v['CC']
     elif 'CC' in conf.environ: cc = conf.environ['CC']
-    if not cc: cc = conf.find_program('cc', var='CC')
+    if not cc:
+        cc = conf.find_program('cc', var='CC')
+        cc += ' -c99'
     if not cc: conf.fatal('irixcc was not found')
     cc = conf.cmd_to_list(cc)
 


-- 
Samba Shared Repository


More information about the samba-cvs mailing list