pkgsrc-Changes archive

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

CVS commit: pkgsrc/graphics/feh



Module Name:    pkgsrc
Committed By:   nia
Date:           Mon Oct 28 09:27:53 UTC 2019

Modified Files:
        pkgsrc/graphics/feh: Makefile

Log Message:
feh: do not try to use strverscmp on !linux


To generate a diff of this commit:
cvs rdiff -u -r1.99 -r1.100 pkgsrc/graphics/feh/Makefile

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

Modified files:

Index: pkgsrc/graphics/feh/Makefile
diff -u pkgsrc/graphics/feh/Makefile:1.99 pkgsrc/graphics/feh/Makefile:1.100
--- pkgsrc/graphics/feh/Makefile:1.99   Thu Aug 22 12:23:17 2019
+++ pkgsrc/graphics/feh/Makefile        Mon Oct 28 09:27:53 2019
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.99 2019/08/22 12:23:17 ryoon Exp $
+# $NetBSD: Makefile,v 1.100 2019/10/28 09:27:53 nia Exp $
 
 DISTNAME=      feh-3.2.1
 PKGREVISION=   1
@@ -17,11 +17,13 @@ USE_TOOLS+= gmake
 
 # for alphasort(3)
 CFLAGS.NetBSD+=                -D_NETBSD_SOURCE
+
 # for undefined reference error from strverscmp(3)
 .include "../../mk/bsd.prefs.mk"
-.if ${OPSYS} == "NetBSD"
+.if ${OPSYS} != "Linux"
 BUILD_MAKE_FLAGS+=     verscmp=0
 .endif
+
 LDFLAGS.SunOS+=                -lnsl -lsocket
 
 BUILDLINK_DEPMETHOD.libXt?=    build



Home | Main Index | Thread Index | Old Index