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 86757 - Non-srcdir builds horked
Non-srcdir builds horked
Status: VERIFIED FIXED
Product: GStreamer
Classification: Platform
Component: gstreamer (core)
git master
Other All
: Normal normal
: 0.4.0
Assigned To: GStreamer Maintainers
GStreamer Maintainers
Depends on:
Blocks:
 
 
Reported: 2002-06-28 18:06 UTC by Braden
Modified: 2004-12-22 21:47 UTC
See Also:
GNOME target: ---
GNOME version: ---


Attachments
Patch to enable non-srcdir builds (4.04 KB, patch)
2002-06-28 18:10 UTC, Braden
none Details | Review
Updated patch. (1.77 KB, patch)
2002-08-13 21:23 UTC, Braden
none Details | Review

Description Braden 2002-06-28 18:06:33 UTC
Non-srcdir builds of GStreamer are presently horked.
Comment 1 Braden 2002-06-28 18:10:31 UTC
Created attachment 9501 [details] [review]
Patch to enable non-srcdir builds
Comment 2 Thomas Vander Stichele 2002-07-09 11:01:07 UTC
Hi,

your patch does quite a bit more than stuff involving srcdir.
It would be nice if you would seperate out the patches so that we know
what does what, and also explain a little what the other stuff does.

Also, I'd appreciate some steps on how to reproduce the problem you
have in building so that I can see what's wrong.  At present all sorts
of builds I do all work.  I'd appreciate some more feedback so I can
decide what to do with the patch.

Thanks ! 
Comment 3 Braden 2002-07-09 21:42:04 UTC
Steps:

 1. Fresh checkout.
 2. $ ./autogen.sh
 3. $ make distclean
 4. $ mkdir BUILD
 5. $ cd BUILD
 6. $ ../configure
 7. $ make

Everything in this patch is what I had to do to get the non-srcdir
build working.
Comment 4 Braden 2002-08-13 21:23:04 UTC
Created attachment 10468 [details] [review]
Updated patch.
Comment 5 Braden 2002-08-13 21:25:10 UTC
Here's the updated patch. The rest was pretty trivial; just some
additional INCLUDES for the builddir so that generated headers could
be seen.
Comment 6 Thomas Vander Stichele 2002-08-13 22:35:35 UTC
damn, didn't saw your patch in bugzilla before I worked on it myself ;(

but yeah, I think I fixed it as well, even using automake-ish 1.5
stuff instead of general INCLUDES, so I'm glad anyway.

Please try it.
Comment 7 Braden 2002-08-13 22:46:49 UTC
INCLUDES is a bit more concise (since you don't *need* the flags to be
target-specific); but whatever works, and it does. Thanks.