ref: e8f18c403cdafd012cc90df172ad9f7d6d07b2ab
parent: 2e653a7b47b72d3569a78615b0a9d8aa378f7cab
author: Ralph Giles <[email protected]>
date: Thu Oct 17 10:52:56 EDT 2013
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.
--- a/Makefile.unix
+++ b/Makefile.unix
@@ -13,10 +13,8 @@
# 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 ######################