Makefile.am (davfs2-1.6.1) | : | Makefile.am (davfs2-1.7.0) | ||
---|---|---|---|---|
skipping to change at line 26 | skipping to change at line 26 | |||
## You should have received a copy of the GNU General Public License | ## You should have received a copy of the GNU General Public License | |||
## along with davfs2; if not, write to the Free Software Foundation, | ## along with davfs2; if not, write to the Free Software Foundation, | |||
## Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA. */ | ## Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA. */ | |||
## Process this file with automake to produce Makefile.in | ## Process this file with automake to produce Makefile.in | |||
localedir = $(datadir)/locale | localedir = $(datadir)/locale | |||
pkgsysconfdir = $(sysconfdir)/@PACKAGE@ | pkgsysconfdir = $(sysconfdir)/@PACKAGE@ | |||
pkglocalstatedir = $(dav_localstatedir)/mount.davfs | pkglocalstatedir = $(dav_localstatedir)/mount.davfs | |||
pkgsyscachedir = $(dav_syscachedir)/@PACKAGE@ | pkgsyscachedir = $(dav_syscachedir)/@PACKAGE@ | |||
ssbindir = @ssbindir@ | ||||
sbin_PROGRAMS = mount.davfs umount.davfs | sbin_PROGRAMS = mount.davfs umount.davfs | |||
mount_davfs_SOURCES = cache.c \ | mount_davfs_SOURCES = cache.c \ | |||
dav_fuse.c kernel_interface.c mount_davfs.c webdav.c \ | dav_fuse.c kernel_interface.c mount_davfs.c webdav.c \ | |||
cache.h defaults.h fuse_kernel.h \ | cache.h defaults.h fuse_kernel.h util.h \ | |||
kernel_interface.h mount_davfs.h webdav.h | kernel_interface.h mount_davfs.h webdav.h | |||
umount_davfs_SOURCES = umount_davfs.c defaults.h | umount_davfs_SOURCES = umount_davfs.c defaults.h | |||
AM_CFLAGS = -Wall -Werror=format-security \ | AM_CFLAGS = -Wall -Werror=format-security \ | |||
-fstack-protector-strong --param=ssp-buffer-size=4 | -fstack-protector-strong --param=ssp-buffer-size=4 | |||
DEFS = -DPROGRAM_NAME=\"mount.davfs\" \ | DEFS = -DPROGRAM_NAME=\"mount.davfs\" \ | |||
-DDAV_SYS_CONF_DIR=\"$(pkgsysconfdir)\" \ | -DDAV_SYS_CONF_DIR=\"$(pkgsysconfdir)\" \ | |||
-DDAV_LOCALSTATE_DIR=\"$(dav_localstatedir)\" \ | -DDAV_LOCALSTATE_DIR=\"$(dav_localstatedir)\" \ | |||
-DDAV_SYS_RUN=\"$(pkglocalstatedir)\" \ | -DDAV_SYS_RUN=\"$(pkglocalstatedir)\" \ | |||
-DDAV_SYS_CACHE=\"$(pkgsyscachedir)\" \ | -DDAV_SYS_CACHE=\"$(pkgsyscachedir)\" \ | |||
skipping to change at line 53 | skipping to change at line 52 | |||
-DDAV_CONFIG=\"$(PACKAGE).conf\" \ | -DDAV_CONFIG=\"$(PACKAGE).conf\" \ | |||
-DDAV_CERTS_DIR=\"certs\" \ | -DDAV_CERTS_DIR=\"certs\" \ | |||
-DDAV_CLICERTS_DIR=\"private\" \ | -DDAV_CLICERTS_DIR=\"private\" \ | |||
-DDAV_DATA_DIR=\"$(pkgdatadir)\" \ | -DDAV_DATA_DIR=\"$(pkgdatadir)\" \ | |||
-DLOCALEDIR=\"$(localedir)\" \ | -DLOCALEDIR=\"$(localedir)\" \ | |||
-DDAV_USER=\"$(dav_user)\" \ | -DDAV_USER=\"$(dav_user)\" \ | |||
-DDAV_GROUP=\"$(dav_group)\" \ | -DDAV_GROUP=\"$(dav_group)\" \ | |||
-D_FORTIFY_SOURCE=2 @DEFS@ | -D_FORTIFY_SOURCE=2 @DEFS@ | |||
LIBS = $(NEON_LIBS) @LIBS@ | LIBS = $(NEON_LIBS) @LIBS@ | |||
if HOST_TYPE_FREEBSD | ||||
LIBS += @LIBICONV@ | ||||
endif | ||||
install-exec-hook: | install-exec-hook: | |||
chmod u+s $(DESTDIR)$(sbindir)/mount.davfs; \ | chmod u+s $(DESTDIR)$(sbindir)/mount.davfs; | |||
if test "$(sbindir)" != "$(ssbindir)"; then \ | ||||
$(mkinstalldirs) $(DESTDIR)$(ssbindir); \ | ||||
$(LN_S) -f $(sbindir)/mount.davfs $(DESTDIR)$(ssbindir)/mount.davfs; \ | ||||
$(LN_S) -f $(sbindir)/umount.davfs $(DESTDIR)$(ssbindir)/umount.davfs; | ||||
\ | ||||
fi | ||||
uninstall-hook: | ||||
if test "$(sbindir)" != "$(ssbindir)"; then \ | ||||
rm -f $(DESTDIR)$(ssbindir)/mount.davfs; \ | ||||
rm -f $(DESTDIR)$(ssbindir)/umount.davfs; \ | ||||
fi | ||||
End of changes. 4 change blocks. | ||||
2 lines changed or deleted | 5 lines changed or added |