mirror of
https://git.code.sf.net/p/quake/newtree
synced 2024-11-10 14:52:08 +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,
|
||||
[ --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="all"
|
||||
)
|
||||
|
@ -1136,6 +1136,7 @@ else
|
|||
ENABLE_SGL=no
|
||||
ENABLE_SVGA=no
|
||||
ENABLE_X11=no
|
||||
IFS=","
|
||||
for client in $clients; do
|
||||
case "$client" in
|
||||
3dfx)
|
||||
|
@ -1164,6 +1165,7 @@ else
|
|||
;;
|
||||
esac
|
||||
done
|
||||
IFS=" "
|
||||
fi
|
||||
|
||||
AC_ARG_WITH(server,
|
||||
|
|
Loading…
Reference in a new issue