mirror of
https://git.code.sf.net/p/quake/quakeforge-old
synced 2024-11-22 03:41:27 +00:00
Cleaned up configure --help output.
This commit is contained in:
parent
70f43f6e71
commit
289fb16e4e
1 changed files with 7 additions and 5 deletions
12
configure.in
12
configure.in
|
@ -77,9 +77,8 @@ AC_CHECK_FUNCS(gethostname gethostbyname connect gettimeofday getwd mkdir \
|
|||
snprintf _snprintf vsnprintf _vsnprintf strsep dlopen getaddrinfo getnameinfo)
|
||||
|
||||
AC_ARG_ENABLE(experimental,
|
||||
[ --enable-experimental compile with experimental code. Use at your
|
||||
own risk]
|
||||
)
|
||||
[ --enable-experimental compile with experimental code. Use at your
|
||||
own risk])
|
||||
if test "x$enable_experimental" = xyes; then
|
||||
AC_DEFINE(_EXPERIMENTAL_)
|
||||
fi
|
||||
|
@ -456,7 +455,10 @@ AC_CHECK_LIB(xil,xil_import, HAS_XIL=yes, HAS_XIL=no)
|
|||
TDFXGL_CFLAGS=""
|
||||
TDFXGL_LIBS=""
|
||||
TDFXGL_NAME=""
|
||||
AC_ARG_WITH(3dfx, [--with-3dfx Support 3Dfx output for the V1/V2, if a argument is specified it will be used as the GL wrapper lib for glide.],
|
||||
AC_ARG_WITH(3dfx,
|
||||
[ --with-3dfx support 3Dfx output for the V1/V2, if a argument
|
||||
is specified it will be used as the GL wrapper lib
|
||||
for glide.],
|
||||
HAS_3dfx=$withval, HAS_3dfx=auto)
|
||||
AC_MSG_CHECKING(for 3Dfx support)
|
||||
if test "x$HAS_3dfx" != xno; then
|
||||
|
@ -557,7 +559,7 @@ case "${target}" in
|
|||
AC_MSG_RESULT(yes)
|
||||
AC_MSG_CHECKING(to see if we should disable asm optimizations)
|
||||
AC_ARG_ENABLE(asmopt,
|
||||
[ --disable-asmopt Disable assembler optimization],
|
||||
[ --disable-asmopt disable assembler optimization],
|
||||
ASM_ARCH=none, ASM_ARCH=i386
|
||||
)
|
||||
if test "x$NO_ASMOPT" = xyes; then
|
||||
|
|
Loading…
Reference in a new issue