pkgsrc-Changes archive

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

CVS commit: pkgsrc/emulators/simh



Module Name:    pkgsrc
Committed By:   maya
Date:           Thu Jun  6 13:02:29 UTC 2019

Modified Files:
        pkgsrc/emulators/simh: Makefile

Log Message:
simh: fix building on debian 9.9.

Need -lm for floor and others. Need -pthread for sem_timedwait.


To generate a diff of this commit:
cvs rdiff -u -r1.50 -r1.51 pkgsrc/emulators/simh/Makefile

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

Modified files:

Index: pkgsrc/emulators/simh/Makefile
diff -u pkgsrc/emulators/simh/Makefile:1.50 pkgsrc/emulators/simh/Makefile:1.51
--- pkgsrc/emulators/simh/Makefile:1.50 Mon Sep 24 14:12:28 2018
+++ pkgsrc/emulators/simh/Makefile      Thu Jun  6 13:02:29 2019
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.50 2018/09/24 14:12:28 gson Exp $
+# $NetBSD: Makefile,v 1.51 2019/06/06 13:02:29 maya Exp $
 
 DISTNAME=      simh-4.0.0
 PKGNAME=       simh-4.0.0.20180919
@@ -34,6 +34,8 @@ CFLAGS+=      -fforce-addr
 CFLAGS.SunOS+= -DBSD_COMP
 LDFLAGS.SunOS+=        -lm
 
+LDFLAGS.Linux+=        -lm -pthread
+
 INSTALLATION_DIRS=     bin share/simh share/doc/simh
 
 MAKE_FILE=             makefile



Home | Main Index | Thread Index | Old Index