Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
Bug 392055 - dev-libs/libevent-2.0.16 fails to build without AUTOTOOLS_IN_SOURCE_BUILD=1
Summary: dev-libs/libevent-2.0.16 fails to build without AUTOTOOLS_IN_SOURCE_BUILD=1
Status: RESOLVED DUPLICATE of bug 392053
Alias: None
Product: Gentoo Linux
Classification: Unclassified
Component: [OLD] Library (show other bugs)
Hardware: All Linux
: Normal normal (vote)
Assignee: Gentoo Linux bug wranglers
URL:
Whiteboard:
Keywords:
Depends on:
Blocks:
 
Reported: 2011-11-27 05:50 UTC by Brennan Shacklett
Modified: 2011-11-27 07:31 UTC (History)
1 user (show)

See Also:
Package list:
Runtime testing required: ---


Attachments
Build log (build.log,13.00 KB, text/plain)
2011-11-27 05:50 UTC, Brennan Shacklett
Details
Patch adds AUTOTOOLS_IN_SOURCE_BUILD=1 to ebuild (libevent-2.0.16-autotools.patch,244 bytes, patch)
2011-11-27 05:51 UTC, Brennan Shacklett
Details | Diff

Note You need to log in before you can comment on or make changes to this bug.
Description Brennan Shacklett 2011-11-27 05:50:00 UTC
Created attachment 293911 [details]
Build log

dev-libs/libevent fails to build with the latest version of the autotools-utils.eclass

Steps to Reproduce:
emerge --sync
emerge =dev-libs/libevent-2.0.16

Results: The build dies right after printing "Source configured"

I believe the reason for this is that the error handling in autotools-utils.eclass version 1.26 (and later) causes the build process to die rather than skip over the error. The error can be fixed with AUTOTOOLS_IN_SOURCE_BUILD=1 in the ebuild, because $S has -stable appended to it, so the eclass assumes the build is out of source, which of course it is not. I don't know if there is a better way to solve the problem.


emerge --info:

Portage 2.1.10.38 (default/linux/amd64/10.0, gcc-4.6.2, glibc-2.14.1-r0, 3.1.1-gentoo x86_64)
=================================================================
                         System Settings
=================================================================
System uname: Linux-3.1.1-gentoo-x86_64-Intel-R-_Core-TM-2_Duo_CPU_P8600_@_2.40GHz-with-gentoo-2.1
Timestamp of tree: Sun, 27 Nov 2011 04:45:01 +0000
app-shells/bash:          4.2_p20
dev-lang/python:          2.7.2-r3, 3.2.2
dev-util/cmake:           2.8.6-r4
dev-util/pkgconfig:       0.26
sys-apps/baselayout:      2.1
sys-apps/openrc:          0.9.6
sys-apps/sandbox:         2.5
sys-devel/autoconf:       2.13, 2.68
sys-devel/automake:       1.11.1-r1
sys-devel/binutils:       2.22
sys-devel/gcc:            4.6.2
sys-devel/gcc-config:     1.5-r2
sys-devel/libtool:        2.4.2
sys-devel/make:           3.82-r3
sys-kernel/linux-headers: 2.6.39 (virtual/os-headers)
sys-libs/glibc:           2.14.1
Repositories: gentoo local_overlay
ACCEPT_KEYWORDS="amd64 ~amd64"
ACCEPT_LICENSE="*"
CBUILD="x86_64-pc-linux-gnu"
CFLAGS="-march=native -O2 -pipe"
CHOST="x86_64-pc-linux-gnu"
CONFIG_PROTECT="/etc"
CONFIG_PROTECT_MASK="/etc/ca-certificates.conf /etc/env.d /etc/fonts/fonts.conf /etc/gconf /etc/gentoo-release /etc/php/apache2-php5.2/ext-active/ /etc/php/apache2-php5.4/ext-active/ /etc/php/cgi-php5.2/ext-active/ /etc/php/cgi-php5.4/ext-active/ /etc/php/cli-php5.2/ext-active/ /etc/php/cli-php5.4/ext-active/ /etc/revdep-rebuild /etc/sandbox.d /etc/terminfo"
CXXFLAGS="-march=native -O2 -pipe"
DISTDIR="/usr/portage/distfiles"
FEATURES="assume-digests binpkg-logs distlocks ebuild-locks fixlafiles news parallel-fetch protect-owned sandbox sfperms strict unknown-features-warn unmerge-logs unmerge-orphans userfetch"
FFLAGS=""
GENTOO_MIRRORS="ftp://ftp.ucsb.edu/pub/mirrors/linux/gentoo"
LANG="en_US.UTF-8"
LDFLAGS="-Wl,-O1 -Wl,--as-needed"
LINGUAS="en"
MAKEOPTS="-j3"
PKGDIR="/usr/portage/packages"
PORTAGE_CONFIGROOT="/"
PORTAGE_RSYNC_OPTS="--recursive --links --safe-links --perms --times --compress --force --whole-file --delete --stats --timeout=180 --exclude=/distfiles --exclude=/local --exclude=/packages"
PORTAGE_TMPDIR="/var/tmp"
PORTDIR="/usr/portage"
PORTDIR_OVERLAY="/usr/local/portage"
SYNC="rsync://rsync.us.gentoo.org/gentoo-portage"
USE="amd64 branding dga dri gmp ipv6 mmx mmxext multilib nptl readline smp sse sse2 sse3 ssse3 threads udev unicode vaapi vdpau vim-syntax xcb" ALSA_CARDS="hda-intel" ALSA_PCM_PLUGINS="adpcm alaw asym copy dmix dshare dsnoop empty extplug file hooks iec958 ioplug ladspa lfloat linear meter mmap_emul mulaw multi null plug rate route share shm softvol" APACHE2_MODULES="actions alias auth_basic authn_alias authn_anon authn_dbm authn_default authn_file authz_dbm authz_default authz_groupfile authz_host authz_owner authz_user autoindex cache cgi cgid dav dav_fs dav_lock deflate dir disk_cache env expires ext_filter file_cache filter headers include info log_config logio mem_cache mime mime_magic negotiation rewrite setenvif speling status unique_id userdir usertrack" ELIBC="glibc" GRUB_PLATFORMS="efi-64 pc" INPUT_DEVICES="evdev synaptics" KERNEL="linux" LINGUAS="en" USERLAND="GNU" VIDEO_CARDS="nvidia"
Unset:  CPPFLAGS, CTARGET, EMERGE_DEFAULT_OPTS, INSTALL_MASK, LC_ALL, PORTAGE_BUNZIP2_COMMAND, PORTAGE_COMPRESS, PORTAGE_COMPRESS_FLAGS, PORTAGE_RSYNC_EXTRA_OPTS

=================================================================
                        Package Settings
=================================================================

dev-libs/libevent-2.0.16 was built with the following:
USE="(multilib) -ssl -static-libs -test"
Comment 1 Brennan Shacklett 2011-11-27 05:51:27 UTC
Created attachment 293913 [details, diff]
Patch adds AUTOTOOLS_IN_SOURCE_BUILD=1 to ebuild
Comment 2 Ben Kohler gentoo-dev 2011-11-27 06:06:00 UTC
same as bug 392053 but you've got the patch here already
Comment 3 Brennan Shacklett 2011-11-27 06:15:20 UTC
Sorry, he beat me by a manner of minutes.
Comment 4 Tim Harder gentoo-dev 2011-11-27 07:31:40 UTC

*** This bug has been marked as a duplicate of bug 392053 ***