diff options
author | bmintz <bmintz@users.noreply.github.com> | 2017-11-06 21:05:21 -0600 |
---|---|---|
committer | bmintz <bmintz@users.noreply.github.com> | 2017-11-06 21:05:21 -0600 |
commit | 5800d245e5952ee580c2ec8c15ac4a694724af7e (patch) | |
tree | b377739eff2c1876ac1c752e8e69302f10dda877 /src/Makefile | |
parent | 6575ce3e9ee423c3c91f0e44d3bca365a338418a (diff) | |
download | VeraCrypt-5800d245e5952ee580c2ec8c15ac4a694724af7e.tar.gz VeraCrypt-5800d245e5952ee580c2ec8c15ac4a694724af7e.zip |
Fix compilation on Linux (closes #198)
This patch was provided by Krytarik Raido via unit93
https://github.com/veracrypt/VeraCrypt/issues/198#issuecomment-341453420
Diffstat (limited to 'src/Makefile')
-rw-r--r-- | src/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/Makefile b/src/Makefile index 7d7f69db..4f8bb42b 100644 --- a/src/Makefile +++ b/src/Makefile @@ -170,8 +170,8 @@ ifeq "$(shell uname -s)" "Linux" CFLAGS += -msse2 CXXFLAGS += -msse2 - GCC_GTEQ_440 := $(shell expr `gcc -dumpversion | sed -e 's/\.\([0-9][0-9]\)/\1/g' -e 's/\.\([0-9]\)/0\1/g' -e 's/^[0-9]\{3,4\}$$/&00/'` \>= 40400) - GCC_GTEQ_430 := $(shell expr `gcc -dumpversion | sed -e 's/\.\([0-9][0-9]\)/\1/g' -e 's/\.\([0-9]\)/0\1/g' -e 's/^[0-9]\{3,4\}$$/&00/'` \>= 40300) + GCC_GTEQ_440 := $(shell expr `gcc -dumpversion | sed -e 's/\.\([0-9][0-9]\)/\1/g' -e 's/\.\([0-9]\)/0\1/g' -e 's/^[0-9]\{3,4\}$$/&00/' -e 's/^[0-9]\{1,2\}$$/&0000/'` \>= 40400) + GCC_GTEQ_430 := $(shell expr `gcc -dumpversion | sed -e 's/\.\([0-9][0-9]\)/\1/g' -e 's/\.\([0-9]\)/0\1/g' -e 's/^[0-9]\{3,4\}$$/&00/' -e 's/^[0-9]\{1,2\}$$/&0000/'` \>= 40300) ifeq "$(GCC_GTEQ_440)" "1" CFLAGS += -maes CXXFLAGS += -maes |