summaryrefslogtreecommitdiff
path: root/travis-autogen.sh
Commit message (Collapse)AuthorAgeFilesLines
* travis: Pass on arguments given to travis_autogen.shChris Dickens2017-02-281-1/+1
| | | | Signed-off-by: Chris Dickens <christopher.a.dickens@gmail.com>
* travis: remove -fdiagnostics-color=autoLudovic Rousseau2017-01-041-1/+0
| | | | | -fdiagnostics-color=auto is not supported bug gcc version 4.8.4 gcc: error: unrecognized command line option '-fdiagnostics-color=auto'
* travis: remove -WerrorLudovic Rousseau2017-01-041-2/+1
| | | | | | | | | | Using -Werror in CFLAGS make ./configure to fails with: checking whether the C compiler works... no configure: error: in `/home/travis/build/LudovicRousseau/libusb': configure: error: C compiler cannot create executables See `config.log' for more details -Werror had no effect because CFLAGS was _not_ exported.
* travis: use bash for travis-autogen.shLudovic Rousseau2017-01-041-1/+1
| | | | | | | Problem was: ./travis-autogen.sh: 6: ./travis-autogen.sh: CFLAGS+= -Wbad-function-cast: not found ./travis-autogen.sh: 8: ./travis-autogen.sh: CFLAGS+= -Wchar-subscripts: not found [...]
* travis-CI: fails compilation on warningLudovic Rousseau2016-03-021-0/+41
The travis-autogen.sh script enable some extra warnings not used by default. The idea is to detect problem as early as possible.