Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
Bug 84954 - mod_php with msession USEflag enabled doesn't configure
Summary: mod_php with msession USEflag enabled doesn't configure
Status: RESOLVED CANTFIX
Alias: None
Product: Gentoo Linux
Classification: Unclassified
Component: New packages (show other bugs)
Hardware: All All
: High normal (vote)
Assignee: PHP Bugs
URL:
Whiteboard:
Keywords:
Depends on:
Blocks:
 
Reported: 2005-03-12 03:06 UTC by Christian Parpart (RETIRED)
Modified: 2005-03-16 13:13 UTC (History)
0 users

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


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description Christian Parpart (RETIRED) gentoo-dev 2005-03-12 03:06:03 UTC
this needs either a DEPEND or a pre validating wether thie Phoenix/msession distribution is available or not. Otherwise, it looks like a gentoo related ebuild error:

checking for msession support... yes
checking for msession in default path... not found
configure: error: Please reinstall the Phoenix / msession distribution
Comment 1 Sebastian Bergmann (RETIRED) gentoo-dev 2005-03-15 09:10:22 UTC
The PHP ebuilds now emit the following warning when USE=msession is set:

 * USE flag msession enables support for software not in Portage
 *
 * This ebuild will continue, but if you haven't already installed the
 * software required to satisfy the list above, this package will probably
 * fail to compile.
Comment 2 Christian Parpart (RETIRED) gentoo-dev 2005-03-16 13:13:55 UTC
What about this:

if useq msession; then
    if ! test -f /usr/include/msession/FOO.h; then
        die "msession USE-flag enabled. but no msession installed."
    fi
fi

or alike?