mirror of
https://bitbucket.org/jsuto/piler.git
synced 2024-11-07 23:21:59 +01:00
finally fixed the solaris 11 build issues
This commit is contained in:
parent
81848059a8
commit
acee4749e0
4
aclocal.m4
vendored
4
aclocal.m4
vendored
@ -13,8 +13,8 @@
|
|||||||
|
|
||||||
m4_ifndef([AC_AUTOCONF_VERSION],
|
m4_ifndef([AC_AUTOCONF_VERSION],
|
||||||
[m4_copy([m4_PACKAGE_VERSION], [AC_AUTOCONF_VERSION])])dnl
|
[m4_copy([m4_PACKAGE_VERSION], [AC_AUTOCONF_VERSION])])dnl
|
||||||
m4_if(m4_defn([AC_AUTOCONF_VERSION]), [2.65],,
|
m4_if(m4_defn([AC_AUTOCONF_VERSION]), [2.68],,
|
||||||
[m4_warning([this file was generated for autoconf 2.65.
|
[m4_warning([this file was generated for autoconf 2.68.
|
||||||
You have another version of autoconf. It may work, but is not guaranteed to.
|
You have another version of autoconf. It may work, but is not guaranteed to.
|
||||||
If you have problems, you may need to regenerate the build system entirely.
|
If you have problems, you may need to regenerate the build system entirely.
|
||||||
To do so, use the procedure documented by the package, typically `autoreconf'.])])
|
To do so, use the procedure documented by the package, typically `autoreconf'.])])
|
||||||
|
14
configure
vendored
14
configure
vendored
@ -2032,9 +2032,7 @@ ac_config_headers="$ac_config_headers piler-config.h"
|
|||||||
|
|
||||||
CONFIGURE_PARAMS_FILE=params.h
|
CONFIGURE_PARAMS_FILE=params.h
|
||||||
|
|
||||||
rm -f $CONFIGURE_PARAMS_FILE
|
PARAMS=$@
|
||||||
echo "#define CONFIGURE_PARAMS \"Build Date: "`date`"\\n\" \\" > $CONFIGURE_PARAMS_FILE
|
|
||||||
echo "\"Configure command: ./configure $@\"" >> $CONFIGURE_PARAMS_FILE
|
|
||||||
|
|
||||||
ac_ext=c
|
ac_ext=c
|
||||||
ac_cpp='$CPP $CPPFLAGS'
|
ac_cpp='$CPP $CPPFLAGS'
|
||||||
@ -3432,6 +3430,16 @@ MAKE="make"
|
|||||||
|
|
||||||
if test "$os" = "SunOS"; then MAKE="gmake"; fi
|
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"
|
SUBDIRS="src etc util init.d test"
|
||||||
|
|
||||||
|
|
||||||
|
14
configure.in
14
configure.in
@ -4,9 +4,7 @@ AC_CONFIG_HEADER(piler-config.h)
|
|||||||
|
|
||||||
CONFIGURE_PARAMS_FILE=params.h
|
CONFIGURE_PARAMS_FILE=params.h
|
||||||
|
|
||||||
rm -f $CONFIGURE_PARAMS_FILE
|
PARAMS=$@
|
||||||
echo "#define CONFIGURE_PARAMS \"Build Date: "`date`"\\n\" \\" > $CONFIGURE_PARAMS_FILE
|
|
||||||
echo "\"Configure command: ./configure $@\"" >> $CONFIGURE_PARAMS_FILE
|
|
||||||
|
|
||||||
dnl Checks for programs.
|
dnl Checks for programs.
|
||||||
AC_PROG_CC
|
AC_PROG_CC
|
||||||
@ -58,6 +56,16 @@ MAKE="make"
|
|||||||
|
|
||||||
if test "$os" = "SunOS"; then MAKE="gmake"; fi
|
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
|
||||||
|
|
||||||
|
|
||||||
dnl SUBDIRS="src etc util perl init.d templates history contrib/stat"
|
dnl SUBDIRS="src etc util perl init.d templates history contrib/stat"
|
||||||
SUBDIRS="src etc util init.d test"
|
SUBDIRS="src etc util init.d test"
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user