efl121: Fix some PKG_DEVELOPER=yes warnings

This commit is contained in:
coypu 2018-09-09 21:48:25 +03:00
parent 713dde753b
commit c5018a438e
3 changed files with 28 additions and 0 deletions

View File

@ -4,3 +4,5 @@ SHA1 (efl-1.21.0.tar.xz) = 3bb687c635e20d8cd4e96d8be97ee9475b0c1bc0
RMD160 (efl-1.21.0.tar.xz) = 5a2c4cb98d52b473325f5eb34e6c762a34f8f151
SHA512 (efl-1.21.0.tar.xz) = 497735f518976d70b96023b013a6d821f6695fe56def2abf5bd1e1c7ad89d324428017d7909c7b73bfb332b811b5596592b105bb4c3d2f6a40929f1cefc2b789
Size (efl-1.21.0.tar.xz) = 71030532 bytes
SHA1 (patch-configure) = ad38a4bf4bcf647666e731faa141fe967d5758c3
SHA1 (patch-configure.ac) = 151236171b7231ed08dc67943067f1c68c3938ef

View File

@ -0,0 +1,13 @@
$NetBSD$
--- configure.orig 2018-08-17 21:49:57.000000000 +0000
+++ configure
@@ -28013,7 +28013,7 @@ if test "${with_systemdunitdir+set}" = s
withval=$with_systemdunitdir; USER_SESSION_DIR=${withval}
fi
-if test "$want_systemd" == "no"; then
+if test "$want_systemd" = "no"; then
have_systemd_user_session="no"
elif test -n "${USER_SESSION_DIR}"; then
have_systemd_user_session="yes"

View File

@ -0,0 +1,13 @@
$NetBSD$
--- configure.ac.orig 2018-08-17 21:48:52.000000000 +0000
+++ configure.ac
@@ -751,7 +751,7 @@ AC_SUBST(systemd_dbus_prefix)
AC_ARG_WITH([systemdunitdir],
AS_HELP_STRING([--with-systemdunitdir=DIR],[path to systemd user services directory]),
[USER_SESSION_DIR=${withval}])
-if test "$want_systemd" == "no"; then
+if test "$want_systemd" = "no"; then
have_systemd_user_session="no"
elif test -n "${USER_SESSION_DIR}"; then
have_systemd_user_session="yes"