pkgsrc-Changes archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
CVS commit: pkgsrc/security/libgcrypt
Module Name:    pkgsrc
Committed By:   jperkin
Date:           Wed Nov  6 11:14:15 UTC 2024
Modified Files:
        pkgsrc/security/libgcrypt: Makefile
Log Message:
libgcrypt: Disable ASM on all Darwin.
It completely breaks on x86_64 as well as arm64.  Bump PKGREVISION.
To generate a diff of this commit:
cvs rdiff -u -r1.113 -r1.114 pkgsrc/security/libgcrypt/Makefile
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: pkgsrc/security/libgcrypt/Makefile
diff -u pkgsrc/security/libgcrypt/Makefile:1.113 pkgsrc/security/libgcrypt/Makefile:1.114
--- pkgsrc/security/libgcrypt/Makefile:1.113    Sun Aug 25 10:40:35 2024
+++ pkgsrc/security/libgcrypt/Makefile  Wed Nov  6 11:14:15 2024
@@ -1,7 +1,7 @@
-# $NetBSD: Makefile,v 1.113 2024/08/25 10:40:35 js Exp $
+# $NetBSD: Makefile,v 1.114 2024/11/06 11:14:15 jperkin Exp $
 
 DISTNAME=      libgcrypt-1.11.0
-PKGREVISION=   1
+PKGREVISION=   2
 CATEGORIES=    security
 MASTER_SITES=  https://gnupg.org/ftp/gcrypt/libgcrypt/
 EXTRACT_SUFX=  .tar.bz2
@@ -45,14 +45,12 @@ CONFIGURE_ARGS+=    GPGRT_CONFIG=${CROSS_DE
 CONFIGURE_ARGS+=       GPG_ERROR_CONFIG=${CROSS_DESTDIR:Q}${LOCALBASE}/bin/gpg-error-config
 .endif
 
-.if ${OPSYS} == "Darwin" && ${OPSYS_VERSION} < 100500
-.  include "../../devel/macports-legacy-support/buildlink3.mk"
-.endif
-
-.if ${MACHINE_PLATFORM:MDarwin-*-aarch64}
-# Their ASM is broken on Darwin/AArch64 and leads to undefined symbols at
-# runtime.
+.if ${OPSYS} == "Darwin"
+# Their ASM is broken on Darwin and leads to undefined symbols at runtime.
 CONFIGURE_ARGS+=       --disable-asm
+.  if ${OPSYS_VERSION} < 100500
+.    include "../../devel/macports-legacy-support/buildlink3.mk"
+.  endif
 .endif
 
 .if ${MACHINE_PLATFORM:MDarwin-*-powerpc}
Home |
Main Index |
Thread Index |
Old Index