Bump GPLv2+ to GPLv3+ for some files, clarify BSD 2-clause. Everything else stays under GPLv3+. New Linking Exception exempts resulting executables from LGPLv3 section 4. Add CONTRIBUTORS file to keep track of licensing. Remove 'Copyright Red Hat Inc' comments. Signed-off-by: Corinna Vinschen <corinna@vinschen.de>
		
			
				
	
	
		
			34 lines
		
	
	
		
			1.0 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			34 lines
		
	
	
		
			1.0 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
| /* features.h
 | |
| 
 | |
| This file is part of Cygwin.
 | |
| 
 | |
| This software is a copyrighted work licensed under the terms of the
 | |
| Cygwin license.  Please consult the file "CYGWIN_LICENSE" for
 | |
| details. */
 | |
| 
 | |
| #ifndef _FEATURES_H
 | |
| #define _FEATURES_H
 | |
| 
 | |
| #include <sys/cdefs.h>
 | |
| #include <sys/features.h>
 | |
| 
 | |
| /* Various options should be defined here, but the framework to do this
 | |
|    is not laid down so far.  Especially notable are the following defines,
 | |
|    which can be used by the application to switch on or off various
 | |
|    datatypes and function prototypes:
 | |
| 
 | |
|      _BSD_SOURCE   to include pure BSD functions which are not defined
 | |
| 		   under POSIX.
 | |
| 
 | |
|      _POSIX_SOURCE if the application requests a POSIX compatible system.
 | |
| 
 | |
|      _XOPEN_SOURCE if X/Open functions and datatypes are requested.  This
 | |
| 		   option includes _POSIX_SOURCE.
 | |
| 
 | |
|      _GNU_SOURCE   to turn on GNU extensions which might collide with defines
 | |
| 		   used in application or library headers.  This option
 | |
| 		   includes _BSD_SOURCE, _XOPEN_SOURCE and _POSIX_SOURCE.
 | |
| */
 | |
| 
 | |
| #endif /* _FEATURES_H */
 |