-if test -n "$auto_cflags"; then
- if test x"$enable_debug" = x"yes"; then
- if test -n "$GCC"; then
- test -z "$CFLAGS" && CFLAGS="$nmh_gcc_warnflags -g" || CFLAGS="$CFLAGS $nmh_gcc_warnflags -g"
- else
- test -z "$CFLAGS" && CFLAGS=-g || CFLAGS="$CFLAGS -g"
- fi
- else
- if test -z "$LDFLAGS"; then
- case "$build_os" in
- darwin*)
- LDFLAGS=
- ;;
- *)
- LDFLAGS=-s
- ;;
- esac
- fi
- if test -n "$GCC"; then
- test -z "$CFLAGS" && CFLAGS="$nmh_gcc_warnflags -O2" || CFLAGS="$CFLAGS $nmh_gcc_warnflags -O2"
- else
- test -z "$CFLAGS" && CFLAGS=-O || CFLAGS="$CFLAGS -O"
- fi
- AC_DEFINE([NDEBUG], [1],
- [Define to disable run-time debugging and asserts.])
+dnl -----------------
+dnl CUSTOMIZE LDFLAGS
+dnl -----------------
+if test "$GCC" = yes; then
+ dnl Disable clang complaint about unused -ansi when linking.
+ AC_CACHE_CHECK([whether linker supports -Qunused-arguments],
+ [nmh_cv_has_q_unused_arguments],
+ [nmh_saved_ldflags="$LDFLAGS"
+ LDFLAGS="$LDFLAGS -Qunused-arguments"
+ AC_TRY_LINK([],[],nmh_cv_has_q_unused_arguments=yes,
+ nmh_cv_has_q_unused_arguments=no)
+ LDFLAGS="$nmh_saved_ldflags"])
+ test "$nmh_cv_has_q_unused_arguments" = "yes" && \
+ LDFLAGS="${LDFLAGS:+$LDFLAGS }-Qunused-arguments"
+fi
+
+dnl This really shouldn't be necessary. And we really shouldn't add -s.
+if test x"$enable_debug" = x"yes"; then
+ test -z "$LDFLAGS" && LDFLAGS=-g
+else
+ if test -z "$LDFLAGS"; then
+ case "$build_os" in
+ darwin*) LDFLAGS= ;;
+ *) LDFLAGS=-s ;;
+ esac