After an evaluation, GNOME has moved from Bugzilla to GitLab. Learn more about GitLab.
No new issues can be reported in GNOME Bugzilla anymore.
To report an issue in a GNOME project, go to GNOME GitLab.
Do not go to GNOME Gitlab for: Bluefish, Doxygen, GnuCash, GStreamer, java-gnome, LDTP, NetworkManager, Tomboy.
Bug 343602 - configure --disable-external fails
configure --disable-external fails
Status: RESOLVED FIXED
Product: GStreamer
Classification: Platform
Component: gst-plugins-good
0.10.x
Other All
: Normal minor
: 0.10.4
Assigned To: GStreamer Maintainers
GStreamer Maintainers
Depends on:
Blocks:
 
 
Reported: 2006-06-01 14:58 UTC by Peter Kjellerstedt
Modified: 2006-06-17 15:10 UTC
See Also:
GNOME target: ---
GNOME version: ---



Description Peter Kjellerstedt 2006-06-01 14:58:57 UTC
Please describe the problem:
If I use the configure option --disable-external the configuration fails.

Steps to reproduce:
1. Run configure --disable-external

Actual results:
The configuration fails with the following message:

configure: error: conditional "USE_AALIB" was never defined.
Usually this means the macro was only invoked conditionally.


Expected results:
The configuration should succeed.


Does this happen every time?
Yes.

Other information:
The problem is caused by the test for $BUILD_EXTERNAL on line 425 of configure.ac which surrounds some of the AM_CONDITIONAL(). This is not allowed, since AM_CONDITIONAL() may not be used conditionally itself.
Comment 1 Peter Kjellerstedt 2006-06-02 07:31:10 UTC
Btw, it is the same with gst-plugins-base, gst-plugins-bad and gst-plugins-ugly.
Comment 2 Tim-Philipp Müller 2006-06-17 15:10:21 UTC
Fixed in -base, -good, -ugly, and -bad:

 2006-06-17  Tim-Philipp Müller  <tim at centricular dot net>

       * configure.ac:
         Fix --disable-extern (can't set conditionals conditionally,
         #343602).