# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-lang/php/files/eblits/src_compile-v2.eblit,v 1.3 2011/10/31 16:18:04 mabi Exp $

eblit-php-src_compile() {
	# snmp seems to run during src_compile, too (bug #324739)
	addpredict /usr/share/snmp/mibs/.index

	for sapi in ${SAPIS} ; do
		use "${sapi}" && php_sapi_build "${sapi}"
	done
}

php_sapi_build() {
	cd "${WORKDIR}/sapis-build/$1"
	emake || die "emake failed"
}