mirror of
https://git.code.sf.net/p/quake/newtree
synced 2025-03-13 03:33:28 +00:00
Change format of --with-clients= parameters. Used to be
[example] --with-clients="3dfx glx svga", it's now --with-clients=3dfx,glx,svga
This commit is contained in:
parent
f9fcd66129
commit
977c10c2f2
1 changed files with 3 additions and 1 deletions
|
@ -1114,7 +1114,7 @@ dnl ==================================================================
|
||||||
|
|
||||||
AC_ARG_WITH(clients,
|
AC_ARG_WITH(clients,
|
||||||
[ --with-clients=<list> compile clients in <list>;
|
[ --with-clients=<list> compile clients in <list>;
|
||||||
3dfx ggi glx mgl sdl sgl svga x11],
|
3dfx,ggi,glx,mgl,sdl,sgl,svga,x11],
|
||||||
clients="$withval",
|
clients="$withval",
|
||||||
clients="all"
|
clients="all"
|
||||||
)
|
)
|
||||||
|
@ -1136,6 +1136,7 @@ else
|
||||||
ENABLE_SGL=no
|
ENABLE_SGL=no
|
||||||
ENABLE_SVGA=no
|
ENABLE_SVGA=no
|
||||||
ENABLE_X11=no
|
ENABLE_X11=no
|
||||||
|
IFS=","
|
||||||
for client in $clients; do
|
for client in $clients; do
|
||||||
case "$client" in
|
case "$client" in
|
||||||
3dfx)
|
3dfx)
|
||||||
|
@ -1164,6 +1165,7 @@ else
|
||||||
;;
|
;;
|
||||||
esac
|
esac
|
||||||
done
|
done
|
||||||
|
IFS=" "
|
||||||
fi
|
fi
|
||||||
|
|
||||||
AC_ARG_WITH(server,
|
AC_ARG_WITH(server,
|
||||||
|
|
Loading…
Reference in a new issue