~ubuntu-branches/ubuntu/quantal/open-vm-tools/quantal-201210021442

« back to all changes in this revision

Viewing changes to hgfsmounter/Makefile.in

  • Committer: Bazaar Package Importer
  • Author(s): Serge Hallyn
  • Date: 2011-03-31 14:20:05 UTC
  • mfrom: (1.4.3 upstream)
  • Revision ID: james.westby@ubuntu.com-20110331142005-3n9red91p7ogkweo
Tags: 2011.03.28-387002-0ubuntu1
* Merge latest upstream git tag.  This has the unlocked_ioctl change
  needed to fix dkms build failures (LP: #727342)
* Changes in debian/rules:
  - work around a bug in toolbox/Makefile, where install-exec-hook is
    not happening.  This needs to get fixed the right way.
  - don't install 'vmware-user' which seems to no longer exist
  - move /etc/xdg into open-vm-toolbox (which should be done using .install)
* debian/open-vm-tools.init: add 'modprobe [-r] vmblock'. (LP: #332323)
* debian/rules and debian/open-vm-toolbox.lintian-overrides:
  - Make vmware-user-suid-wrapper suid-root (LP: #332323)

Show diffs side-by-side

added added

removed removed

Lines of Context:
66
66
CONFIG_CLEAN_VPATH_FILES =
67
67
am__installdirs = "$(DESTDIR)$(sbindir)"
68
68
PROGRAMS = $(sbin_PROGRAMS)
69
 
am_mount_vmhgfs_OBJECTS = hgfsmounter.$(OBJEXT) \
70
 
        stub-user-util.$(OBJEXT)
 
69
am_mount_vmhgfs_OBJECTS = hgfsmounter.$(OBJEXT)
71
70
mount_vmhgfs_OBJECTS = $(am_mount_vmhgfs_OBJECTS)
72
 
mount_vmhgfs_DEPENDENCIES = ../lib/misc/libMisc.la \
73
 
        ../lib/string/libString.la \
 
71
mount_vmhgfs_DEPENDENCIES = ../lib/string/libString.la \
74
72
        ../lib/panicDefault/libPanicDefault.la \
75
 
        ../lib/panic/libPanic.la ../lib/stubs/libStubs.la
 
73
        ../lib/panic/libPanic.la ../lib/lock/libLock.la \
 
74
        ../lib/misc/libMisc.la ../lib/stubs/libStubs.la
76
75
DEFAULT_INCLUDES = -I.@am__isrc@
77
76
depcomp = $(SHELL) $(top_srcdir)/config/depcomp
78
77
am__depfiles_maybe = depfiles
127
126
FGREP = @FGREP@
128
127
FUSE_CPPFLAGS = @FUSE_CPPFLAGS@
129
128
FUSE_LIBS = @FUSE_LIBS@
 
129
GIO_CPPFLAGS = @GIO_CPPFLAGS@
 
130
GIO_LIBS = @GIO_LIBS@
130
131
GLIB2_CPPFLAGS = @GLIB2_CPPFLAGS@
131
132
GLIB2_LIBS = @GLIB2_LIBS@
132
133
GMODULE_CPPFLAGS = @GMODULE_CPPFLAGS@
142
143
GTK_LIBS = @GTK_LIBS@
143
144
HAVE_DOT = @HAVE_DOT@
144
145
HAVE_PKG_CONFIG = @HAVE_PKG_CONFIG@
 
146
HGFS_LIBS = @HGFS_LIBS@
145
147
ICU_CPPFLAGS = @ICU_CPPFLAGS@
146
148
ICU_LIBS = @ICU_LIBS@
147
149
INSTALL = @INSTALL@
149
151
INSTALL_PROGRAM = @INSTALL_PROGRAM@
150
152
INSTALL_SCRIPT = @INSTALL_SCRIPT@
151
153
INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@
 
154
INSTVMSG = @INSTVMSG@
152
155
KERNEL_RELEASE = @KERNEL_RELEASE@
153
156
LD = @LD@
154
157
LDFLAGS = @LDFLAGS@
161
164
LIB_AUTH_CPPFLAGS = @LIB_AUTH_CPPFLAGS@
162
165
LIB_IMPERSONATE_CPPFLAGS = @LIB_IMPERSONATE_CPPFLAGS@
163
166
LIB_USER_CPPFLAGS = @LIB_USER_CPPFLAGS@
 
167
LINUXINCLUDE = @LINUXINCLUDE@
164
168
LIPO = @LIPO@
165
169
LN_S = @LN_S@
166
170
LTLIBOBJS = @LTLIBOBJS@
195
199
RANLIB = @RANLIB@
196
200
RPCGEN = @RPCGEN@
197
201
RPCGENFLAGS = @RPCGENFLAGS@
 
202
RPCGEN_WRAPPER = @RPCGEN_WRAPPER@
198
203
SED = @SED@
199
204
SET_MAKE = @SET_MAKE@
200
205
SHELL = @SHELL@
211
216
VMTOOLS_CPPFLAGS = @VMTOOLS_CPPFLAGS@
212
217
VMTOOLS_LIBS = @VMTOOLS_LIBS@
213
218
VMUSR_PLUGIN_INSTALLDIR = @VMUSR_PLUGIN_INSTALLDIR@
214
 
VMWARE_USER_CPPFLAGS = @VMWARE_USER_CPPFLAGS@
215
 
VMWARE_USER_LDADD = @VMWARE_USER_LDADD@
216
219
XDR_LIBS = @XDR_LIBS@
217
220
XMKMF = @XMKMF@
 
221
XSM_LIBS = @XSM_LIBS@
218
222
X_CFLAGS = @X_CFLAGS@
219
223
X_EXTRA_LIBS = @X_EXTRA_LIBS@
220
224
X_LIBS = @X_LIBS@
278
282
top_build_prefix = @top_build_prefix@
279
283
top_builddir = @top_builddir@
280
284
top_srcdir = @top_srcdir@
281
 
mount_vmhgfs_LDADD = ../lib/misc/libMisc.la ../lib/string/libString.la \
 
285
mount_vmhgfs_LDADD = ../lib/string/libString.la \
282
286
        ../lib/panicDefault/libPanicDefault.la \
283
 
        ../lib/panic/libPanic.la ../lib/stubs/libStubs.la
284
 
mount_vmhgfs_SOURCES = hgfsmounter.c stub-user-util.c
 
287
        ../lib/panic/libPanic.la ../lib/lock/libLock.la \
 
288
        ../lib/misc/libMisc.la ../lib/stubs/libStubs.la
 
289
mount_vmhgfs_SOURCES = hgfsmounter.c
285
290
all: all-am
286
291
 
287
292
.SUFFIXES:
370
375
        -rm -f *.tab.c
371
376
 
372
377
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/hgfsmounter.Po@am__quote@
373
 
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/stub-user-util.Po@am__quote@
374
378
 
375
379
.c.o:
376
380
@am__fastdepCC_TRUE@    $(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $<
607
611
@FREEBSD_TRUE@install-exec-hook:
608
612
@FREEBSD_TRUE@  mv $(DESTDIR)$(sbindir)/mount.vmhgfs \
609
613
@FREEBSD_TRUE@          $(DESTDIR)$(sbindir)/mount_vmhgfs
610
 
@FREEBSD_TRUE@@WITH_ROOT_PRIVILEGES_TRUE@       chmod u+s $(DESTDIR)$(sbindir)/mount_vmhgfs
611
614
@FREEBSD_TRUE@  -$(MKDIR_P) $(DESTDIR)/sbin
612
615
@FREEBSD_TRUE@  -$(LN_S) $(DESTDIR)$(sbindir)/mount_vmhgfs \
613
616
@FREEBSD_TRUE@          $(DESTDIR)/sbin/mount_vmhgfs &> /dev/null
614
617
@FREEBSD_TRUE@uninstall-hook:
615
618
@FREEBSD_TRUE@  rm -f $(DESTDIR)$(sbindir)/mount_vmhgfs
616
619
@FREEBSD_FALSE@install-exec-hook:
617
 
@FREEBSD_FALSE@@WITH_ROOT_PRIVILEGES_TRUE@      chmod u+s $(DESTDIR)$(sbindir)/mount.vmhgfs
618
620
@FREEBSD_FALSE@ -$(MKDIR_P) $(DESTDIR)/sbin
619
621
@FREEBSD_FALSE@ -$(LN_S) $(DESTDIR)$(sbindir)/mount.vmhgfs \
620
622
@FREEBSD_FALSE@         $(DESTDIR)/sbin/mount.vmhgfs &> /dev/null