wingo pushed a commit to branch lightning
in repository guile.
commit 0ce8e6969ec612d389455c7809239891c780f350
Author: Andy Wingo <[email protected]>
Date: Sun Jul 1 16:38:07 2018 +0200
Remove special cflags for obsolete Lightning targets
* libguile/lightning/configure.ac: Remove compiler flags specializations
for ia64 on HPUX, MIPS on Irix, and Alpha on OSF.
---
libguile/lightning/configure.ac | 32 --------------------------------
1 file changed, 32 deletions(-)
diff --git a/libguile/lightning/configure.ac b/libguile/lightning/configure.ac
index 8dc7f34..10438f1 100644
--- a/libguile/lightning/configure.ac
+++ b/libguile/lightning/configure.ac
@@ -1,37 +1,5 @@
LIGHTNING_CFLAGS=
-case "$target_cpu" in
- ia64)
- case "$host_os" in
- # Only supported mode
- *hpux*)
- LIGHTNING_CFLAGS="$LIGHTNING_CFLAGS -mlp64" ;;
- *) ;;
- esac ;;
- *mips*)
- case "$host_os" in
- # (Hack) Flags to pass configure with gcc 3.x
- # Should not set LIGHTNINT_CFLAGS
- *irix*)
- CFLAGS="$CFLAGS -D__c99 -Drestrict=";;
- *) ;;
- esac ;;
- alpha*)
- case "$host_os" in
- osf*)
- # Get proper varargs and mmap prototypes and definitions
- CFLAGS="$CFLAGS -D_ANSI_C_SOURCE -D_XOPEN_SOURCE_EXTENDED
-D_OSF_SOURCE -D_POSIX_C_SOURCE=199309L"
- # Want to generate NaN with 0.0/0.0 and Inf with 1.0/0.0
- if test x$GCC = "xyes"; then
- CFLAGS="$CFLAGS -mieee"
- else
- CFLAGS="$CFLAGS -ieee_with_no_inexact"
- fi ;;
- *) ;;
- esac ;;
- *) ;;
-esac
-
AC_CHECK_FUNCS(mremap ffsl isnan isinf,,)
AC_ARG_ENABLE(assertions,