pkgsrc-Changes archive

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

CVS commit: pkgsrc/math/nickle



Module Name:    pkgsrc
Committed By:   tnn
Date:           Thu Apr 20 10:10:09 UTC 2023

Modified Files:
        pkgsrc/math/nickle: Makefile

Log Message:
nickle: force pkgsrc readline on macOS

The configure tests are bungled and nickle tries to use
non-existent symbols with the built-in readline:

Undefined symbols for architecture arm64:
  "_rl_echo_signal_char", referenced from:
      _stop in main.o
  "_rl_reset_after_signal", referenced from:
      _stop in main.o


To generate a diff of this commit:
cvs rdiff -u -r1.21 -r1.22 pkgsrc/math/nickle/Makefile

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

Modified files:

Index: pkgsrc/math/nickle/Makefile
diff -u pkgsrc/math/nickle/Makefile:1.21 pkgsrc/math/nickle/Makefile:1.22
--- pkgsrc/math/nickle/Makefile:1.21    Tue Apr 18 21:31:08 2023
+++ pkgsrc/math/nickle/Makefile Thu Apr 20 10:10:09 2023
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.21 2023/04/18 21:31:08 wiz Exp $
+ $NetBSD: Makefile,v 1.22 2023/04/20 10:10:09 tnn Exp $
 
 DISTNAME=      nickle-2.91
 CATEGORIES=    math lang
@@ -16,5 +16,11 @@ CONFIGURE_ENV+=      ac_cv_path_DOCBOOK2PDF=
 
 TEST_TARGET=   check
 
+.include "../../mk/bsd.prefs.mk"
+
+.if ${OPSYS} == "Darwin"
+.include "../../devel/readline/buildlink3.mk"
+.else
 .include "../../mk/readline.buildlink3.mk"
+.endif
 .include "../../mk/bsd.pkg.mk"



Home | Main Index | Thread Index | Old Index