1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
|
Avoid 64b typing error on RPC with 64b members in structures, while we migrate
to the fixed 64b structure alignment.
To be removed after people have migrated both gnumach libc+hurd rebuilt against
fixed mig.
Index: hurd-debian/Makeconf
===================================================================
--- hurd-debian.orig/Makeconf
+++ hurd-debian/Makeconf
@@ -679,3 +679,6 @@ endef
%: %.sh $(..)config.make
sed -e 's/STANDARD_HURD_VERSION_\(.[^_]*\)_/\1 (GNU Hurd) $(package-version)/' < $< > $@
chmod +x $@
+
+fsServer-CFLAGS += -DTypeCheck=0
+ioServer-CFLAGS += -DTypeCheck=0
|