Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Added DEBUG_CHATTER to the --enable-debug defines. (This will become a
 separate option: --enable-debug-chatter if it proves to be a pain in
 the ass.)
  • Loading branch information
icculus committed Oct 3, 2001
1 parent a5d7b4c commit f4041de
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 10 deletions.
1 change: 1 addition & 0 deletions acconfig.h
@@ -1,5 +1,6 @@

#undef DEBUG
#undef DEBUG_CHATTER
#undef NDEBUG
#undef SOUND_SUPPORTS_AIFF
#undef SOUND_SUPPORTS_MOD
Expand Down
13 changes: 3 additions & 10 deletions configure.in
Expand Up @@ -71,6 +71,7 @@ if test x$enable_debug = xyes; then
CFLAGS="-O0"
fi
AC_DEFINE(DEBUG)
AC_DEFINE(DEBUG_CHATTER)
else
AC_DEFINE(NDEBUG)
fi
Expand Down Expand Up @@ -125,21 +126,13 @@ if test x$enable_aiff = xyes; then
fi


dnl DO NOT ENABLE THIS YET. IT'S NOT COMPLETE.
dnl DO NOT ENABLE THIS YET. IT'S NOT COMPLETE.
dnl DO NOT ENABLE THIS YET. IT'S NOT COMPLETE.
dnl DO NOT ENABLE THIS YET. IT'S NOT COMPLETE.
dnl Check for shn decoder inclusion...
AC_ARG_ENABLE(shn,
[ --enable-shn enable SHN decoding [default=no]],
, enable_shn=no)
[ --enable-shn enable SHN decoding [default=yes]],
, enable_shn=yes)
if test x$enable_shn = xyes; then
AC_DEFINE(SOUND_SUPPORTS_SHN)
fi
dnl DO NOT ENABLE THIS YET. IT'S NOT COMPLETE.
dnl DO NOT ENABLE THIS YET. IT'S NOT COMPLETE.
dnl DO NOT ENABLE THIS YET. IT'S NOT COMPLETE.
dnl DO NOT ENABLE THIS YET. IT'S NOT COMPLETE.


dnl Check for libmikmod
Expand Down

0 comments on commit f4041de

Please sign in to comment.