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.
		
		
		
		
		
			
		
			
				
					
					
						
							88 lines
						
					
					
						
							2.6 KiB
						
					
					
				
			
		
		
	
	
							88 lines
						
					
					
						
							2.6 KiB
						
					
					
				# --- T2-COPYRIGHT-NOTE-BEGIN --- | 
						|
# This copyright note is auto-generated by ./scripts/Create-CopyPatch. | 
						|
#  | 
						|
# T2 SDE: package/.../dietlibc/patches/pkg_gawk.patch | 
						|
# Copyright (C) 2004 - 2006 The T2 SDE 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. | 
						|
# --- T2-COPYRIGHT-NOTE-END --- | 
						|
--- gawk-3.1.5/io.c~	2005-07-26 20:07:43.000000000 +0200 | 
						|
+++ gawk-3.1.5/io.c	2005-09-02 13:08:50.784242397 +0200 | 
						|
@@ -41,8 +41,10 @@ | 
						|
 #include <termios.h> | 
						|
 #endif | 
						|
 #ifdef HAVE_STROPTS_H | 
						|
+#ifndef __dietlibc__ | 
						|
 #include <stropts.h> | 
						|
 #endif | 
						|
+#endif | 
						|
  | 
						|
 #ifdef HAVE_SOCKETS | 
						|
 #ifdef HAVE_SYS_SOCKET_H | 
						|
--- gawk-3.1.5/regex_internal.h~	2005-05-11 17:28:17.000000000 +0200 | 
						|
+++ gawk-3.1.5/regex_internal.h	2005-09-02 13:14:44.954816214 +0200 | 
						|
@@ -37,6 +37,8 @@ | 
						|
 # include <wchar.h> | 
						|
 #endif /* HAVE_WCHAR_H || _LIBC */ | 
						|
 #if defined HAVE_WCTYPE_H || defined _LIBC | 
						|
+#define __BEGIN_NAMESPACE_C99 | 
						|
+#define __END_NAMESPACE_C99 | 
						|
 # include <wctype.h> | 
						|
 #endif /* HAVE_WCTYPE_H || _LIBC */ | 
						|
  | 
						|
--- gawk-3.1.5/configure.ac~	2005-07-26 20:43:51.000000000 +0200 | 
						|
+++ gawk-3.1.5/configure.ac	2005-09-02 13:23:40.040012522 +0200 | 
						|
@@ -264,20 +264,20 @@ | 
						|
 dnl check for dynamic linking | 
						|
 dnl This is known to be very primitive | 
						|
 AC_CHECK_HEADER(dlfcn.h, | 
						|
-	[AC_DEFINE([DYNAMIC], 1, [dynamic loading is possible]) | 
						|
-	if test "$GCC" = yes | 
						|
-	then | 
						|
-		# Add others here as appropriate, | 
						|
-		# one day use GNU libtool. | 
						|
-		if uname | $EGREP -i 'linux|freebsd|cygwin' > /dev/null | 
						|
-		then | 
						|
-			LDFLAGS="$LDFLAGS -export-dynamic" | 
						|
-		fi | 
						|
-	fi | 
						|
- | 
						|
 	# Check this separately. Some systems have dlopen | 
						|
 	# in libc. Notably freebsd and cygwin. | 
						|
-	AC_CHECK_LIB(dl, dlopen) | 
						|
+	AC_CHECK_LIB(dl, dlopen, [ | 
						|
+		[AC_DEFINE([DYNAMIC], 1, [dynamic loading is possible]) | 
						|
+		if test "$GCC" = yes | 
						|
+		then | 
						|
+			# Add others here as appropriate, | 
						|
+			# one day use GNU libtool. | 
						|
+			if uname | $EGREP -i 'linux|freebsd|cygwin' > /dev/null | 
						|
+			then | 
						|
+				LDFLAGS="$LDFLAGS -export-dynamic" | 
						|
+			fi | 
						|
+		fi | 
						|
+	]) | 
						|
 ]) | 
						|
  | 
						|
 dnl check for how to use getpgrp | 
						|
--- gawk-3.1.5/main.c~	2005-07-06 16:05:14.000000000 +0200 | 
						|
+++ gawk-3.1.5/main.c	2005-09-02 13:34:36.176763197 +0200 | 
						|
@@ -226,11 +226,6 @@ | 
						|
 	if (getenv("WHINY_USERS") != NULL) | 
						|
 		whiny_users = TRUE; | 
						|
  | 
						|
-#ifdef HAVE_MCHECK_H | 
						|
-	if (do_tidy_mem) | 
						|
-		mtrace(); | 
						|
-#endif /* HAVE_MCHECK_H */ | 
						|
-	 | 
						|
 #if defined(LC_CTYPE) | 
						|
 	setlocale(LC_CTYPE, ""); | 
						|
 #endif
 | 
						|
 |