how-lix-os-pkgs/libxau/default/conf.sh

26 lines
558 B
Bash
Executable File

#!/bin/sh
#autoreconf -vif
XAU_CFLAGS="$CFLAGS" \
XAU_LIBS="$LDFLAGS" \
./configure \
--disable-shared \
--enable-static \
--build="$(uname -m)-lix-linux-musl" \
--host="$(uname -m)-lix-linux-musl" \
--sysconfdir=/etc \
--prefix=/usr
## explanation
#
# --disable-shared: don't build anything with dynamic linking.
#
# --enable-static: use static linking instead.
#
# --build: make sure the build string gets set correctly.
#
# --host: make sure the host string gets set correctly.
#
# --prefix: respect the "no /usr/local" policy.