diff options
author | Brent Cook <bcook@openbsd.org> | 2014-08-16 14:16:01 -0500 |
---|---|---|
committer | Brent Cook <bcook@openbsd.org> | 2014-08-16 14:16:01 -0500 |
commit | 2cef68f3ed82c2c036d1909042dcd23c14ec82e3 (patch) | |
tree | de491c6f016e92c9b64b81c53dabcdfa30acdf91 /configure.ac | |
parent | 2d719eb3d7c6b97eceb1dd64640165ad8fc2e1b7 (diff) | |
download | portable-2cef68f3ed82c2c036d1909042dcd23c14ec82e3.tar.gz portable-2cef68f3ed82c2c036d1909042dcd23c14ec82e3.tar.bz2 portable-2cef68f3ed82c2c036d1909042dcd23c14ec82e3.zip |
allow inline asm
use default of -std=gnu99 for it to be recognized
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac index 07d5e76..7b63cdc 100644 --- a/configure.ac +++ b/configure.ac | |||
@@ -6,7 +6,7 @@ AC_CONFIG_MACRO_DIR([m4]) | |||
6 | m4_ifdef([AM_SILENT_RULES], [AM_SILENT_RULES([yes])]) | 6 | m4_ifdef([AM_SILENT_RULES], [AM_SILENT_RULES([yes])]) |
7 | 7 | ||
8 | AC_SUBST([USER_CFLAGS], "-O2 $CFLAGS") | 8 | AC_SUBST([USER_CFLAGS], "-O2 $CFLAGS") |
9 | CFLAGS="$CFLAGS -Wall -std=c99 -g" | 9 | CFLAGS="$CFLAGS -Wall -std=gnu99 -g" |
10 | 10 | ||
11 | case $host_os in | 11 | case $host_os in |
12 | *darwin*) | 12 | *darwin*) |