diff options
author | tnn <tnn@pkgsrc.org> | 2020-03-22 12:42:41 +0000 |
---|---|---|
committer | tnn <tnn@pkgsrc.org> | 2020-03-22 12:42:41 +0000 |
commit | d36a09d89bd54135ff5db0b7ae578993a09f5c50 (patch) | |
tree | 785d6920656195a059a0d803217e2370d2a46ff1 /net/libiscsi | |
parent | 5aa0ffea0176ab18968dd48507d3ff7233614c19 (diff) | |
download | pkgsrc-d36a09d89bd54135ff5db0b7ae578993a09f5c50.tar.gz |
libiscsi: don't build ld_iscsi.so
It is Linux specific and since it is intended more as an example than
for actual use, we won't bother with conditional packaging here.
Diffstat (limited to 'net/libiscsi')
-rw-r--r-- | net/libiscsi/distinfo | 3 | ||||
-rw-r--r-- | net/libiscsi/patches/patch-configure.ac | 15 |
2 files changed, 17 insertions, 1 deletions
diff --git a/net/libiscsi/distinfo b/net/libiscsi/distinfo index d02c89b8afe..d9b59046896 100644 --- a/net/libiscsi/distinfo +++ b/net/libiscsi/distinfo @@ -1,6 +1,7 @@ -$NetBSD: distinfo,v 1.1 2020/03/13 13:21:39 tnn Exp $ +$NetBSD: distinfo,v 1.2 2020/03/22 12:42:41 tnn Exp $ SHA1 (libiscsi-1.19.0.tar.gz) = 0c1aca9a473a915e6d221de4593b404f7078b22f RMD160 (libiscsi-1.19.0.tar.gz) = 2512d310dc23adb6e6edf46f29598e053ebd0e24 SHA512 (libiscsi-1.19.0.tar.gz) = 2c0e70b7ecf66204524e57edf557a014b5141a8819e5d663b6e50cb2e756fd634ae1db0b1ca6915444d80a9babd54a82619bdd98726d16d4eeaf7b3c89cf3d53 Size (libiscsi-1.19.0.tar.gz) = 284969 bytes +SHA1 (patch-configure.ac) = 44b797fae92942ba6886b7ed5d158fd920aab9a5 diff --git a/net/libiscsi/patches/patch-configure.ac b/net/libiscsi/patches/patch-configure.ac new file mode 100644 index 00000000000..6f2ab2dde75 --- /dev/null +++ b/net/libiscsi/patches/patch-configure.ac @@ -0,0 +1,15 @@ +$NetBSD: patch-configure.ac,v 1.1 2020/03/22 12:42:41 tnn Exp $ + +Disable installation of bin/ld_iscsi.so + +--- configure.ac.orig 2019-07-13 22:04:44.000000000 +0000 ++++ configure.ac +@@ -169,7 +169,7 @@ if ! test "$ac_cv_have_cunit" = yes ; th + fi + AM_CONDITIONAL(ISCSITEST, [test "$ac_cv_have_cunit" = yes -a "$enable_shared" = "yes"]) + +-AM_CONDITIONAL(LD_ISCSI, [expr "(" "$host_os" : "linux" ")" "&" "$enable_shared" "=" "yes"]) ++AM_CONDITIONAL(LD_ISCSI, [expr "(" "disabled" : "linux" ")" "&" "$enable_shared" "=" "yes"]) + + AC_CHECK_MEMBER([struct CU_SuiteInfo.pSetUpFunc], + [AC_DEFINE([HAVE_CU_SUITEINFO_PSETUPFUNC], 1, |