Diff for /ansh/configure.in between versions 1.2.2.1 and 1.2.2.2

version 1.2.2.1, 2011/10/17 20:15:21 version 1.2.2.2, 2011/10/18 08:27:54
Line 41  AC_FUNC_FORK Line 41  AC_FUNC_FORK
 AC_FUNC_MALLOC  AC_FUNC_MALLOC
 AC_CHECK_FUNCS([dup2 endpwent gethostbyname memset select socket strerror strtol])  AC_CHECK_FUNCS([dup2 endpwent gethostbyname memset select socket strerror strtol])
   
   STATIC="no"
   AC_MSG_CHECKING(Static build for ansh)
   AC_ARG_ENABLE(static,
           [  --enable-static         Static build for ansh software ],
           [ STATIC=$enableval
                   case "$enableval" in
                           yes)
                                   LDFLAGS="-static ${LDFLAGS}"
                                   ;;
                           *)
                                   ;;
                   esac ],)
   AC_MSG_RESULT($STATIC)
   
 AC_CONFIG_FILES([Makefile  AC_CONFIG_FILES([Makefile
                  bin/Makefile                   bin/Makefile
                  inc/Makefile                   inc/Makefile

Removed from v.1.2.2.1  
changed lines
  Added in v.1.2.2.2


FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>