Fixed solaris configure script generation errors
authorCosmin Ioiart <cioiart+dev@gmail.com>
Mon, 19 Mar 2012 09:54:57 +0000 (10:54 +0100)
committerCosmin Ioiart <cioiart+dev@gmail.com>
Mon, 19 Mar 2012 09:54:57 +0000 (10:54 +0100)
The brackets in configure.in and the changes in version-gen.sh are needed in order for the build.sh script to generate the configure script correctly. Else the generated script won't work.

configure.in
version-gen.sh

index 901f5f2..0ac908d 100644 (file)
@@ -1,5 +1,5 @@
 dnl Process this file with autoconf to produce a configure script.
-AC_INIT(collectd, m4_esyscmd(./version-gen.sh))
+AC_INIT(collectd, [m4_esyscmd(./version-gen.sh)])
 AC_CONFIG_SRCDIR(src/collectd.c)
 AC_CONFIG_HEADERS(src/config.h)
 AC_CONFIG_AUX_DIR([libltdl/config])
index 6147b59..23c471d 100755 (executable)
@@ -10,7 +10,7 @@ fi
 
 VERSION="`echo \"$VERSION\" | sed -e 's/-/./g'`"
 
-if test "x`uname -s`" = "xAIX" || test "x`uname -s`" = "xSunOS" ; then
+if test "x`uname -s`" = "xAIX" ; then
        echo "$VERSION\c"
 else 
        echo -n "$VERSION"