# HG changeset patch # User Ryan C. Gordon # Date 1001176157 0 # Node ID d7e118d8fede282b42ef83483cf52a440b7f5428 # Parent 365b3be64aac1234dc51828feb59eb7b37dac3d4 Removed -DUSE_RWOPS for MOD, and readded -Werror. diff -r 365b3be64aac -r d7e118d8fede Makefile --- a/Makefile Sat Sep 22 14:48:29 2001 +0000 +++ b/Makefile Sat Sep 22 16:29:17 2001 +0000 @@ -81,7 +81,7 @@ # Note that various decoders may need external libraries. #-----------------------------------------------------------------------------# use_decoder_raw := true -use_decoder_mp3 := false +use_decoder_mp3 := false use_decoder_mod := true use_decoder_voc := true use_decoder_wav := true @@ -222,7 +222,7 @@ CFLAGS := -I$(SRCDIR) $(CFLAGS) CFLAGS += $(use_asm) -D_REENTRANT -fsigned-char -DPLATFORM_UNIX -CFLAGS += -Wall -fno-exceptions -fno-rtti -ansi -pedantic +CFLAGS += -Wall -Werror -fno-exceptions -fno-rtti -ansi -pedantic LDFLAGS += -lm @@ -272,7 +272,7 @@ ifeq ($(strip $(use_decoder_mod)),true) MAINSRCS += decoders/mod.c - CFLAGS += -DSOUND_SUPPORTS_MOD -DUSE_RWOPS + CFLAGS += -DSOUND_SUPPORTS_MOD LDFLAGS += -lmikmod endif