From e8f18c403cdafd012cc90df172ad9f7d6d07b2ab Mon Sep 17 00:00:00 2001 From: Ralph Giles Date: Thu, 17 Oct 2013 14:52:56 -0700 Subject: [PATCH] Remove restrict definition from the unix Makefile. This define was replaces by OPUS_RESTRICT in opus_defines.h in de0b5324b687 and subsequent commits. It is no longer necessary to include it. --- Makefile.unix | 2 -- 1 file changed, 2 deletions(-) diff --git a/Makefile.unix b/Makefile.unix index c0bab7c6..e56291a9 100644 --- a/Makefile.unix +++ b/Makefile.unix @@ -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 ######################