pkgsrc-Changes archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

CVS commit: pkgsrc/x11/vte3



Module Name:    pkgsrc
Committed By:   nia
Date:           Sun Oct 25 13:15:43 UTC 2020

Modified Files:
        pkgsrc/x11/vte3: Makefile

Log Message:
vte3: Disable systemd support explicitly.

vte3 assumes Linux has systemd by default, so if you attempt to build
this package on a Linux distribution without systemd, it will fail to
find libsystemd and error out.


To generate a diff of this commit:
cvs rdiff -u -r1.30 -r1.31 pkgsrc/x11/vte3/Makefile

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: pkgsrc/x11/vte3/Makefile
diff -u pkgsrc/x11/vte3/Makefile:1.30 pkgsrc/x11/vte3/Makefile:1.31
--- pkgsrc/x11/vte3/Makefile:1.30       Tue Oct  6 19:51:19 2020
+++ pkgsrc/x11/vte3/Makefile    Sun Oct 25 13:15:43 2020
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.30 2020/10/06 19:51:19 wiz Exp $
+# $NetBSD: Makefile,v 1.31 2020/10/25 13:15:43 nia Exp $
 
 DISTNAME=      vte-0.60.3
 PKGNAME=       ${DISTNAME:S/vte/vte3/}
@@ -21,6 +21,10 @@ USE_LANGUAGES=               c c++17
 # for c++17
 GCC_REQD+=             7
 
+# Otherwise, this will fail on Linux distributions that don't
+# have libsystemd.
+MESON_ARGS+=           -D_systemd=false
+
 .include "../../devel/meson/build.mk"
 .include "../../converters/fribidi/buildlink3.mk"
 .include "../../devel/glib2/buildlink3.mk"



Home | Main Index | Thread Index | Old Index