| Summary: | x11-libs/qt-core ignores USE="ssl glib" on compile | ||
|---|---|---|---|
| Product: | Gentoo Linux | Reporter: | Maksim 'max_posedon' Melnikau <maxposedon> |
| Component: | New packages | Assignee: | Qt Bug Alias <qt> |
| Status: | RESOLVED FIXED | ||
| Severity: | normal | ||
| Priority: | High | ||
| Version: | unspecified | ||
| Hardware: | All | ||
| OS: | Linux | ||
| Whiteboard: | |||
| Package list: | Runtime testing required: | --- | |
Please, attach a unified diff next time, instead of some %%% stuff. Thanks. fixed, thanks for the report. |
qt-core compile without ssl (and glib) support even if USE="ssl". Reproducible: Always Steps to Reproduce: 1. USE="ssl" emerge qt-core Actual Results: qt-core compiles without ssl, glib support Expected Results: qt-core should compile with ssl, glib support src_compile() { unset QMAKESPEC local myconf=$(standard_configure_options) use ssl && myconf="${myconf} -openssl" || myconf="${myconf} -no-openssl" use glib && myconf="${myconf} -glib" || myconf="${myconf} -no-glib" use qt3support && myconf="${myconf} -qt3support" || myconf="${myconf} -no-qt3support" myconf="${myconf} -no-xkb -no-tablet -no-fontconfig -no-xrender -no-xrandr -no-xfixes -no-xcursor \ -no-xinerama -no-xshape -no-sm -no-opengl -no-nas-sound -no-qdbus -iconv -no-cups -no-nis \ -no-gif -no-libpng -no-libmng -no-libjpeg №%%%-no-openssl%%% -system-zlib -no-webkit -no-phonon \ -no-xmlpatterns -no-freetype -no-libtiff -no-accessibility -no-fontconfig @%%%-no-glib%%% -no-opengl" echo ./configure ${myconf} ./configure ${myconf} || die build_target_directories } (I marked error places with %%%...%%%)