diff options
author | abs <abs@pkgsrc.org> | 2001-05-18 13:26:23 +0000 |
---|---|---|
committer | abs <abs@pkgsrc.org> | 2001-05-18 13:26:23 +0000 |
commit | f74924b52fe0b0255ff5d0c9e8507da027f44d66 (patch) | |
tree | 1f77f2ce3626c456582a29c379637dd52b6b56fe /x11 | |
parent | 866c6dee43c702877652a245deafe06d945f55be (diff) | |
download | pkgsrc-f74924b52fe0b0255ff5d0c9e8507da027f44d66.tar.gz |
Work around an arm32 compiler bug
Diffstat (limited to 'x11')
-rw-r--r-- | x11/xscreensaver/distinfo | 3 | ||||
-rw-r--r-- | x11/xscreensaver/patches/patch-ab | 17 |
2 files changed, 19 insertions, 1 deletions
diff --git a/x11/xscreensaver/distinfo b/x11/xscreensaver/distinfo index 1577c6232e3..62ca0c58f23 100644 --- a/x11/xscreensaver/distinfo +++ b/x11/xscreensaver/distinfo @@ -1,6 +1,7 @@ -$NetBSD: distinfo,v 1.2 2001/04/19 11:07:59 skrll Exp $ +$NetBSD: distinfo,v 1.3 2001/05/18 13:26:23 abs Exp $ SHA1 (xscreensaver-3.28.tar.gz) = c1a0de2966f30d56c1660519d450b87e4892c95a Size (xscreensaver-3.28.tar.gz) = 1497039 bytes SHA1 (patch-aa) = 397e55a520f1e10e5a1bb1595b6b42e4b70674f1 +SHA1 (patch-ab) = fe0c6c387ce5956c7851f8e1f31777961b8bd69a SHA1 (patch-ae) = c3e7ddffb2caab5c545b0834c93238455852dea6 diff --git a/x11/xscreensaver/patches/patch-ab b/x11/xscreensaver/patches/patch-ab new file mode 100644 index 00000000000..82c96efcd9e --- /dev/null +++ b/x11/xscreensaver/patches/patch-ab @@ -0,0 +1,17 @@ +$NetBSD: patch-ab,v 1.8 2001/05/18 13:26:23 abs Exp $ + +--- hacks/Makefile.in.orig Fri May 18 13:27:34 2001 ++++ hacks/Makefile.in +@@ -363,6 +363,12 @@ + .c.o: + $(CC) -c $(INCLUDES) $(DEFS) $(CFLAGS) $(X_CFLAGS) $< + ++# Work around gcc codegen bug ++.if $(MACHINE_ARCH) == "arm32" ++distort.o: ++ $(CC) -c $(INCLUDES) $(DEFS) $(CFLAGS) $(X_CFLAGS) -O0 $< ++.endif ++ + # Some hacks use a slightly-differently-compiled variant of this file. + # This is how to make the the other .o file from it. + # |