From 490abec88af699eb558a26b3ccc7c6e45df79f14 Mon Sep 17 00:00:00 2001 From: wolf Date: Sat, 20 Sep 2003 01:54:38 +0000 Subject: [PATCH] Fix one real and some possibly forgotten quotation marks. git-svn-id: https://svn.dealii.org/trunk@8000 0785d39b-7218-0410-832d-ea1e28bc413d --- deal.II/aclocal.m4 | 6 +++--- deal.II/configure | 9 +++++---- 2 files changed, 8 insertions(+), 7 deletions(-) diff --git a/deal.II/aclocal.m4 b/deal.II/aclocal.m4 index e9cac03860..a2c4c8d4e5 100644 --- a/deal.II/aclocal.m4 +++ b/deal.II/aclocal.m4 @@ -873,12 +873,12 @@ AC_DEFUN(DEAL_II_CHECK_CPU_OPTIMIZATIONS, dnl rather than just generating code for this processor family], withcpu=$withval, - withcpu=) + withcpu="") AC_MSG_CHECKING(for CPU to optimize for) case "$withcpu" in PowerPC64) AC_MSG_RESULT(PowerPC64) - case $GXX_VERSION in + case "$GXX_VERSION" in gcc*) dnl Tune for this processor CXXFLAGSG="$CXXFLAGSG -maix64" @@ -899,7 +899,7 @@ AC_DEFUN(DEAL_II_CHECK_CPU_OPTIMIZATIONS, dnl LDFLAGS="$LDFLAGS -maix64" dnl And we must always link with pthreads - LIBS="$LIBS -lpthread + LIBS="$LIBS -lpthread" ;; esac ;; diff --git a/deal.II/configure b/deal.II/configure index b371828ecb..da80c227d2 100755 --- a/deal.II/configure +++ b/deal.II/configure @@ -7236,15 +7236,15 @@ if test "${with_cpu+set}" = set; then withval="$with_cpu" withcpu=$withval else - withcpu= + withcpu="" fi; echo "$as_me:$LINENO: checking for CPU to optimize for" >&5 echo $ECHO_N "checking for CPU to optimize for... $ECHO_C" >&6 - case $withcpu in + case "$withcpu" in PowerPC64) echo "$as_me:$LINENO: result: PowerPC64" >&5 echo "${ECHO_T}PowerPC64" >&6 - case $GXX_VERSION in + case "$GXX_VERSION" in gcc*) CXXFLAGSG="$CXXFLAGSG -maix64" CXXFLAGSO="$CXXFLAGSO -maix64 -mpowerpc64 -mcpu=powerpc64 -mtune=powerpc64" @@ -7258,7 +7258,7 @@ echo "${ECHO_T}PowerPC64" >&6 AR="$AR -X 64" LDFLAGS="$LDFLAGS -maix64" - LIBS="$LIBS -lpthread + LIBS="$LIBS -lpthread" ;; esac ;; @@ -7266,6 +7266,7 @@ echo "${ECHO_T}PowerPC64" >&6 *) echo "$as_me:$LINENO: result: none given or not recognized" >&5 echo "${ECHO_T}none given or not recognized" >&6 + ;; esac -- 2.39.5