Skip to content

Commit

Permalink
Removed -DUSE_RWOPS for MOD, and readded -Werror.
Browse files Browse the repository at this point in the history
  • Loading branch information
icculus committed Sep 22, 2001
1 parent 04238c0 commit 24f86ec
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Makefile
Expand Up @@ -81,7 +81,7 @@ debugging_chatter := true
# 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
Expand Down Expand Up @@ -222,7 +222,7 @@ SRCDIR := .

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

Expand Down Expand Up @@ -272,7 +272,7 @@ endif

ifeq ($(strip $(use_decoder_mod)),true)
MAINSRCS += decoders/mod.c
CFLAGS += -DSOUND_SUPPORTS_MOD -DUSE_RWOPS
CFLAGS += -DSOUND_SUPPORTS_MOD
LDFLAGS += -lmikmod
endif

Expand Down

0 comments on commit 24f86ec

Please sign in to comment.