]> sigrok.org Git - libsigrok.git/commit
Compile with -std=c11 along with _POSIX_C_SOURCE=200112L.
authorAurelien Jacobs <redacted>
Sun, 26 Apr 2015 22:06:03 +0000 (00:06 +0200)
committerUwe Hermann <redacted>
Tue, 28 Apr 2015 20:07:03 +0000 (22:07 +0200)
commite35e1e7babee3cb3939e56f06322fa14f8580625
tree505afb590252138e40884953c40c943f79abc26f
parent76372c5a9ce25d94ee992a5c84b8135f0d945293
Compile with -std=c11 along with _POSIX_C_SOURCE=200112L.

With gcc 5.1 released and defaulting to std=gnu11, the code will be compiled
according to different standards depending on the compiler version so we
should better specify explicitly what standard we are targetting.
C11 is now quite mature, it is supported in the just release Debian stable
(gcc 4.9) and also in old-stable (gcc 4.7), so there should be no reason to
use anything more ancient.
We also should have no reason to need any non-standard GNU extension.
So using only C11 + POSIX sounds like the best option right now.
configure.ac