diff options
author | Ben Gamari <ben@smart-cactus.org> | 2019-06-09 09:50:41 -0400 |
---|---|---|
committer | Ben Gamari <ben@smart-cactus.org> | 2019-06-12 08:20:25 -0400 |
commit | 898f7e9235eff57ececac4836f6ba74388131db2 (patch) | |
tree | c9dcbdaa5f6c66c55970458f4a5650836092ebf6 /aclocal.m4 | |
parent | 0782141ef52c72523b82cd83b7466a3a65d94a31 (diff) | |
download | haskell-898f7e9235eff57ececac4836f6ba74388131db2.tar.gz |
Fix uses of #ifdef/#ifndef
The linter now enforces our preference for `#if defined()` and
`#if !defined()`.
Diffstat (limited to 'aclocal.m4')
-rw-r--r-- | aclocal.m4 | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/aclocal.m4 b/aclocal.m4 index f33c50c5ac..0d4727ff2b 100644 --- a/aclocal.m4 +++ b/aclocal.m4 @@ -866,7 +866,7 @@ case $TargetPlatform in esac ;; i386-unknown-mingw32) fptools_cv_leading_underscore=yes;; x86_64-unknown-mingw32) fptools_cv_leading_underscore=no;; - *) AC_RUN_IFELSE([AC_LANG_SOURCE([[#ifdef HAVE_NLIST_H + *) AC_RUN_IFELSE([AC_LANG_SOURCE([[#if defined(HAVE_NLIST_H) #include <nlist.h> struct nlist xYzzY1[] = {{"xYzzY1", 0},{0}}; struct nlist xYzzY2[] = {{"_xYzzY2", 0},{0}}; @@ -876,7 +876,7 @@ int main(argc, argv) int argc; char **argv; { -#ifdef HAVE_NLIST_H +#if defined(HAVE_NLIST_H) if(nlist(argv[0], xYzzY1) == 0 && xYzzY1[0].n_value != 0) exit(1); if(nlist(argv[0], xYzzY2) == 0 && xYzzY2[0].n_value != 0) @@ -1650,16 +1650,16 @@ then [fptools_cv_timer_create_works], [AC_TRY_RUN([ #include <stdio.h> -#ifdef HAVE_STDLIB_H +#if defined(HAVE_STDLIB_H) #include <stdlib.h> #endif -#ifdef HAVE_TIME_H +#if defined(HAVE_TIME_H) #include <time.h> #endif -#ifdef HAVE_SIGNAL_H +#if defined(HAVE_SIGNAL_H) #include <signal.h> #endif -#ifdef HAVE_UNISTD_H +#if defined(HAVE_UNISTD_H) #include <unistd.h> #endif |