blob: 812e4cda8779d8ad2558cfca49ab610644e4607d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
Description: Fixing FTBFS on Debian GNU/Hurd (Closes: #532390).
Author: Barry deFreese <bdefreese@debian.org>
Last-Update: 2009-06-08
Index: memdump/makedefs
===================================================================
--- memdump.orig/makedefs
+++ memdump/makedefs
@@ -34,6 +34,8 @@ SunOS.5.[0-5]*) DEFS="-DSUNOS5 -DUSE_PRE
;;
Linux.2*) DEFS="-DLINUX2"
;;
+ GNU*) DEFS="-DLINUX2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64"
+ ;;
*) echo unsupported system: $SYSTEM.$RELEASE 1>&2; exit 1
;;
esac
|