.travis.yml: change -std=c89 to -ansi
authorRichard Levitte <levitte@openssl.org>
Tue, 26 Feb 2019 08:34:00 +0000 (09:34 +0100)
committerRichard Levitte <levitte@openssl.org>
Thu, 28 Feb 2019 12:08:04 +0000 (13:08 +0100)
commit3dee23a6840add98798260e5faa76205e77120a5
tree627853d59bbb5b3e7a52c2560c09692ddff4c2ae
parentd1d0598b7ffcb3f56962ec3cb4c2c2cb8679042f
.travis.yml: change -std=c89 to -ansi

For C, -ansi is equivalent to -std=c90
For C++, -ansi is equivalent to -std=c++98

We also place -ansi in CPPFLAGS instead of the usual command line config,
to avoid getting it when linking (clang complains)

(cherry picked from commit 874f785988c17991051d36a0407a87b36c463a94)

Reviewed-by: Paul Dale <paul.dale@oracle.com>
(Merged from https://github.com/openssl/openssl/pull/8359)
.travis.yml