Update sources to build on ppc64el

ulab-next
Timothy Pearson 5 years ago
parent e60ec962c1
commit 32dd179685

@ -105,6 +105,20 @@ extract_it()
# patch and configure module - we only need to do this once
cd $mod_name
# replace config.guess
if [ -e build/config.guess ]; then
cp -Rp /usr/share/misc/config.guess build/
elif [ -e build-aux/config.guess ]; then
cp -Rp /usr/share/misc/config.guess build-aux/
elif [ -e bin/config.guess ]; then
cp -Rp /usr/share/misc/config.guess bin/
elif [ -e conftools/config.guess ]; then
cp -Rp /usr/share/misc/config.guess conftools/
elif [ -e builds/unix/config.guess ]; then
cp -Rp /usr/share/misc/config.guess builds/unix/
else
cp -Rp /usr/share/misc/config.guess .
fi
# check for patches
if [ -e ../../$mod_name.patch ]; then
patch -p1 < ../../$mod_name.patch

@ -0,0 +1,11 @@
diff -ur a/libkms/linux.c b/libkms/linux.c
--- a/libkms/linux.c
+++ b/libkms/linux.c
@@ -39,6 +39,7 @@
#include <unistd.h>
#include <sys/stat.h>
+#include <sys/sysmacros.h>
#include "internal.h"
Loading…
Cancel
Save