From: Florian Forster Date: Sat, 9 May 2009 09:08:48 +0000 (+0200) Subject: configure.in: Hint towards the CFLAGS instead of using $CC. X-Git-Tag: collectd-4.5.4~1 X-Git-Url: https://git.tokkee.org/?p=collectd.git;a=commitdiff_plain;h=39f3ecb1fc15fb1978c7ac6ccc1c6a9091785604 configure.in: Hint towards the CFLAGS instead of using $CC. --- diff --git a/configure.in b/configure.in index e377fe99..2c51d21a 100644 --- a/configure.in +++ b/configure.in @@ -262,9 +262,9 @@ then hint_64="" if test "x$GCC" = "xyes" then - hint_64="CC='gcc -m64'" + hint_64="CFLAGS='-m64'" else - hint_64="CC='cc -xarch=v9'" + hint_64="CFLAGS='-xarch=v9'" fi AC_MSG_NOTICE([Solaris detected and sys/swap.h not usable. Try building a 64-bit binary ($hint_64 ./configure).]) fi