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:
Jeff Teunissen 2000-12-28 23:26:45 +00:00
parent f9fcd66129
commit 977c10c2f2
1 changed files with 3 additions and 1 deletions

View File

@ -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,