You can not select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
		
			
		
			
				
					
					
						
							54 lines
						
					
					
						
							1.5 KiB
						
					
					
				
			
		
		
	
	
							54 lines
						
					
					
						
							1.5 KiB
						
					
					
				# --- SDE-COPYRIGHT-NOTE-BEGIN --- | 
						|
# This copyright note is auto-generated by ./scripts/Create-CopyPatch. | 
						|
# | 
						|
# Filename: package/.../clockspeed/0002-include-errno.h.patch | 
						|
# Copyright (C) 2011 The OpenSDE Project | 
						|
# | 
						|
# More information can be found in the files COPYING and README. | 
						|
# | 
						|
# This patch file is dual-licensed. It is available under the license the | 
						|
# patched project is licensed under, as long as it is an OpenSource license | 
						|
# as defined at http://www.opensource.org/ (e.g. BSD, X11) or under the terms | 
						|
# of the GNU General Public License as published by the Free Software | 
						|
# Foundation; either version 2 of the License, or (at your option) any later | 
						|
# version. | 
						|
# --- SDE-COPYRIGHT-NOTE-END --- | 
						|
 | 
						|
From 65180e22ec2fca4e65181e6bc00f94a6d26e5c8a Mon Sep 17 00:00:00 2001 | 
						|
From: Christian Wiese <[email protected]> | 
						|
Date: Thu, 29 Sep 2011 14:19:53 +0200 | 
						|
Subject: [PATCH 2/6] fixed to include errno.h | 
						|
 | 
						|
--- | 
						|
 error.h         |    2 +- | 
						|
 leapsecs_read.c |    1 - | 
						|
 2 files changed, 1 insertions(+), 2 deletions(-) | 
						|
 | 
						|
diff --git a/error.h b/error.h | 
						|
index 01bd3dc..5d98c6b 100644 | 
						|
--- a/error.h | 
						|
+++ b/error.h | 
						|
@@ -1,7 +1,7 @@ | 
						|
 #ifndef ERROR_H | 
						|
 #define ERROR_H | 
						|
  | 
						|
-extern int errno; | 
						|
+#include <errno.h> | 
						|
  | 
						|
 extern int error_intr; | 
						|
 extern int error_nomem; | 
						|
diff --git a/leapsecs_read.c b/leapsecs_read.c | 
						|
index 62c8712..c8f975f 100644 | 
						|
--- a/leapsecs_read.c | 
						|
+++ b/leapsecs_read.c | 
						|
@@ -2,7 +2,6 @@ | 
						|
 #include <sys/stat.h> | 
						|
 #include <fcntl.h> | 
						|
 #include <errno.h> | 
						|
-extern int errno; | 
						|
 #include "tai.h" | 
						|
 #include "leapsecs.h" | 
						|
  | 
						|
--  | 
						|
1.6.6.2 | 
						|
 | 
						|
 |