From 19a4e775acee96ce314c6f08848dabf4f0b704ec Mon Sep 17 00:00:00 2001 From: "mostang.com!davidm" Date: Sat, 8 Feb 2003 10:10:59 +0000 Subject: [PATCH] Up version number to 0.2-pre5. (OS_LINUX): New conditional. (CFLAGS): Turn on -Wsign-compare for gcc. (Logical change 1.45) --- configure.in | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/configure.in b/configure.in index fa68673e..d9fee5b9 100644 --- a/configure.in +++ b/configure.in @@ -2,7 +2,7 @@ dnl Process this file with autoconf to produce a configure script. AC_INIT(src/backtrace.c) AC_CONFIG_AUX_DIR(aux) AC_CANONICAL_SYSTEM -AM_INIT_AUTOMAKE(libunwind, 0.2-pre4) +AM_INIT_AUTOMAKE(libunwind, 0.2-pre5) AM_MAINTAINER_MODE AM_CONFIG_HEADER(include/config.h) @@ -45,6 +45,7 @@ AM_CONDITIONAL(REMOTE_ONLY, test x$target_arch != x$build_arch) AM_CONDITIONAL(ARCH_IA64, test x$target_arch = xia64) AM_CONDITIONAL(ARCH_HPPA, test x$target_arch = xhppa) AM_CONDITIONAL(ARCH_X86, test x$target_arch = xx86) +AM_CONDITIONAL(OS_LINUX, expr x$target_os : xlinux >/dev/null) if test x$target_arch != x$build_arch; then CPPFLAGS="${CPPFLAGS} -DUNW_REMOTE_ONLY" @@ -67,7 +68,7 @@ fi ASFLAGS="${ASFLAGS} ${CPPFLAGS}" if test x$GCC = xyes; then - CFLAGS="${CFLAGS} -Wall" + CFLAGS="${CFLAGS} -Wall -Wsign-compare" fi arch="$target_arch"