Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.xiph.org/xiph/opus.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRalph Giles <giles@mozilla.com>2013-10-18 01:52:56 +0400
committerRalph Giles <giles@mozilla.com>2013-10-18 01:52:56 +0400
commite8f18c403cdafd012cc90df172ad9f7d6d07b2ab (patch)
tree66405159e3766ab3345323adcf5f1c65cd3f957b /Makefile.unix
parent2e653a7b47b72d3569a78615b0a9d8aa378f7cab (diff)
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.
Diffstat (limited to 'Makefile.unix')
-rw-r--r--Makefile.unix2
1 files changed, 0 insertions, 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 ######################