mirror of https://github.com/odrling/Aegisub
Enable precompiled headers by default
Originally committed to SVN as r5985.
This commit is contained in:
parent
6d62437c42
commit
f48c2a444d
|
@ -823,8 +823,9 @@ fi
|
|||
############################
|
||||
|
||||
AC_MSG_CHECKING([whether to use precompiled headers])
|
||||
AC_ARG_ENABLE(gcc-prec, [ --enable-gcc-prec enable GCC precompiled headers (default=no)])
|
||||
if test "$enable_gcc_prec" = "yes"; then
|
||||
AC_ARG_ENABLE(gcc-prec, [ --disable-gcc-prec disable GCC precompiled headers])
|
||||
if test "$enable_gcc_prec" != "no"; then
|
||||
enable_gcc_prec="yes"
|
||||
AC_MSG_RESULT([yes])
|
||||
else
|
||||
AC_MSG_RESULT([no])
|
||||
|
|
Loading…
Reference in New Issue