Skip to content

Commit

Permalink
Added namespace command line utility "vmware-namespace-cmd".
Browse files Browse the repository at this point in the history
  • Loading branch information
Uttam Gupta committed Feb 11, 2016
1 parent 8334002 commit df1031d
Show file tree
Hide file tree
Showing 8 changed files with 1,325 additions and 5 deletions.
1 change: 1 addition & 0 deletions open-vm-tools/ChangeLog
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
open-vm-tools 2016.02.11:
* Removed all Makefile.in and it can be regenerated by command "autoreconf -i".
* Added namespace command line utility "vmware-namespace-cmd".

open-vm-tools-10.0.5 build 3227882
* ae82fa6 [Bug 1526360] fix timestamp check
Expand Down
6 changes: 3 additions & 3 deletions open-vm-tools/LICENSE
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
LICENSE

open-vm-tools 10.0.0
Open-vm-tools v10.0.7

The Linux kernel modules are released under the GPL v2, a majority of the user level components are released under the LGPL v2.1, and the SVGA and mouse drivers are released under the X11 license.

Expand Down Expand Up @@ -231,7 +231,7 @@ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLI

========

open-vm-tools v10.0.0 includes a number of subcomponents with separate copyright notices and license terms. Your use of the source code for these subcomponents is subject to the terms and conditions of the following licenses.
Open-vm-tools v10.0.7 includes a number of subcomponents with separate copyright notices and license terms. Your use of the source code for these subcomponents is subject to the terms and conditions of the following licenses.



Expand Down Expand Up @@ -403,4 +403,4 @@ THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,

Except as contained in this notice, the name of a copyright holder shall not be used in advertising or otherwise to promote the sale, use or other dealings in these Data Files or Software without prior written authorization of the copyright holder.

[OPENVMTOOLS1000SS081015]
[OPENVMTOOLS1007CH021016]
1 change: 1 addition & 0 deletions open-vm-tools/Makefile.am
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,7 @@ if ENABLE_DEPLOYPKG
SUBDIRS += libDeployPkg
endif
SUBDIRS += rpctool
SUBDIRS += namespacetool
if ENABLE_GRABBITMQPROXY
SUBDIRS += guestproxycerttool
endif
Expand Down
1 change: 1 addition & 0 deletions open-vm-tools/NEWS
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
open-vm-tools 2016.02.11 changes:
* Removed all Makefile.in and it can be regenerated by command "autoreconf -i".
* Added namespace command line utility "vmware-namespace-cmd".
open-vm-tools 2015.11.10 changes:
* [vgauth] fix timestamp check
* [libresolutionSet.so] Add an error handler to X11 resolutionSet
Expand Down
5 changes: 3 additions & 2 deletions open-vm-tools/configure.ac
Original file line number Diff line number Diff line change
Expand Up @@ -39,10 +39,10 @@
### Initialization
###

TOOLS_VERSION="10.0.5"
TOOLS_VERSION="10.0.7"
AC_INIT(
[open-vm-tools],
[10.0.5],
[10.0.7],
[open-vm-tools-devel@lists.sourceforge.net])

# In order to make this configure script auto-detect situations where
Expand Down Expand Up @@ -1332,6 +1332,7 @@ AC_CONFIG_FILES([ \
hgfsmounter/Makefile \
checkvm/Makefile \
rpctool/Makefile \
namespacetool/Makefile \
guestproxycerttool/Makefile \
vgauth/Makefile \
vgauth/lib/Makefile \
Expand Down
502 changes: 502 additions & 0 deletions open-vm-tools/namespacetool/COPYING

Large diffs are not rendered by default.

40 changes: 40 additions & 0 deletions open-vm-tools/namespacetool/Makefile.am
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
################################################################################
### Copyright (C) 2016 VMware, Inc. All rights reserved.
###
### This program is free software; you can redistribute it and/or modify
### it under the terms of version 2 of the GNU General Public License as
### published by the Free Software Foundation.
###
### This program is distributed in the hope that it will be useful,
### but WITHOUT ANY WARRANTY; without even the implied warranty of
### MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
### GNU General Public License for more details.
###
### You should have received a copy of the GNU General Public License
### along with this program; if not, write to the Free Software
### Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
################################################################################

bin_PROGRAMS = vmware-namespace-cmd

vmware_namespace_cmd_SOURCES =
vmware_namespace_cmd_SOURCES += namespacetool.c

vmware_namespace_cmd_CPPFLAGS =
vmware_namespace_cmd_CPPFLAGS += -DVMTOOLS_USE_GLIB
vmware_namespace_cmd_CPPFLAGS += @GLIB2_CPPFLAGS@
vmware_namespace_cmd_CPPFLAGS += -I$(top_srcdir)/libvmtools

vmware_namespace_cmd_LDADD =
vmware_namespace_cmd_LDADD += @VMTOOLS_LIBS@
vmware_namespace_cmd_LDADD += @GLIB2_LIBS@

if HAVE_ICU
vmware_namespace_cmd_LDADD += @ICU_LIBS@
vmware_namespace_cmd_LINK = $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) \
$(LIBTOOLFLAGS) --mode=link $(CXX) \
$(AM_CXXFLAGS) $(CXXFLAGS) $(AM_LDFLAGS) \
$(LDFLAGS) -o $@
else
vmware_namespace_cmd_LINK = $(LINK)
endif
Loading

0 comments on commit df1031d

Please sign in to comment.