diff options
author | Jun Kuriyama <kuriyama@FreeBSD.org> | 2002-05-27 23:16:06 +0000 |
---|---|---|
committer | Jun Kuriyama <kuriyama@FreeBSD.org> | 2002-05-27 23:16:06 +0000 |
commit | d714bbec5acb4aff7d0c7dad6339ae469a04becd (patch) | |
tree | e965e638a7a89b9362c26f93e09a80e36753f862 /security/gnupg | |
parent | 16d03a1f8298b389744eb26156b854cf6e53856f (diff) |
Use i586 optimized asm code for msi when i586 over CPUTYPE is set in
/etc/make.conf.
Submitted by: <skrueger@europe.com>
Notes
Notes:
svn path=/head/; revision=60150
Diffstat (limited to 'security/gnupg')
-rw-r--r-- | security/gnupg/Makefile | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/security/gnupg/Makefile b/security/gnupg/Makefile index 7e7c849380b7..5a51f94047f5 100644 --- a/security/gnupg/Makefile +++ b/security/gnupg/Makefile @@ -19,7 +19,10 @@ LIB_DEPENDS= intl.2:${PORTSDIR}/devel/gettext USE_GMAKE= YES GNU_CONFIGURE= YES -CONFIGURE_TARGET= +CONFIGURE_TARGET= --build ${MACHINE_ARCH}-portbld-freebsd${OSREL} +.if ${MACHINE_CPU:Mi586} +MACHINE_ARCH= i586 +.endif CFLAGS:= ${CFLAGS:S/-pipe//g} MAN1= gpg.1 gpgv.1 |