From b253a99d8eb3f20ba44fc0e09bdd2c1fb735619b Mon Sep 17 00:00:00 2001 From: "mostang.com!davidm" Date: Thu, 16 Jan 2003 03:10:11 +0000 Subject: [PATCH] Up version number to 0.2-pre3. Change "test" equality-test operator from "==" to "=". The former is a non-standard GNU extension. (Logical change 1.34) --- configure.in | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/configure.in b/configure.in index 9ef51047..fe398845 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-pre2) +AM_INIT_AUTOMAKE(libunwind, 0.2-pre3) AM_MAINTAINER_MODE AM_CONFIG_HEADER(include/config.h) @@ -42,9 +42,9 @@ build_arch=`get_arch $build_cpu` target_arch=`get_arch $target_cpu` 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(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) if test x$target_arch != x$build_arch; then CPPFLAGS="${CPPFLAGS} -DUNW_REMOTE_ONLY" @@ -59,7 +59,7 @@ AC_ARG_ENABLE(debug, LIBUNWIND___THREAD CPPFLAGS="${CPPFLAGS} -D_GNU_SOURCE" -if test x$enable_debug == xyes; then +if test x$enable_debug = xyes; then CPPFLAGS="${CPPFLAGS} -DDEBUG" else CPPFLAGS="${CPPFLAGS} -DNDEBUG"