Skip to content

Commit

Permalink
release 9.10.2 from build 2822639
Browse files Browse the repository at this point in the history
  • Loading branch information
dsouders committed Jun 16, 2015
1 parent 0696234 commit 7bac35f
Show file tree
Hide file tree
Showing 41 changed files with 2,123 additions and 5,907 deletions.
4,912 changes: 160 additions & 4,752 deletions open-vm-tools/ChangeLog

Large diffs are not rendered by default.

31 changes: 10 additions & 21 deletions open-vm-tools/NEWS
Original file line number Diff line number Diff line change
@@ -1,31 +1,20 @@
open-vm-tools 2015.03.12 changes:
* vgauth added.
open-vm-tools 2015.06.15 changes:
* Various compilation fixes.

* deploypkg added.
* vmxnet is disabled for kernels 3.3 and above.

* guest proxycerttool added.
* vmhgfs is disabled for kernels 3.17 and above.

* hgfs and vmci/vsock fixes.
* Fixes for building on FreeBSD, see build instructions
in ChangeLog.

* asyncsocket enhancements.
* Added a "-h" option to vgauth.

* various library fixes and improvements.
* Work around an NFS bug by retrying on ESTALE.

* locking and logging fixes and improvements.
* Retry sending vmbackup event with elevated privileges.

* foundry fixes.

* vm-support script fixes.


open-vm-tools 2013.09.16 changes:
* HGFS client and server improvements.

* Fixes for HGFS driver to compile with newer kernels.

* Tools demon now can use vsock to communicate with the host.

* Other fixes and cleanups.
* Thaw frozen file systems when snapshot commit fails.

open-vm-tools 2013.04.16 changes:
* VMCI/VMSOCK Linux kernel modules are disabled for kernels
Expand Down
52 changes: 40 additions & 12 deletions open-vm-tools/autom4te.cache/output.0
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
@%:@! /bin/sh
@%:@ Guess values for system-dependent variables and create Makefiles.
@%:@ Generated by GNU Autoconf 2.61 for open-vm-tools 2015.01.29.
@%:@ Generated by GNU Autoconf 2.61 for open-vm-tools 9.10.2.
@%:@
@%:@ Report bugs to <open-vm-tools-devel@lists.sourceforge.net>.
@%:@
Expand Down Expand Up @@ -728,8 +728,8 @@ SHELL=${CONFIG_SHELL-/bin/sh}
# Identity of this package.
PACKAGE_NAME='open-vm-tools'
PACKAGE_TARNAME='open-vm-tools'
PACKAGE_VERSION='2015.01.29'
PACKAGE_STRING='open-vm-tools 2015.01.29'
PACKAGE_VERSION='9.10.2'
PACKAGE_STRING='open-vm-tools 9.10.2'
PACKAGE_BUGREPORT='open-vm-tools-devel@lists.sourceforge.net'

ac_unique_file="checkvm/checkvm.c"
Expand Down Expand Up @@ -966,6 +966,8 @@ ENABLE_GRABBITMQPROXY_TRUE
ENABLE_GRABBITMQPROXY_FALSE
ENABLE_VGAUTH_TRUE
ENABLE_VGAUTH_FALSE
HAVE_VSOCK_TRUE
HAVE_VSOCK_FALSE
HGFS_LIBS
TOOLS_VERSION
TARGET_OS
Expand Down Expand Up @@ -1518,7 +1520,7 @@ if test "$ac_init_help" = "long"; then
# Omit some internal or obsolete options to make the list less imposing.
# This message is too long to be a string in the A/UX 3.1 sh.
cat <<_ACEOF
\`configure' configures open-vm-tools 2015.01.29 to adapt to many kinds of systems.
\`configure' configures open-vm-tools 9.10.2 to adapt to many kinds of systems.

Usage: $0 [OPTION]... [VAR=VALUE]...

Expand Down Expand Up @@ -1592,7 +1594,7 @@ fi

if test -n "$ac_init_help"; then
case $ac_init_help in
short | recursive ) echo "Configuration of open-vm-tools 2015.01.29:";;
short | recursive ) echo "Configuration of open-vm-tools 9.10.2:";;
esac
cat <<\_ACEOF

Expand Down Expand Up @@ -1727,7 +1729,7 @@ fi
test -n "$ac_init_help" && exit $ac_status
if $ac_init_version; then
cat <<\_ACEOF
open-vm-tools configure 2015.01.29
open-vm-tools configure 9.10.2
generated by GNU Autoconf 2.61

Copyright (C) 1992, 1993, 1994, 1995, 1996, 1998, 1999, 2000, 2001,
Expand All @@ -1741,7 +1743,7 @@ cat >config.log <<_ACEOF
This file contains any messages produced by compilers while
running configure, to aid debugging if configure makes a mistake.

It was created by open-vm-tools $as_me 2015.01.29, which was
It was created by open-vm-tools $as_me 9.10.2, which was
generated by GNU Autoconf 2.61. Invocation command line was

$ $0 $@
Expand Down Expand Up @@ -2748,7 +2750,7 @@ fi

# Define the identity of the package.
PACKAGE='open-vm-tools'
VERSION='2015.01.29'
VERSION='9.10.2'


cat >>confdefs.h <<_ACEOF
Expand Down Expand Up @@ -35547,10 +35549,19 @@ if test "$os" = "linux"; then
CPPFLAGS="$CPPFLAGS -D_XOPEN_SOURCE=500"
CPPFLAGS="$CPPFLAGS -D_BSD_SOURCE"
CPPFLAGS="$CPPFLAGS -D_SVID_SOURCE"
CPPFLAGS="$CPPFLAGS -D_DEFAULT_SOURCE"

LIBVMTOOLS_LIBADD="$LIBVMTOOLS_LIBADD -lrt"

MODULES="$MODULES vmxnet vmhgfs"
# vmhgfs is not compiled for kernels 3.17 and newer
# Temporary short term limit until the newer kernel component is included
if test "$osVersion" -lt 317000; then
MODULES="$MODULES vmhgfs"
fi
# vmxnet is not supported for kernels 3.3.0 and newer
if test "$osVersion" -lt 303000; then
MODULES="$MODULES vmxnet"
fi
# See if we need vmci and vsock modules. Starting with 3.9 they made
# their way into mainline kernel.
if test "$osVersion" -lt 309000; then
Expand Down Expand Up @@ -35953,6 +35964,14 @@ else
ENABLE_VGAUTH_FALSE=
fi

if test "$os" = "linux"; then
HAVE_VSOCK_TRUE=
HAVE_VSOCK_FALSE='#'
else
HAVE_VSOCK_TRUE='#'
HAVE_VSOCK_FALSE=
fi


if test "$have_xsm" != "yes"; then
cat >>confdefs.h <<\_ACEOF
Expand Down Expand Up @@ -36397,6 +36416,13 @@ echo "$as_me: error: conditional \"ENABLE_VGAUTH\" was never defined.
Usually this means the macro was only invoked conditionally." >&2;}
{ (exit 1); exit 1; }; }
fi
if test -z "${HAVE_VSOCK_TRUE}" && test -z "${HAVE_VSOCK_FALSE}"; then
{ { echo "$as_me:$LINENO: error: conditional \"HAVE_VSOCK\" was never defined.
Usually this means the macro was only invoked conditionally." >&5
echo "$as_me: error: conditional \"HAVE_VSOCK\" was never defined.
Usually this means the macro was only invoked conditionally." >&2;}
{ (exit 1); exit 1; }; }
fi

: ${CONFIG_STATUS=./config.status}
ac_clean_files_save=$ac_clean_files
Expand Down Expand Up @@ -36697,7 +36723,7 @@ exec 6>&1
# report actual input values of CONFIG_FILES etc. instead of their
# values after options handling.
ac_log="
This file was extended by open-vm-tools $as_me 2015.01.29, which was
This file was extended by open-vm-tools $as_me 9.10.2, which was
generated by GNU Autoconf 2.61. Invocation command line was

CONFIG_FILES = $CONFIG_FILES
Expand Down Expand Up @@ -36744,7 +36770,7 @@ Report bugs to <bug-autoconf@gnu.org>."
_ACEOF
cat >>$CONFIG_STATUS <<_ACEOF
ac_cs_version="\\
open-vm-tools config.status 2015.01.29
open-vm-tools config.status 9.10.2
configured by $0, generated by GNU Autoconf 2.61,
with options \\"`echo "$ac_configure_args" | sed 's/^ //; s/[\\""\`\$]/\\\\&/g'`\\"

Expand Down Expand Up @@ -37284,6 +37310,8 @@ for ac_last_try in false false false false false :; do
ENABLE_GRABBITMQPROXY_FALSE!$ENABLE_GRABBITMQPROXY_FALSE$ac_delim
ENABLE_VGAUTH_TRUE!$ENABLE_VGAUTH_TRUE$ac_delim
ENABLE_VGAUTH_FALSE!$ENABLE_VGAUTH_FALSE$ac_delim
HAVE_VSOCK_TRUE!$HAVE_VSOCK_TRUE$ac_delim
HAVE_VSOCK_FALSE!$HAVE_VSOCK_FALSE$ac_delim
HGFS_LIBS!$HGFS_LIBS$ac_delim
TOOLS_VERSION!$TOOLS_VERSION$ac_delim
TARGET_OS!$TARGET_OS$ac_delim
Expand Down Expand Up @@ -37319,7 +37347,7 @@ LIB@&t@OBJS!$LIB@&t@OBJS$ac_delim
LTLIBOBJS!$LTLIBOBJS$ac_delim
_ACEOF

if test `sed -n "s/.*$ac_delim\$/X/p" conf$$subs.sed | grep -c X` = 36; then
if test `sed -n "s/.*$ac_delim\$/X/p" conf$$subs.sed | grep -c X` = 38; then
break
elif $ac_last_try; then
{ { echo "$as_me:$LINENO: error: could not make $CONFIG_STATUS" >&5
Expand Down
52 changes: 40 additions & 12 deletions open-vm-tools/autom4te.cache/output.1
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
@%:@! /bin/sh
@%:@ Guess values for system-dependent variables and create Makefiles.
@%:@ Generated by GNU Autoconf 2.61 for open-vm-tools 2015.01.29.
@%:@ Generated by GNU Autoconf 2.61 for open-vm-tools 9.10.2.
@%:@
@%:@ Report bugs to <open-vm-tools-devel@lists.sourceforge.net>.
@%:@
Expand Down Expand Up @@ -723,8 +723,8 @@ SHELL=${CONFIG_SHELL-/bin/sh}
# Identity of this package.
PACKAGE_NAME='open-vm-tools'
PACKAGE_TARNAME='open-vm-tools'
PACKAGE_VERSION='2015.01.29'
PACKAGE_STRING='open-vm-tools 2015.01.29'
PACKAGE_VERSION='9.10.2'
PACKAGE_STRING='open-vm-tools 9.10.2'
PACKAGE_BUGREPORT='open-vm-tools-devel@lists.sourceforge.net'

ac_unique_file="checkvm/checkvm.c"
Expand Down Expand Up @@ -965,6 +965,8 @@ ENABLE_GRABBITMQPROXY_TRUE
ENABLE_GRABBITMQPROXY_FALSE
ENABLE_VGAUTH_TRUE
ENABLE_VGAUTH_FALSE
HAVE_VSOCK_TRUE
HAVE_VSOCK_FALSE
HGFS_LIBS
TOOLS_VERSION
TARGET_OS
Expand Down Expand Up @@ -1515,7 +1517,7 @@ if test "$ac_init_help" = "long"; then
# Omit some internal or obsolete options to make the list less imposing.
# This message is too long to be a string in the A/UX 3.1 sh.
cat <<_ACEOF
\`configure' configures open-vm-tools 2015.01.29 to adapt to many kinds of systems.
\`configure' configures open-vm-tools 9.10.2 to adapt to many kinds of systems.

Usage: $0 [OPTION]... [VAR=VALUE]...

Expand Down Expand Up @@ -1589,7 +1591,7 @@ fi

if test -n "$ac_init_help"; then
case $ac_init_help in
short | recursive ) echo "Configuration of open-vm-tools 2015.01.29:";;
short | recursive ) echo "Configuration of open-vm-tools 9.10.2:";;
esac
cat <<\_ACEOF

Expand Down Expand Up @@ -1721,7 +1723,7 @@ fi
test -n "$ac_init_help" && exit $ac_status
if $ac_init_version; then
cat <<\_ACEOF
open-vm-tools configure 2015.01.29
open-vm-tools configure 9.10.2
generated by GNU Autoconf 2.61

Copyright (C) 1992, 1993, 1994, 1995, 1996, 1998, 1999, 2000, 2001,
Expand All @@ -1735,7 +1737,7 @@ cat >config.log <<_ACEOF
This file contains any messages produced by compilers while
running configure, to aid debugging if configure makes a mistake.

It was created by open-vm-tools $as_me 2015.01.29, which was
It was created by open-vm-tools $as_me 9.10.2, which was
generated by GNU Autoconf 2.61. Invocation command line was

$ $0 $@
Expand Down Expand Up @@ -2742,7 +2744,7 @@ fi

# Define the identity of the package.
PACKAGE='open-vm-tools'
VERSION='2015.01.29'
VERSION='9.10.2'


cat >>confdefs.h <<_ACEOF
Expand Down Expand Up @@ -30810,10 +30812,19 @@ if test "$os" = "linux"; then
CPPFLAGS="$CPPFLAGS -D_XOPEN_SOURCE=500"
CPPFLAGS="$CPPFLAGS -D_BSD_SOURCE"
CPPFLAGS="$CPPFLAGS -D_SVID_SOURCE"
CPPFLAGS="$CPPFLAGS -D_DEFAULT_SOURCE"

LIBVMTOOLS_LIBADD="$LIBVMTOOLS_LIBADD -lrt"

MODULES="$MODULES vmxnet vmhgfs"
# vmhgfs is not compiled for kernels 3.17 and newer
# Temporary short term limit until the newer kernel component is included
if test "$osVersion" -lt 317000; then
MODULES="$MODULES vmhgfs"
fi
# vmxnet is not supported for kernels 3.3.0 and newer
if test "$osVersion" -lt 303000; then
MODULES="$MODULES vmxnet"
fi
# See if we need vmci and vsock modules. Starting with 3.9 they made
# their way into mainline kernel.
if test "$osVersion" -lt 309000; then
Expand Down Expand Up @@ -31216,6 +31227,14 @@ else
ENABLE_VGAUTH_FALSE=
fi

if test "$os" = "linux"; then
HAVE_VSOCK_TRUE=
HAVE_VSOCK_FALSE='#'
else
HAVE_VSOCK_TRUE='#'
HAVE_VSOCK_FALSE=
fi


if test "$have_xsm" != "yes"; then
cat >>confdefs.h <<\_ACEOF
Expand Down Expand Up @@ -31667,6 +31686,13 @@ echo "$as_me: error: conditional \"ENABLE_VGAUTH\" was never defined.
Usually this means the macro was only invoked conditionally." >&2;}
{ (exit 1); exit 1; }; }
fi
if test -z "${HAVE_VSOCK_TRUE}" && test -z "${HAVE_VSOCK_FALSE}"; then
{ { echo "$as_me:$LINENO: error: conditional \"HAVE_VSOCK\" was never defined.
Usually this means the macro was only invoked conditionally." >&5
echo "$as_me: error: conditional \"HAVE_VSOCK\" was never defined.
Usually this means the macro was only invoked conditionally." >&2;}
{ (exit 1); exit 1; }; }
fi

: ${CONFIG_STATUS=./config.status}
ac_clean_files_save=$ac_clean_files
Expand Down Expand Up @@ -31967,7 +31993,7 @@ exec 6>&1
# report actual input values of CONFIG_FILES etc. instead of their
# values after options handling.
ac_log="
This file was extended by open-vm-tools $as_me 2015.01.29, which was
This file was extended by open-vm-tools $as_me 9.10.2, which was
generated by GNU Autoconf 2.61. Invocation command line was

CONFIG_FILES = $CONFIG_FILES
Expand Down Expand Up @@ -32014,7 +32040,7 @@ Report bugs to <bug-autoconf@gnu.org>."
_ACEOF
cat >>$CONFIG_STATUS <<_ACEOF
ac_cs_version="\\
open-vm-tools config.status 2015.01.29
open-vm-tools config.status 9.10.2
configured by $0, generated by GNU Autoconf 2.61,
with options \\"`echo "$ac_configure_args" | sed 's/^ //; s/[\\""\`\$]/\\\\&/g'`\\"

Expand Down Expand Up @@ -32902,6 +32928,8 @@ ENABLE_GRABBITMQPROXY_TRUE!$ENABLE_GRABBITMQPROXY_TRUE$ac_delim
ENABLE_GRABBITMQPROXY_FALSE!$ENABLE_GRABBITMQPROXY_FALSE$ac_delim
ENABLE_VGAUTH_TRUE!$ENABLE_VGAUTH_TRUE$ac_delim
ENABLE_VGAUTH_FALSE!$ENABLE_VGAUTH_FALSE$ac_delim
HAVE_VSOCK_TRUE!$HAVE_VSOCK_TRUE$ac_delim
HAVE_VSOCK_FALSE!$HAVE_VSOCK_FALSE$ac_delim
HGFS_LIBS!$HGFS_LIBS$ac_delim
TOOLS_VERSION!$TOOLS_VERSION$ac_delim
TARGET_OS!$TARGET_OS$ac_delim
Expand Down Expand Up @@ -32937,7 +32965,7 @@ LIB@&t@OBJS!$LIB@&t@OBJS$ac_delim
LTLIBOBJS!$LTLIBOBJS$ac_delim
_ACEOF

if test `sed -n "s/.*$ac_delim\$/X/p" conf$$subs.sed | grep -c X` = 40; then
if test `sed -n "s/.*$ac_delim\$/X/p" conf$$subs.sed | grep -c X` = 42; then
break
elif $ac_last_try; then
{ { echo "$as_me:$LINENO: error: could not make $CONFIG_STATUS" >&5
Expand Down
Loading

0 comments on commit 7bac35f

Please sign in to comment.