Avoid non-portable == for the test command
authorRhialto The M <Rhialto@users.noreply.github.com>
Sat, 6 Oct 2018 16:26:43 +0000 (18:26 +0200)
committerGitHub <noreply@github.com>
Sat, 6 Oct 2018 16:26:43 +0000 (18:26 +0200)
commit16c210a39c28c836781472a54285d5078ae07b6c
tree7a55e3efbcadca2c2ef1ee475fb5758bbe9315c8
parent80dd5f070898f53d383f1b9f4df4016179943cc8
Avoid non-portable == for the test command

The test command doesn't accept `==` as operator. It should be a single `=` for portable use. The `==` is a gnu extension.

Note that the x-trick hasn't been needed for a long, long time. You can reliably write it with quotes:
```
if test "$gtk3" = yes; then
```
but I left that alone since it doesn't hurt other than being ugly.
configure.in