finally fixed the solaris 11 build issues

This commit is contained in:
SJ
2012-08-10 14:46:21 +02:00
parent 81848059a8
commit acee4749e0
3 changed files with 24 additions and 8 deletions

14
configure vendored
View File

@ -2032,9 +2032,7 @@ ac_config_headers="$ac_config_headers piler-config.h"
CONFIGURE_PARAMS_FILE=params.h
rm -f $CONFIGURE_PARAMS_FILE
echo "#define CONFIGURE_PARAMS \"Build Date: "`date`"\\n\" \\" > $CONFIGURE_PARAMS_FILE
echo "\"Configure command: ./configure $@\"" >> $CONFIGURE_PARAMS_FILE
PARAMS=$@
ac_ext=c
ac_cpp='$CPP $CPPFLAGS'
@ -3432,6 +3430,16 @@ MAKE="make"
if test "$os" = "SunOS"; then MAKE="gmake"; fi
rm -f $CONFIGURE_PARAMS_FILE
if test "$os" = "SunOS"; then
echo "#define CONFIGURE_PARAMS \"Build Date: "`date`'\\n" \\' > $CONFIGURE_PARAMS_FILE
else
echo "#define CONFIGURE_PARAMS \"Build Date: "`date`"\\n\" \\" > $CONFIGURE_PARAMS_FILE
fi
echo "\"Configure command: ./configure $PARAMS\"" >> $CONFIGURE_PARAMS_FILE
SUBDIRS="src etc util init.d test"