diff options
author | Jeremy Huddleston <eradicator@gentoo.org> | 2004-07-05 06:30:58 +0000 |
---|---|---|
committer | Jeremy Huddleston <eradicator@gentoo.org> | 2004-07-05 06:30:58 +0000 |
commit | b0fc236a08b9ff9ab5ddc182c7b603b508d278a2 (patch) | |
tree | 0bf2a98de1ee18768e3f7d5e24a0c6a9a3c17377 /net-libs/libhttpd-persistent | |
parent | Added ~sparc. Stable x86, amd64. (diff) | |
download | historical-b0fc236a08b9ff9ab5ddc182c7b603b508d278a2.tar.gz historical-b0fc236a08b9ff9ab5ddc182c7b603b508d278a2.tar.bz2 historical-b0fc236a08b9ff9ab5ddc182c7b603b508d278a2.zip |
Added .o files to linking...
Diffstat (limited to 'net-libs/libhttpd-persistent')
-rw-r--r-- | net-libs/libhttpd-persistent/ChangeLog | 6 | ||||
-rw-r--r-- | net-libs/libhttpd-persistent/Manifest | 4 | ||||
-rw-r--r-- | net-libs/libhttpd-persistent/libhttpd-persistent-1.3p-r6.ebuild | 8 |
3 files changed, 12 insertions, 6 deletions
diff --git a/net-libs/libhttpd-persistent/ChangeLog b/net-libs/libhttpd-persistent/ChangeLog index 5159281e0063..cf8a06e72e56 100644 --- a/net-libs/libhttpd-persistent/ChangeLog +++ b/net-libs/libhttpd-persistent/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for net-libs/libhttpd-persistent # Copyright 2000-2004 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-libs/libhttpd-persistent/ChangeLog,v 1.6 2004/07/04 22:24:14 kugelfang Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-libs/libhttpd-persistent/ChangeLog,v 1.7 2004/07/05 06:30:58 eradicator Exp $ + + 04 Jul 2004; Jeremy Huddleston <eradicator@gentoo.org> + libhttpd-persistent-1.3p-r6.ebuild: + Added .o files to linking... 05 Jul 2004; Danny van Dyk <kugelfang@gentoo.org> libhttpd-persistent-1.3p-r6.ebuild: diff --git a/net-libs/libhttpd-persistent/Manifest b/net-libs/libhttpd-persistent/Manifest index 5ce16014fc1f..3893ece02d0b 100644 --- a/net-libs/libhttpd-persistent/Manifest +++ b/net-libs/libhttpd-persistent/Manifest @@ -1,4 +1,4 @@ -MD5 bf2c870b2fdb953661d8a952d05ef285 ChangeLog 1836 -MD5 cb70d86b3d296cf7f318256e4fa7e08b libhttpd-persistent-1.3p-r6.ebuild 1366 +MD5 26f811bd6ecdaf0dc338405f90a953ca ChangeLog 1964 +MD5 3ae81b30ef53beae469a8cda39c37965 libhttpd-persistent-1.3p-r6.ebuild 1426 MD5 34371b0b6264e8222d4666bf5895f5f7 metadata.xml 432 MD5 3d54fde5d128291ea5a6ae6dd4f9d840 files/digest-libhttpd-persistent-1.3p-r6 64 diff --git a/net-libs/libhttpd-persistent/libhttpd-persistent-1.3p-r6.ebuild b/net-libs/libhttpd-persistent/libhttpd-persistent-1.3p-r6.ebuild index e566e02bfbf3..1471223058ae 100644 --- a/net-libs/libhttpd-persistent/libhttpd-persistent-1.3p-r6.ebuild +++ b/net-libs/libhttpd-persistent/libhttpd-persistent-1.3p-r6.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2004 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-libs/libhttpd-persistent/libhttpd-persistent-1.3p-r6.ebuild,v 1.6 2004/07/04 22:24:14 kugelfang Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-libs/libhttpd-persistent/libhttpd-persistent-1.3p-r6.ebuild,v 1.7 2004/07/05 06:30:58 eradicator Exp $ MY_P="libhttpd-1.3p-f" @@ -10,7 +10,7 @@ SRC_URI="http://www.deleet.de/projekte/daap/daapd/${MY_P}.tgz" LICENSE="GPL-2" SLOT="0" KEYWORDS="x86 ~ppc ~amd64" -IUSE="" +IUSE="static" DEPEND="" S="${WORKDIR}/libhttpd-1.3-persistent-f" @@ -31,7 +31,9 @@ src_compile() { for FILE in "protocol.c api.c version.c ip_acl.c select.c"; do g++ ${CFLAGS} -D_OS_UNIX -fPIC -c ${FILE} done - g++ -shared -Wl,-shared,-soname,libhttpd-persistent.so -o libhttpd-persistent.so || die + g++ -shared -Wl,-shared,-soname,libhttpd-persistent.so \ + protocol.o api.o version.o ip_acl.o select.o \ + -o libhttpd-persistent.so || die } src_install() { |