mirror of
git://slackware.nl/current.git
synced 2024-12-31 10:28:29 +01:00
20 lines
384 B
Text
20 lines
384 B
Text
|
if [ "$ARCH" = "x86_64" ]; then
|
||
|
do_sse2="--enable-sse2"
|
||
|
else
|
||
|
do_sse2="--disable-sse2"
|
||
|
fi
|
||
|
|
||
|
CFLAGS=$SLKCFLAGS \
|
||
|
CXXFLAGS=$SLKCFLAGS \
|
||
|
./configure \
|
||
|
--prefix=/usr \
|
||
|
--libdir=/usr/lib${LIBDIRSUFFIX} \
|
||
|
--sysconfdir=/etc \
|
||
|
--localstatedir=/var \
|
||
|
--infodir=/usr/info \
|
||
|
--mandir=/usr/man \
|
||
|
--disable-static \
|
||
|
--disable-vmx \
|
||
|
--build=$ARCH-slackware-linux \
|
||
|
${do_sse2}
|