getlocale, mirrors, submitqc and unifont copied to aarch64 repo
Sorry~~
I've already hacked around the
submitqc script and I totally forgot about it.
To make this script works on this platform, it'll need some tinkering.
Please append a new option around line 185.
aarch64) BASELIBS="$BASELIBS ld-linux-aarch64.so.1 linux-vdso.1"; ARCH="aarch64";;
The result should looks like
case "$ARCH" in
x86_64) BASELIBS="$BASELIBS ld-linux-x86-64.so.2 linux-vdso.so.1" ;;
i686) BASELIBS="$BASELIBS ld-linux.so.2 linux-gate.so.1"; ARCH="x86" ;;
x86) BASELIBS="$BASELIBS ld-linux.so.2 linux-gate.so.1" ;;
armv7l) BASELIBS="$BASELIBS ld-linux-armhf.so.3 linux-vdso.1"; ARCH="armv7";;
aarch64) BASELIBS="$BASELIBS ld-linux-aarch64.so.1 linux-vdso.1"; ARCH="aarch64";;
*) echo "$SCRIPT: Unrecognized architecture '$ARCH'. See --help." && exit 1 ;;
esac
BTW, I just finished compiling openbox and sent it to
picoresubmit AT gmail DOT comWorking and Tested. (I'm using it right now
)
Furthermore, the
openbox-config.tcz on
x86_64 can be copied without tweaks as well.
Please port it over.
Please use /usr/local/lib/appname for libexec so we know where the files came from.
Noted
./configure --prefix=/usr/local --libexecdir=/usr/local/lib/openbox
Cheers