blob: 1fc2710321721774fed1c1b3d5ee30ebd179f444 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
$NetBSD: patch-src_RawImp_c,v 1.1 2013/02/11 01:13:21 dsainty Exp $
UTS_RELEASE isn't even reliably available on Linux, let alone portable.
--- src/RawImp.c.orig 2011-11-29 00:35:42.582521001 +1300
+++ src/RawImp.c 2011-11-29 00:36:06.226521000 +1300
@@ -230,7 +230,7 @@
sigaction( SIGIO, NULL, &handler );
if( !handler.sa_handler ) signal( SIGIO, SIG_IGN );
#endif /* !__FreeBSD__ */
-#if defined(__linux__)
+#if 0
/* Lets let people who upgraded kernels know they may have problems */
if (uname (&name) == -1)
{
|