pkgsrc-Changes archive

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

CVS commit: pkgsrc/archivers/gtar-base



Module Name:    pkgsrc
Committed By:   schmonz
Date:           Thu Jan 17 16:43:36 UTC 2019

Modified Files:
        pkgsrc/archivers/gtar-base: Makefile

Log Message:
On OpenBSD, "code using the sigwait() function must be compiled and
linked with the -pthread option".


To generate a diff of this commit:
cvs rdiff -u -r1.93 -r1.94 pkgsrc/archivers/gtar-base/Makefile

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

Modified files:

Index: pkgsrc/archivers/gtar-base/Makefile
diff -u pkgsrc/archivers/gtar-base/Makefile:1.93 pkgsrc/archivers/gtar-base/Makefile:1.94
--- pkgsrc/archivers/gtar-base/Makefile:1.93    Sun Mar 11 17:28:08 2018
+++ pkgsrc/archivers/gtar-base/Makefile Thu Jan 17 16:43:36 2019
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.93 2018/03/11 17:28:08 wiz Exp $
+# $NetBSD: Makefile,v 1.94 2019/01/17 16:43:36 schmonz Exp $
 
 .include "../../archivers/gtar/Makefile.common"
 
@@ -48,6 +48,10 @@ CONFIGURE_ENV+=              gt_cv_func_gnugettext3_
 
 CPPFLAGS.MirBSD+=      -Dstrtoimax=strtoll -Dstrtoumax=strtoull
 
+# From sigwait(3):
+CFLAGS.OpenBSD+=       -pthread
+LDFLAGS.OpenBSD+=      -pthread
+
 #bug 20453 in bug-gzip list, passed onto gnulib
 CONFIGURE_ENV.AIX+=    ac_cv_header_wctype_h=no
 



Home | Main Index | Thread Index | Old Index