af74c6df44
and WinXP guests) - TODO: USB xHCI could also be added, but more tests are required
67 lines
1.8 KiB
Bash
Executable File
67 lines
1.8 KiB
Bash
Executable File
#!/bin/sh
|
|
#
|
|
# .conf.linux
|
|
#
|
|
|
|
#which_config=normal
|
|
which_config=plugins
|
|
|
|
CC="gcc"
|
|
CXX="c++"
|
|
CFLAGS="-Wall -O3 -fomit-frame-pointer -pipe" # for speed
|
|
#CFLAGS="-Wall -g -pipe" # for development
|
|
CXXFLAGS="$CFLAGS"
|
|
|
|
export CC
|
|
export CXX
|
|
export CFLAGS
|
|
export CXXFLAGS
|
|
|
|
|
|
case $which_config in
|
|
|
|
normal)
|
|
|
|
#######################################################################
|
|
# configuration 1 for release binary RPMs
|
|
# Include a few standard options, speed optimizations, X11 only.
|
|
#######################################################################
|
|
./configure --enable-sb16 \
|
|
--enable-ne2000 \
|
|
--enable-all-optimizations \
|
|
--enable-cpu-level=6 \
|
|
--enable-x86-64 \
|
|
--enable-pci \
|
|
--enable-clgd54xx \
|
|
--enable-usb \
|
|
--enable-usb-ohci \
|
|
--enable-es1370 \
|
|
--enable-e1000 \
|
|
--enable-show-ips \
|
|
${CONFIGURE_ARGS}
|
|
;;
|
|
|
|
plugins)
|
|
#######################################################################
|
|
# configuration 2 for release binary RPMs
|
|
# Include plugins, every possible gui.
|
|
#######################################################################
|
|
./configure --enable-sb16 \
|
|
--enable-ne2000 \
|
|
--enable-all-optimizations \
|
|
--enable-cpu-level=6 \
|
|
--enable-x86-64 \
|
|
--enable-pci \
|
|
--enable-clgd54xx \
|
|
--enable-usb \
|
|
--enable-usb-ohci \
|
|
--enable-es1370 \
|
|
--enable-e1000 \
|
|
--enable-plugins \
|
|
--enable-show-ips \
|
|
--with-all-libs \
|
|
${CONFIGURE_ARGS}
|
|
;;
|
|
|
|
esac
|