diff options
author | Tim Biermann <tbier@posteo.de> | 2022-12-04 16:11:45 +0000 |
---|---|---|
committer | Tim Biermann <tbier@posteo.de> | 2022-12-04 16:11:45 +0000 |
commit | 3c99ffa7118240fda84eea378e80d33c6cd8d3c4 (patch) | |
tree | fcf2e1a4a83990db82c30c649574221410f5cd53 | |
parent | 220fc22ee217cf3d7862388ae96b3b075888960a (diff) | |
download | xorg-3c99ffa7118240fda84eea378e80d33c6cd8d3c4.tar.gz xorg-3c99ffa7118240fda84eea378e80d33c6cd8d3c4.tar.xz |
xorg-xdm: 1.1.13 -> 1.1.14
-rw-r--r-- | xorg-xdm/.signature | 7 | ||||
-rw-r--r-- | xorg-xdm/Pkgfile | 5 | ||||
-rw-r--r-- | xorg-xdm/xorg-xdm-glibc-2.36.patch | 21 |
3 files changed, 5 insertions, 28 deletions
diff --git a/xorg-xdm/.signature b/xorg-xdm/.signature index 531a280f..7ba10c7c 100644 --- a/xorg-xdm/.signature +++ b/xorg-xdm/.signature @@ -1,8 +1,7 @@ untrusted comment: verify with /etc/ports/xorg.pub -RWTSGWF5Q7TndPC7XEX3mJLIzwnk0AsETFjmHDE+mCu6ZDqrjExirzuufmVLHWZRTrmQ4spmtuBv0c7x7vQbz+sC4K7A0Xc0vQM= -SHA256 (Pkgfile) = 82aa6b1002e27b8eda53457a6453ae4c651eef14c5d4500af6583cd714df3bdd +RWTSGWF5Q7TndKeu//YLGzNW27/EtoelRI9zl0syTIEain7Lsd0cfIOzsBjHjw5O7xDjiY1Iy3iUbL9sR2chyr89neH5TsSsEwA= +SHA256 (Pkgfile) = c086f79b48289030f943e64cd8e7f3e77a51f9026497d3fe25538501601bb5b2 SHA256 (.footprint) = 80ccfc3956875dbdb8c9c8f95799e0c9361263086eaa65a6e43eae1a1ffd6131 -SHA256 (xdm-1.1.13.tar.xz) = e58267e8f1478f2f5cd57cbcf2367a36973860c3131a450a3e0816585af03264 +SHA256 (xdm-1.1.14.tar.xz) = 3e9bf25636797ec9e595286dd6820ecc33901439f07705eaf608ecda012c3d5f SHA256 (xdm) = 08f8309871469f521d70feb674e36ca683e7cb21d9728c899c93bb1d93b321a5 SHA256 (xdm.pam) = b40957971af8c231d118e78612e2909741d21e4dc437fa5052106e648a79a2d7 -SHA256 (xorg-xdm-glibc-2.36.patch) = a8143bb78728c7401a84c2ae7fdd34a76bdb2f282ef7679cd87dcd1ddfc6b00e diff --git a/xorg-xdm/Pkgfile b/xorg-xdm/Pkgfile index 017c33cf..66112439 100644 --- a/xorg-xdm/Pkgfile +++ b/xorg-xdm/Pkgfile @@ -4,14 +4,13 @@ # Depends on: linux-pam xorg-server xorg-xrdb name=xorg-xdm -version=1.1.13 +version=1.1.14 release=1 source=(https://www.x.org/releases/individual/app/xdm-$version.tar.xz - xdm xdm.pam xorg-xdm-glibc-2.36.patch) + xdm xdm.pam) build() { cd xdm-$version - patch -p1 -i $SRC/xorg-xdm-glibc-2.36.patch ./configure \ --prefix=/usr \ diff --git a/xorg-xdm/xorg-xdm-glibc-2.36.patch b/xorg-xdm/xorg-xdm-glibc-2.36.patch deleted file mode 100644 index f15ea64f..00000000 --- a/xorg-xdm/xorg-xdm-glibc-2.36.patch +++ /dev/null @@ -1,21 +0,0 @@ -diff --git a/xdm/genauth.c b/xdm/genauth.c -index 38a021599fe26f0b3d73549df3d3f9c7d405adb6..de7abfc87b3a163e69661720d386d59ca0e6aa43 100644 ---- a/xdm/genauth.c -+++ b/xdm/genauth.c -@@ -42,7 +42,15 @@ from The Open Group. - - #ifdef HAVE_ARC4RANDOM - # ifdef __linux__ --# include <bsd/stdlib.h> -+# if defined(__GLIBC__) && defined(__GLIBC_PREREQ) -+# if __GLIBC_PREREQ(2, 36) -+# include <stdlib.h> -+# else -+# include <bsd/stdlib.h> -+# endif -+# else -+# include <bsd/stdlib.h> -+# endif - # else - # include <stdlib.h> - # endif |