diff options
author | David Barksdale <amatus.amongus@gmail.com> | 2013-07-22 08:55:49 -0500 |
---|---|---|
committer | David Barksdale <amatus.amongus@gmail.com> | 2013-08-01 08:12:45 -0500 |
commit | c20653e42a9ac4084a76e754885c14e57be344de (patch) | |
tree | 39b6b1ccf8fbd755630e7d031f3671e277de21ea /debian/patches/support_GNU_hurd.patch | |
parent | 000ad0090a0b4eb9889f4c45d35d4d7af2dbbe27 (diff) |
Patches have been merged upstream.
Diffstat (limited to 'debian/patches/support_GNU_hurd.patch')
-rw-r--r-- | debian/patches/support_GNU_hurd.patch | 44 |
1 files changed, 0 insertions, 44 deletions
diff --git a/debian/patches/support_GNU_hurd.patch b/debian/patches/support_GNU_hurd.patch deleted file mode 100644 index d48de27..0000000 --- a/debian/patches/support_GNU_hurd.patch +++ /dev/null @@ -1,44 +0,0 @@ ---- a/configure.ac -+++ b/configure.ac -@@ -162,6 +162,11 @@ - UNIXONLY="" - funcstocheck="" - ;; -+gnu*) -+ AC_DEFINE_UNQUOTED(GNU,1,[This is a GNU system]) -+ build_target="gnu" -+ UNIXONLY="#" -+ ;; - *) - AC_MSG_RESULT(Unrecognised OS $host_os) - AC_DEFINE_UNQUOTED(OTHEROS,1,[Some strange OS]) -@@ -184,6 +189,7 @@ - AM_CONDITIONAL(XFREEBSD, test "$build_target" = "freebsd") - AM_CONDITIONAL(OPENBSD, test "$build_target" = "openbsd") - AM_CONDITIONAL(LINUX, test "$build_target" = "linux") -+AM_CONDITIONAL(GNU, test "$build_target" = "gnu") - - AC_MSG_RESULT([$build_target]) - AC_SUBST(build_target) ---- a/src/include/platform.h -+++ b/src/include/platform.h -@@ -146,7 +146,7 @@ - #include <semaphore.h> - #include <net/if.h> - #endif --#ifdef LINUX -+#if defined(LINUX) || defined(GNU) - #include <net/if.h> - #endif - #ifdef SOLARIS ---- a/src/util/disk.c -+++ b/src/util/disk.c -@@ -47,7 +47,7 @@ - - - --#if defined(LINUX) || defined(CYGWIN) -+#if defined(LINUX) || defined(CYGWIN) || defined(GNU) - #include <sys/vfs.h> - #else - #if defined(SOMEBSD) || defined(DARWIN) |