diff options
author | Joshua Judson Rosen | 2017-03-19 17:37:50 -0400 |
---|---|---|
committer | Joshua Judson Rosen | 2017-03-28 01:45:58 -0400 |
commit | 27b3d581738d7fd5074c0db44449dadeb99be7a9 (patch) | |
tree | 83f1268915e098e3f71d8f6851e1806aca3235ae | |
parent | autotools: copy in config.rpath from gnulib (diff) | |
download | gnurobots-27b3d581738d7fd5074c0db44449dadeb99be7a9.tar.gz |
Update to C99....
Using C99 is a bit of a mixed bag, but lets us more easily eliminate
warnings than other variants....
Earlier C variants have no "long long" type, which we don't even use
but is still a problem for us because there are some deprecated
function prototypes that come in through the libguile.h header
and *they* are defined in terms of "long long".
C99 criminalizes guile's behavior of passing function-pointers
via "void *"..., but we can work around that....
-rw-r--r-- | configure.ac | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac index 4c6fbb3..9a72d64 100644 --- a/configure.ac +++ b/configure.ac @@ -24,7 +24,7 @@ AC_CONFIG_SRCDIR([include/api.h]) AM_INIT_AUTOMAKE dnl Checks for programs. -AC_PROG_CC +AC_PROG_CC_C99 GUILE_FLAGS |