diff options
author | Eitan Adler <eadler@FreeBSD.org> | 2012-02-05 05:12:45 +0000 |
---|---|---|
committer | Eitan Adler <eadler@FreeBSD.org> | 2012-02-05 05:12:45 +0000 |
commit | 06116d3b4e16adf8f118303a87f727cc58ae1bef (patch) | |
tree | 8559efc1fc39b4a3d110d4390c66696fc795dda5 /x11 | |
parent | 83a97fad9b89943208cfe0f79de2c185f0f3d5be (diff) | |
download | ports-06116d3b4e16adf8f118303a87f727cc58ae1bef.tar.gz ports-06116d3b4e16adf8f118303a87f727cc58ae1bef.zip |
Backout previous commit due to missing dependencies not picked up by a tinderbox run
Reported by: x11@ mailing list
Reviewed by: miwi
Pointyhat to: me
Notes
Notes:
svn path=/head/; revision=290418
Diffstat (limited to 'x11')
-rw-r--r-- | x11/xinit/Makefile | 3 | ||||
-rw-r--r-- | x11/xinit/distinfo | 4 | ||||
-rw-r--r-- | x11/xinit/files/patch-xinit.c | 15 |
3 files changed, 19 insertions, 3 deletions
diff --git a/x11/xinit/Makefile b/x11/xinit/Makefile index 8b9e30c22f23..253ed9a303ea 100644 --- a/x11/xinit/Makefile +++ b/x11/xinit/Makefile @@ -6,7 +6,8 @@ # PORTNAME= xinit -PORTVERSION= 1.3.2 +PORTVERSION= 1.3.1 +PORTEPOCH= 1 CATEGORIES= x11 MAINTAINER= x11@FreeBSD.org diff --git a/x11/xinit/distinfo b/x11/xinit/distinfo index dbe3d873a2a6..9c363d13e8f3 100644 --- a/x11/xinit/distinfo +++ b/x11/xinit/distinfo @@ -1,2 +1,2 @@ -SHA256 (xorg/app/xinit-1.3.2.tar.bz2) = a1867fdaa83f68750b12ba4305c3c62f5992d0f52cfeb98e96c27a8e690e0235 -SIZE (xorg/app/xinit-1.3.2.tar.bz2) = 148443 +SHA256 (xorg/app/xinit-1.3.1.tar.bz2) = c7468dfae94bdb42785d79623c27156dc4bf379d8372992830482cb04d8439b0 +SIZE (xorg/app/xinit-1.3.1.tar.bz2) = 147067 diff --git a/x11/xinit/files/patch-xinit.c b/x11/xinit/files/patch-xinit.c new file mode 100644 index 000000000000..abe8803b8282 --- /dev/null +++ b/x11/xinit/files/patch-xinit.c @@ -0,0 +1,15 @@ +--- xinit.c.orig 2011-04-26 07:03:42.000000000 +0200 ++++ xinit.c 2011-08-06 22:14:03.000000000 +0200 +@@ -49,10 +49,10 @@ + #endif + + /* For PRIO_PROCESS and setpriority() */ +-#ifdef __DragonFly__ ++#if defined(__DragonFly__) || defined(__FreeBSD__) + #include <sys/time.h> + #include <sys/resource.h> +-#endif /* __DragonFly__ */ ++#endif + + #include <stdlib.h> + |