diff options
author | William McArthur <sandymac@gentoo.org> | 2002-06-23 01:20:54 +0000 |
---|---|---|
committer | William McArthur <sandymac@gentoo.org> | 2002-06-23 01:20:54 +0000 |
commit | af71c0067a54a066c6ad389be7cf553ec5e8bf16 (patch) | |
tree | 0f6a529d68c7877ffbe994c361fc77a77e1c2cd4 /net-mail | |
parent | update to 3.23.51; latest stable release (diff) | |
download | historical-af71c0067a54a066c6ad389be7cf553ec5e8bf16.tar.gz historical-af71c0067a54a066c6ad389be7cf553ec5e8bf16.tar.bz2 historical-af71c0067a54a066c6ad389be7cf553ec5e8bf16.zip |
Fixed a type where -ssl should have been -lssl
Diffstat (limited to 'net-mail')
-rw-r--r-- | net-mail/sendmail/ChangeLog | 6 | ||||
-rw-r--r-- | net-mail/sendmail/sendmail-8.12.4-r1.ebuild | 4 |
2 files changed, 7 insertions, 3 deletions
diff --git a/net-mail/sendmail/ChangeLog b/net-mail/sendmail/ChangeLog index e8d8e23af2fc..6e30b2a93607 100644 --- a/net-mail/sendmail/ChangeLog +++ b/net-mail/sendmail/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for <CATEGORY>/<PACKAGE_NAME> # Copyright 2002 Gentoo Technologies, Inc.; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-mail/sendmail/ChangeLog,v 1.2 2002/06/12 19:19:11 g2boojum Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-mail/sendmail/ChangeLog,v 1.3 2002/06/23 01:20:54 sandymac Exp $ + + 22 Jun 2002; William McArthur <sandymac@gentoo.org> sendmail-8.12.4-r1.ebuild: + + Fixed a type in the use ssl section, "-ssl" should have been "-lssl" *sendmail-8.12.4-r1 (12 June 2002) diff --git a/net-mail/sendmail/sendmail-8.12.4-r1.ebuild b/net-mail/sendmail/sendmail-8.12.4-r1.ebuild index 13e00d185b11..d731787123f2 100644 --- a/net-mail/sendmail/sendmail-8.12.4-r1.ebuild +++ b/net-mail/sendmail/sendmail-8.12.4-r1.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2002 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-mail/sendmail/sendmail-8.12.4-r1.ebuild,v 1.1 2002/06/12 19:15:55 g2boojum Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-mail/sendmail/sendmail-8.12.4-r1.ebuild,v 1.2 2002/06/23 01:20:54 sandymac Exp $ DESCRIPTION="Widely-used Mail Transport Agent (MTA)." HOMEPAGE="http://www.sendmail.org" @@ -73,7 +73,7 @@ src_unpack() { use ssl && confENVDEF="${confENVDEF} -DSTARTTLS" \ && confLIBS="${confLIBS} -lssl -lcrypto" \ && conf_sendmail_ENVDEF="${conf_sendmail_ENVDEF} -DSTARTTLS" \ - && conf_sendmail_LIBS="${conf_sendmail_LIBS} -ssl -lcrypto" + && conf_sendmail_LIBS="${conf_sendmail_LIBS} -lssl -lcrypto" use ldap && confMAPDEF="${confMAPDEF} -DLDAPMAP" \ && confLIBS="${confLIBS} -lldap -llber" use gdbm && confLIBS="${confLIBS} -lgdbm" |