41 lines
1.9 KiB
Diff
41 lines
1.9 KiB
Diff
|
diff -up rpcbind-1.2.5/configure.ac.orig rpcbind-1.2.5/configure.ac
|
||
|
--- rpcbind-1.2.5/configure.ac.orig 2018-08-15 10:51:19.000000000 -0400
|
||
|
+++ rpcbind-1.2.5/configure.ac 2018-08-15 11:14:23.933946110 -0400
|
||
|
@@ -56,6 +56,17 @@ AC_ARG_WITH([systemdsystemunitdir],
|
||
|
fi
|
||
|
AM_CONDITIONAL(SYSTEMD, [test -n "$with_systemdsystemunitdir" -a "x$with_systemdsystemunitdir" != xno ])
|
||
|
|
||
|
+AC_ARG_WITH([systemdtmpfilesdir],
|
||
|
+ AS_HELP_STRING([--with-systemdtmpfilesdir=DIR], [Directory for systemd tmp files]),
|
||
|
+ [], [with_systemdtmpfilesdir=$($PKG_CONFIG --variable=tmpfilesdir systemd)])
|
||
|
+ if test "x$with_systemdtmpfilesdir" != xno; then
|
||
|
+ AC_SUBST([systemdtmpfilesdir], [$with_systemdtmpfilesdir])
|
||
|
+ PKG_CHECK_MODULES([SYSTEMD], [libsystemd], [],
|
||
|
+ [PKG_CHECK_MODULES([SYSTEMD], [libsystemd-daemon], [],
|
||
|
+ AC_MSG_ERROR([libsystemd support requested but found]))])
|
||
|
+ fi
|
||
|
+AM_CONDITIONAL(SYSTEMD, [test -n "$with_systemdtmpfilesdir" -a "x$with_systemdtmpfilesdir" != xno ])
|
||
|
+
|
||
|
AS_IF([test x$enable_libwrap = xyes], [
|
||
|
AC_CHECK_LIB([wrap], [hosts_access], ,
|
||
|
AC_MSG_ERROR([libwrap support requested but unable to find libwrap]))
|
||
|
diff -up rpcbind-1.2.5/Makefile.am.orig rpcbind-1.2.5/Makefile.am
|
||
|
--- rpcbind-1.2.5/Makefile.am.orig 2018-08-15 10:51:19.000000000 -0400
|
||
|
+++ rpcbind-1.2.5/Makefile.am 2018-08-15 11:14:23.934946111 -0400
|
||
|
@@ -59,6 +59,9 @@ rpcbind_LDADD += $(SYSTEMD_LIBS)
|
||
|
systemdsystemunit_DATA = \
|
||
|
systemd/rpcbind.service \
|
||
|
systemd/rpcbind.socket
|
||
|
+
|
||
|
+systemdtmpfiles_DATA = \
|
||
|
+ systemd/rpcbind.conf
|
||
|
endif
|
||
|
|
||
|
rpcinfo_SOURCES = src/rpcinfo.c
|
||
|
diff -up rpcbind-1.2.5/systemd/rpcbind.conf.orig rpcbind-1.2.5/systemd/rpcbind.conf
|
||
|
--- rpcbind-1.2.5/systemd/rpcbind.conf.orig 2018-08-15 11:14:23.934946111 -0400
|
||
|
+++ rpcbind-1.2.5/systemd/rpcbind.conf 2018-08-15 11:14:23.934946111 -0400
|
||
|
@@ -0,0 +1,2 @@
|
||
|
+#Type Path Mode UID GID Age Argument
|
||
|
+D /run/rpcbind 0700 rpc rpc - -
|