I cant build tremulous 1.3, It fails while building. Here is the full output from the terminal. (BTW I have the latest ubuntu installed) Tremulous 1.3 Build Error - Pastebin.com 
             
            
               
               
              3 Likes 
            
            
                 
                 
              
           
          
            
            
              
  
  
    
  
  
    
    
      
        opened 11:06AM - 17 Feb 17 UTC 
      
        
          closed 04:50AM - 21 Feb 17 UTC 
        
      
     
    
    
   
 
  
    **GRANGER BRANCH**
Happends all the time in src/qcommon/common.c
`error: ‘fo… r’ loop initial declarations are only allowed in C99 or C11 mode`
I got also lots of error in several files saying :
`warning: comparison between signed and unsigned integer expressions [-Wsign-compare]`
Seeing the redundance of all those errors, it's probably due to a wrong c++ version. Any indications about that ?
EDIT : I would like to use clang as a build system cause gcc is outdated on Debian 8. Why do you force the use of gcc ?
EDIT : I'm dummy, gonna try something 
   
   
  
    
    
  
  
 
  
  
    
  
  
    
    
      
        opened 07:54PM - 17 Feb 17 UTC 
      
        
          closed 04:51AM - 21 Feb 17 UTC 
        
      
     
    
    
   
 
  
    Debian 8 (Jessie)
Downloaded _release-linux-x86_64.zip_
Launching "granger" … I get
> lua script not provided
Launching "tremded" I get
> ./tremded: /usr/lib/x86_64-linux-gnu/libstdc++.so.6: version `CXXABI_1.3.9` not found (required by
> ./tremded)
> ./tremded: /usr/lib/x86_64-linux-gnu/libstdc++.so.6: version `GLIBCXX_3.4.21` not found (required by
> ./tremded)
How am I supposed to launch the program ?
Have I some missing libraries ?
(P.S : I tried launching the program from either ~ or ~/(PATH)/GH-releasedir/ )
(P.P.S : I checked the permissions were all right too) 
   
   
  
    
    
  
  
 
Cool to know I’m not alone.
             
            
               
               
              2 Likes 
            
            
                 
                 
              
           
          
            
            
              @IronClaw  Those are just warnings. The main error is at the very bottom; it’s missing the curl libraries. Like: ``` 
connection.cpp:(.text+0x783): undefined reference to `curl_slist_append’
Just install `libcurl` and/oOr `libcurl-dev`, and try again. 
             
            
               
               
              3 Likes 
            
            
                 
                 
              
           
          
            
            
              thanks man ill give it a try