pkgsrc-Changes archive

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

CVS commit: pkgsrc/lang/python39



Module Name:    pkgsrc
Committed By:   jperkin
Date:           Mon Nov  8 16:00:16 UTC 2021

Modified Files:
        pkgsrc/lang/python39: Makefile

Log Message:
python39: Add -luuid on SunOS.

The configure test looks for only one particular symbol from the library,
which the native version on illumos does not have, to determine whether
libuuid should be linked against.  This results in failure later when
trying to use a different symbol the library.

Fixes native builds, and has no impact on pkgsrc builds.


To generate a diff of this commit:
cvs rdiff -u -r1.9 -r1.10 pkgsrc/lang/python39/Makefile

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

Modified files:

Index: pkgsrc/lang/python39/Makefile
diff -u pkgsrc/lang/python39/Makefile:1.9 pkgsrc/lang/python39/Makefile:1.10
--- pkgsrc/lang/python39/Makefile:1.9   Tue Jun 29 12:43:42 2021
+++ pkgsrc/lang/python39/Makefile       Mon Nov  8 16:00:16 2021
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.9 2021/06/29 12:43:42 adam Exp $
+# $NetBSD: Makefile,v 1.10 2021/11/08 16:00:16 jperkin Exp $
 
 .include "dist.mk"
 
@@ -43,8 +43,8 @@ PKG_CC=                       clang
 PKG_CXX=               clang++
 .endif
 
-# fdatasync()
-LIBS.SunOS+=           -lrt
+LIBS.SunOS+=           -lrt    # fdatasync()
+LIBS.SunOS+=           -luuid
 
 PY_VER_SUFFIX=         3.9
 



Home | Main Index | Thread Index | Old Index