blah blah

This commit is contained in:
Bradley Bell 2001-10-24 07:08:59 +00:00
parent 17e23e8e6b
commit cbd0a26e50
2 changed files with 3 additions and 2 deletions

1
NEWS
View file

@ -2,6 +2,7 @@
Assembly under mingw32 now works.
Invulnerable robots bug fixed!
Build process much faster.
network support now compiles on mingw, dunno if it works...
--- Version 0.1.0 ---
Builds with SDL/OpenGL, even on Windows (MingW32)

View file

@ -40,7 +40,7 @@ CFLAGS="$CFLAGS -O2 -Wall"
dnl Enable editor build?
AC_ARG_ENABLE(editor,
[ --enable-editor Build editor? ],,)
[ --enable-editor Build editor? (not functional)],,)
if test x$enable_editor = xyes; then
AC_DEFINE(EDITOR)
fi
@ -48,7 +48,7 @@ AM_CONDITIONAL(EDITOR, test x$enable_editor = xyes)
dnl Enable cross-platform bitmap/palette loader?
AC_ARG_ENABLE(xploader,
[ --enable-xploader Enable xp bitmap/palette loader ],,)
[ --enable-xploader Enable cross-platform bitmap/palette loader ],,)
if test x$enable_xploader = xyes; then
AC_DEFINE(PORTABLE_LOADER)
fi