Remove restrict definition from the unix Makefile.

This define was replaces by OPUS_RESTRICT in opus_defines.h
in de0b5324b6 and subsequent commits. It is no longer necessary
to include it.
This commit is contained in:
Ralph Giles 2013-10-17 14:52:56 -07:00
parent 2e653a7b47
commit e8f18c403c

View file

@ -13,10 +13,8 @@ CFLAGS := -DUSE_ALLOCA $(CFLAGS)
# These options affect performance
# HAVE_LRINTF: Use C99 intrinsics to speed up float-to-int conversion
# inline: Don't use the 'inline' keyword (for ANSI C compilers)
# restrict: Don't use the 'restrict' keyword (for pre-C99 compilers)
#CFLAGS := -DHAVE_LRINTF $(CFLAGS)
#CFLAGS := -Dinline= $(CFLAGS)
CFLAGS := -Drestrict= $(CFLAGS)
###################### END OF OPTIONS ######################