<?xml version="1.0" encoding="UTF-8" standalone="yes" ?>
<!DOCTYPE bugzilla SYSTEM "http://bugs.gentoo.org/bugzilla.dtd">

<bugzilla version="2.22.7"
          urlbase="http://bugs.gentoo.org/"
          maintainer="bugzilla@gentoo.org"
>

    <bug>
          <bug_id>76212</bug_id>
          
          <creation_ts>2004-12-31 00:43 0000</creation_ts>
          <short_desc>faac should depend on faad2 or mpeg4ip conditionnaly</short_desc>
          <delta_ts>2006-07-14 05:56:50 0000</delta_ts>
          <reporter_accessible>1</reporter_accessible>
          <cclist_accessible>1</cclist_accessible>
          <classification_id>1</classification_id>
          <classification>Unclassified</classification>
          <product>Gentoo Linux</product>
          <component>Ebuilds</component>
          <version>2004.3</version>
          <rep_platform>All</rep_platform>
          <op_sys>All</op_sys>
          <bug_status>RESOLVED</bug_status>
          <resolution>FIXED</resolution>
          
          
          
          <priority>P2</priority>
          <bug_severity>normal</bug_severity>
          <target_milestone>---</target_milestone>
          
          
          
          <everconfirmed>1</everconfirmed>
          <reporter>tester@gentoo.org</reporter>
          <assigned_to>sound@gentoo.org</assigned_to>
          <cc>cbm@m.fsf.org</cc>
    
    <cc>check@radicalmedia.com</cc>
    
    <cc>dsd@gentoo.org</cc>
    
    <cc>hetfield666@gmail.com</cc>
    
    <cc>jan@rychter.com</cc>
    
    <cc>ladanyi@tmit.bme.hu</cc>
    
    <cc>rossi.f@inwind.it</cc>
    
    <cc>samuel.robyr@gmail.com</cc>
    
    <cc>Sander.Sweers@gmail.com</cc>
    
    <cc>t35t0r@gmail.com</cc>
    
    <cc>tom.gl@free.fr</cc>

      

      
          <long_desc isprivate="0">
            <who>tester@gentoo.org</who>
            <bug_when>2004-12-31 00:43:03 0000</bug_when>
            <thetext>if libmp4v2 is installed by faad2 and then faac is installed.. the resulting library will depend upond libmp4v2.... but that&apos;s not in the ebuild... There should probably be some configure patching/seding to make that controlable through use flags... 
And while I&apos;m at it.. faac refuses to build if mpeg4ip is installed, but mpeg4ip depends on faac...</thetext>
          </long_desc>
          <long_desc isprivate="0">
            <who>speshak@gmail.com</who>
            <bug_when>2005-01-02 19:54:44 0000</bug_when>
            <thetext>Created an attachment (id=47424)
Patch to add dependancy on faad2 if mp4 USE flag is set

I made some small changes to the RDEPENDS and built it on an x86 machine.  Faac
now reports to have mp4 support.</thetext>
          </long_desc>
          <long_desc isprivate="0">
            <who>tester@gentoo.org</who>
            <bug_when>2005-01-02 20:12:38 0000</bug_when>
            <thetext>this is not enough... you have to have the configure script too to disable faad2 if the mp4 flag is not set...</thetext>
          </long_desc>
          <long_desc isprivate="0">
            <who>speshak@gmail.com</who>
            <bug_when>2005-01-03 01:56:34 0000</bug_when>
            <thetext>Created an attachment (id=47444)
Add dependency on faad2 if mp4 USE flag is set
</thetext>
          </long_desc>
          <long_desc isprivate="0">
            <who>speshak@gmail.com</who>
            <bug_when>2005-01-03 01:58:41 0000</bug_when>
            <thetext>(From update of attachment 47444)
&gt;*** faac-1.24.ebuild.orig	Thu Dec 16 04:37:50 2004
&gt;--- faac-1.24.ebuild	Mon Jan  3 03:54:22 2005
&gt;***************
&gt;*** 11,19 ****
&gt;  LICENSE=&quot;LGPL-2&quot;
&gt;  SLOT=&quot;0&quot;
&gt;  KEYWORDS=&quot;amd64 arm ~hppa ~ia64 ~mips ~ppc ppc64 ~ppc-macos sparc x86&quot;
&gt;! IUSE=&quot;&quot;
&gt;  
&gt;! RDEPEND=&quot;&gt;=media-libs/libsndfile-1.0.0&quot;
&gt;  DEPEND=&quot;${RDEPEND}
&gt;  	&gt;=sys-devel/libtool-1.3.5
&gt;  	sys-devel/automake&quot;
&gt;--- 11,21 ----
&gt;  LICENSE=&quot;LGPL-2&quot;
&gt;  SLOT=&quot;0&quot;
&gt;  KEYWORDS=&quot;amd64 arm ~hppa ~ia64 ~mips ~ppc ppc64 ~ppc-macos sparc x86&quot;
&gt;! IUSE=&quot;mp4&quot;
&gt;  
&gt;! RDEPEND=&quot;&gt;=media-libs/libsndfile-1.0.0
&gt;! 	mp4? ( media-libs/faad2 )
&gt;! &quot;
&gt;  DEPEND=&quot;${RDEPEND}
&gt;  	&gt;=sys-devel/libtool-1.3.5
&gt;  	sys-devel/automake&quot;
&gt;***************
&gt;*** 27,32 ****
&gt;--- 29,40 ----
&gt;  
&gt;  	export WANT_AUTOMAKE=1.7
&gt;  	export WANT_AUTOCONF=2.5
&gt;+ 
&gt;+ 	# Remove the references to libmp4 if not wanted
&gt;+ 	if ! use mp4; then
&gt;+ 		sed -i -e &quot;s/-lmp4v2//&quot; -e &quot; s/MY_DEFINE(\[HAVE_LIBMP4V2\])//&quot; -e &quot;s/with MP4/without MP4/&quot;  configure.in
&gt;+ 	fi
&gt;+ 
&gt;  	sh ./bootstrap
&gt;  	elibtoolize
&gt;  }
</thetext>
          </long_desc>
          <long_desc isprivate="0">
            <who>tester@gentoo.org</who>
            <bug_when>2005-04-25 18:03:41 0000</bug_when>
            <thetext>That seems good to me.. Except that the mp4 depend should be &quot;|| (faad2 mpeg4ip)&quot; I think... it would need to be tested</thetext>
          </long_desc>
          <long_desc isprivate="0">
            <who>cardoe@gentoo.org</who>
            <bug_when>2005-05-12 01:12:58 0000</bug_when>
            <thetext>*** Bug 90503 has been marked as a duplicate of this bug. ***</thetext>
          </long_desc>
          <long_desc isprivate="0">
            <who>flameeyes@gentoo.org</who>
            <bug_when>2005-11-03 17:33:49 0000</bug_when>
            <thetext>*** Bug 111426 has been marked as a duplicate of this bug. ***</thetext>
          </long_desc>
          <long_desc isprivate="0">
            <who>dsd@gentoo.org</who>
            <bug_when>2005-11-03 17:59:00 0000</bug_when>
            <thetext>I feel it&apos;s worth duplicating my comment here. I ran into a compile error (bug
111426) when trying to compile faac:

The reason I was trying to install faac was because it was being pulled in as a
dependency of media-video/mpeg4ip-1.2

I gave up on that version and went to mpeg4ip-1.3 which doesn&apos;t depend on faac.
I noticed that mpeg4ip-1.3 provides mp4.h so it looks like the dependencies
might be the wrong way around here..?


So, faac depending on mpeg4ip maybe isn&apos;t such a good idea (circular
dependencies, anyone?)</thetext>
          </long_desc>
          <long_desc isprivate="0">
            <who>tester@gentoo.org</who>
            <bug_when>2005-11-04 08:26:10 0000</bug_when>
            <thetext>Both faad2 and mpeg4ip provide libmp4v2 (and mp4.h). The version in mpeg4ip is
newer.. but faad2 is a much more common package (and smaller). If you already
have mpeg4ip and build faad2, faad2 will use the mp4v2 from mpeg4ip (but it wont
work the other way around).. and it creates an unwritten dep.

The right solution is to separate libmp4v2 into its own package that both would
depend on.. but I have not been able to convince upstream mpeg4ip to do that.
And upstream faad2 was pretty much dead the last time I checked.</thetext>
          </long_desc>
          <long_desc isprivate="0">
            <who>tom.gl@free.fr</who>
            <bug_when>2005-11-04 16:09:58 0000</bug_when>
            <thetext>Reporting here since it seems relevant in the discussion that has already started...

I&apos;ve just encountered the following issue trying to compile mpeg4ip-1.3:
* libfaac is compiled against libmp4v2
* Please remove faad2 and mpeg4ip then recompile faac

My workaround was to add a configure option to faac which allow to
enable/disable linking against libmp4v2 (instead of having it auto-enabled when
the lib is installed). It seems similar to Scott&apos;s proposal, although i think
it&apos;s a bit cleaner since it is against configure.in, so i will attach it in case
it&apos;s useful. Note that i&apos;m not sure i&apos;ve really understood the issue discussed
here though, i&apos;ve just tried to make things compile for me, nothing more...</thetext>
          </long_desc>
          <long_desc isprivate="0">
            <who>tom.gl@free.fr</who>
            <bug_when>2005-11-04 16:10:57 0000</bug_when>
            <thetext>Created an attachment (id=72147)
faac-configure-mp4-support.patch

The configure.in patch for faac-1.24.</thetext>
          </long_desc>
          <long_desc isprivate="0">
            <who>tom.gl@free.fr</who>
            <bug_when>2005-11-04 16:12:10 0000</bug_when>
            <thetext>Created an attachment (id=72148)
faac-1.24-aac-USE-flag.patch

Patch for faac-1.24.ebuild: enable/disable linking against libmp4v2 depending
on the &quot;aac&quot; USE flag (although i&apos;m not sure it&apos;s the right USE flag...)</thetext>
          </long_desc>
          <long_desc isprivate="0">
            <who>hetfield666@gmail.com</who>
            <bug_when>2005-11-06 04:13:03 0000</bug_when>
            <thetext>the problem is with ffmpeg too... 
 
there should be a sort of &quot;virtual/aac&quot; </thetext>
          </long_desc>
          <long_desc isprivate="0">
            <who>hetfield666@gmail.com</who>
            <bug_when>2005-11-26 03:08:02 0000</bug_when>
            <thetext>as suggested in  
 
http://bugs.gentoo.org/show_bug.cgi?id=58288 
 
a good thing should be making faad2 depending on mpeg4ip, so all problems go away </thetext>
          </long_desc>
          <long_desc isprivate="0">
            <who>t35t0r@gmail.com</who>
            <bug_when>2005-11-27 09:39:33 0000</bug_when>
            <thetext>someone hurry up and fix this it is becoming annoying. I&apos;m going to have to lose
mpeg4ip otherwise since more apps seem to use faad2 for aac instead.</thetext>
          </long_desc>
          <long_desc isprivate="0">
            <who>flameeyes@gentoo.org</who>
            <bug_when>2005-12-19 03:23:18 0000</bug_when>
            <thetext>Should be fixed with 2.0-r8.</thetext>
          </long_desc>
          <long_desc isprivate="0">
            <who>jakub@gentoo.org</who>
            <bug_when>2006-07-14 03:59:37 0000</bug_when>
            <thetext>*** Bug 140336 has been marked as a duplicate of this bug. ***</thetext>
          </long_desc>
          <long_desc isprivate="0">
            <who>jan@rychter.com</who>
            <bug_when>2006-07-14 05:56:50 0000</bug_when>
            <thetext>Ok, so since this bug is RESOLVED AND my bug (#140336) has been marked as a duplicate of this bug:

What is the solution for us running stable x86?

I can&apos;t emerge faac when faad2 is installed, if I delete faad2 and emerge mpeg4ip then faac compiles, but I&apos;ll still get:

[blocks B     ] media-video/mpeg4ip (is blocking media-libs/faad2-2.0-r3)
[blocks B     ] &lt;media-libs/faad2-2.0-r9 (is blocking media-libs/libmp4v2-1.4.1)
[blocks B     ] &lt;media-libs/faad2-2.0-r9 (is blocking media-video/mpeg4ip-1.4.1)
[ebuild  N    ] media-libs/faad2-2.0-r3  USE=&quot;xmms&quot; 0 kB 
[ebuild  N    ] media-video/ffmpeg-0.4.9_p20051216  USE=&quot;a52 aac encode imlib mmx network ogg sdl truetype v4l vorbis xvid zlib -debug -doc -dts -ieee1394 -oss -test -theora -threads&quot; 0 kB 

Having read the discussion, I have no idea how to get my system to work.j
</thetext>
          </long_desc>
      
          <attachment
              isobsolete="1"
              ispatch="1"
              isprivate="0"
          >
            <attachid>47424</attachid>
            <date>2005-01-02 19:54 0000</date>
            <desc>Patch to add dependency on faad2 if mp4 USE flag is set</desc>
            <filename>mp4support.patch</filename>
            <type>text/plain</type>
            <data encoding="base64">KioqIGZhYWMtMS4yNC5lYnVpbGQub3JpZwlTdW4gSmFuICAyIDIxOjUxOjE4IDIwMDUKLS0tIGZh
YWMtMS4yNC5lYnVpbGQJU3VuIEphbiAgMiAyMTo1MDo1NiAyMDA1CioqKioqKioqKioqKioqKgoq
KiogMTEsMTkgKioqKgogIExJQ0VOU0U9IkxHUEwtMiIKICBTTE9UPSIwIgogIEtFWVdPUkRTPSJh
bWQ2NCBhcm0gfmhwcGEgfmlhNjQgfm1pcHMgfnBwYyBwcGM2NCB+cHBjLW1hY29zIHNwYXJjIHg4
NiIKISBJVVNFPSIiCiAgCiEgUkRFUEVORD0iPj1tZWRpYS1saWJzL2xpYnNuZGZpbGUtMS4wLjAi
CiAgREVQRU5EPSIke1JERVBFTkR9CiAgCT49c3lzLWRldmVsL2xpYnRvb2wtMS4zLjUKICAJc3lz
LWRldmVsL2F1dG9tYWtlIgotLS0gMTEsMjEgLS0tLQogIExJQ0VOU0U9IkxHUEwtMiIKICBTTE9U
PSIwIgogIEtFWVdPUkRTPSJhbWQ2NCBhcm0gfmhwcGEgfmlhNjQgfm1pcHMgfnBwYyBwcGM2NCB+
cHBjLW1hY29zIHNwYXJjIHg4NiIKISBJVVNFPSJtcDQiCiAgCiEgUkRFUEVORD0iPj1tZWRpYS1s
aWJzL2xpYnNuZGZpbGUtMS4wLjAKISAJbXA0PyAoIG1lZGlhLWxpYnMvZmFhZDIgKQohICIKICBE
RVBFTkQ9IiR7UkRFUEVORH0KICAJPj1zeXMtZGV2ZWwvbGlidG9vbC0xLjMuNQogIAlzeXMtZGV2
ZWwvYXV0b21ha2UiCg==
</data>        

          </attachment>
          <attachment
              isobsolete="0"
              ispatch="1"
              isprivate="0"
          >
            <attachid>47444</attachid>
            <date>2005-01-03 01:56 0000</date>
            <desc>Add dependency on faad2 if mp4 USE flag is set.  This patch removes the libmp4 defines from the configure.in</desc>
            <filename>faac.patch</filename>
            <type>text/plain</type>
            <data encoding="base64">KioqIGZhYWMtMS4yNC5lYnVpbGQub3JpZwlUaHUgRGVjIDE2IDA0OjM3OjUwIDIwMDQKLS0tIGZh
YWMtMS4yNC5lYnVpbGQJTW9uIEphbiAgMyAwMzo1NDoyMiAyMDA1CioqKioqKioqKioqKioqKgoq
KiogMTEsMTkgKioqKgogIExJQ0VOU0U9IkxHUEwtMiIKICBTTE9UPSIwIgogIEtFWVdPUkRTPSJh
bWQ2NCBhcm0gfmhwcGEgfmlhNjQgfm1pcHMgfnBwYyBwcGM2NCB+cHBjLW1hY29zIHNwYXJjIHg4
NiIKISBJVVNFPSIiCiAgCiEgUkRFUEVORD0iPj1tZWRpYS1saWJzL2xpYnNuZGZpbGUtMS4wLjAi
CiAgREVQRU5EPSIke1JERVBFTkR9CiAgCT49c3lzLWRldmVsL2xpYnRvb2wtMS4zLjUKICAJc3lz
LWRldmVsL2F1dG9tYWtlIgotLS0gMTEsMjEgLS0tLQogIExJQ0VOU0U9IkxHUEwtMiIKICBTTE9U
PSIwIgogIEtFWVdPUkRTPSJhbWQ2NCBhcm0gfmhwcGEgfmlhNjQgfm1pcHMgfnBwYyBwcGM2NCB+
cHBjLW1hY29zIHNwYXJjIHg4NiIKISBJVVNFPSJtcDQiCiAgCiEgUkRFUEVORD0iPj1tZWRpYS1s
aWJzL2xpYnNuZGZpbGUtMS4wLjAKISAJbXA0PyAoIG1lZGlhLWxpYnMvZmFhZDIgKQohICIKICBE
RVBFTkQ9IiR7UkRFUEVORH0KICAJPj1zeXMtZGV2ZWwvbGlidG9vbC0xLjMuNQogIAlzeXMtZGV2
ZWwvYXV0b21ha2UiCioqKioqKioqKioqKioqKgoqKiogMjcsMzIgKioqKgotLS0gMjksNDAgLS0t
LQogIAogIAlleHBvcnQgV0FOVF9BVVRPTUFLRT0xLjcKICAJZXhwb3J0IFdBTlRfQVVUT0NPTkY9
Mi41CisgCisgCSMgUmVtb3ZlIHRoZSByZWZlcmVuY2VzIHRvIGxpYm1wNCBpZiBub3Qgd2FudGVk
CisgCWlmICEgdXNlIG1wNDsgdGhlbgorIAkJc2VkIC1pIC1lICJzLy1sbXA0djIvLyIgLWUgIiBz
L01ZX0RFRklORShcW0hBVkVfTElCTVA0VjJcXSkvLyIgLWUgInMvd2l0aCBNUDQvd2l0aG91dCBN
UDQvIiAgYm9vdHN0cmFwCisgCWZpCisgCiAgCXNoIC4vYm9vdHN0cmFwCiAgCWVsaWJ0b29saXpl
CiAgfQo=
</data>        

          </attachment>
          <attachment
              isobsolete="0"
              ispatch="1"
              isprivate="0"
          >
            <attachid>72147</attachid>
            <date>2005-11-04 16:10 0000</date>
            <desc>faac-configure-mp4-support.patch</desc>
            <filename>faac-configure-mp4-support.patch</filename>
            <type>text/plain</type>
            <data encoding="base64">LS0tIGZhYWMvY29uZmlndXJlLmluLm9yaWcJMjAwNS0xMS0wNSAwMDowMDoxMi45Mzc2MTY1Njgg
KzAxMDAKKysrIGZhYWMvY29uZmlndXJlLmluCTIwMDUtMTEtMDUgMDA6MjU6MDguNzYyMjE2NjY0
ICswMTAwCkBAIC0yMSwxMiArMjEsMjMgQEAKIEFDX0NIRUNLX0RFQ0woc3RyY2FzZWNtcCwgTVlf
REVGSU5FKEhBVkVfU1RSQ0FTRUNNUCkpCiAKIEFDX0NIRUNLX0xJQihnbnVnZXRvcHQsIGdldG9w
dF9sb25nKQotQUNfQ0hFQ0tfTElCKG1wNHYyLCBNUDRNZXRhZGF0YURlbGV0ZSwKLQkJICAgIFtB
Q19NU0dfTk9USUNFKFsqKiogQnVpbGRpbmcgd2l0aCBNUDQgc3VwcG9ydCAqKipdKQotCQkgICAg
IE1ZX0RFRklORShbSEFWRV9MSUJNUDRWMl0pCi0JCSAgICAgTElCUz0iJExJQlMgLWxzdGRjKysg
LWxtcDR2MiJdLAotCQkgICAgIFtBQ19NU0dfTk9USUNFKFsqKiogQnVpbGRpbmcgd2l0aG91dCBN
UDQgc3VwcG9ydCAqKipdKV0sCi0JCSAgICAgLWxzdGRjKyspCisKK0FDX0FSR19FTkFCTEUobXA0
djIsIFsgIC0tZGlzYWJsZS1tcDR2MiAgICAgICAgIGRvIG5vdCBidWlsZCBNUDQgc3VwcG9ydF0p
CitpZiB0ZXN0IHgiJGVuYWJsZV9tcDR2MiIgPSB4bm87IHRoZW4KKyAgICBBQ19NU0dfTk9USUNF
KFsqKiogQnVpbGRpbmcgd2l0aG91dCBNUDQgc3VwcG9ydCAqKipdKQorZWxzZQorICAgIEFDX0NI
RUNLX0xJQihtcDR2MiwgTVA0TWV0YWRhdGFEZWxldGUsCisgICAgICAgIFtBQ19NU0dfTk9USUNF
KFsqKiogQnVpbGRpbmcgd2l0aCBNUDQgc3VwcG9ydCAqKipdKQorICAgICAgICAgTVlfREVGSU5F
KFtIQVZFX0xJQk1QNFYyXSkKKyAgICAgICAgIExJQlM9IiRMSUJTIC1sc3RkYysrIC1sbXA0djIi
XSwKKyAgICAgICAgW2lmIHRlc3QgeCIkZW5hYmxlX21wNHYyIiA9IHh5ZXM7IHRoZW4KKyAgICAg
ICAgICAgIEFDX01TR19FUlJPUihbKioqIGxpYm1wNHYyIG5vdCBmb3VuZC4gQ2FuJ3QgYnVpbGQg
TVA0IHN1cHBvcnQgKioqXSkKKyAgICAgICAgIGVsc2UKKyAgICAgICAgICAgIEFDX01TR19OT1RJ
Q0UoWyoqKiBCdWlsZGluZyB3aXRob3V0IE1QNCBzdXBwb3J0ICoqKl0pCisgICAgICAgICBmaV0s
CisgICAgICAgIC1sc3RkYysrKQorZmkKKwogQUNfQ19CSUdFTkRJQU4KIAogZG5sIENoZWNrcyBm
b3IgaGVhZGVyIGZpbGVzIHJlcXVpcmVkIGZvciBtcDQuaAo=
</data>        

          </attachment>
          <attachment
              isobsolete="0"
              ispatch="1"
              isprivate="0"
          >
            <attachid>72148</attachid>
            <date>2005-11-04 16:12 0000</date>
            <desc>faac-1.24-aac-USE-flag.patch</desc>
            <filename>faac-1.24-aac-USE-flag.patch</filename>
            <type>text/plain</type>
            <data encoding="base64">LS0tIGZhYWMtMS4yNC5lYnVpbGQub3JpZwkyMDA1LTExLTA1IDAxOjAzOjU1LjAwMDAwMDAwMCAr
MDEwMAorKysgZmFhYy0xLjI0LmVidWlsZAkyMDA1LTExLTA1IDAwOjM4OjI3LjAwMDAwMDAwMCAr
MDEwMApAQCAtMTEsMTMgKzExLDEzIEBACiBMSUNFTlNFPSJMR1BMLTIiCiBTTE9UPSIwIgogS0VZ
V09SRFM9ImFscGhhIGFtZDY0IGFybSBocHBhIGlhNjQgfm1pcHMgcHBjIHBwYy1tYWNvcyBwcGM2
NCBzcGFyYyB4ODYiCi1JVVNFPSIiCitJVVNFPSJhYWMiCiAKIFJERVBFTkQ9Ij49bWVkaWEtbGli
cy9saWJzbmRmaWxlLTEuMC4wIgogREVQRU5EPSIke1JERVBFTkR9CiAJPj1zeXMtZGV2ZWwvbGli
dG9vbC0xLjMuNQogCXN5cy1kZXZlbC9hdXRvbWFrZQotCSE8bWVkaWEtbGlicy9mYWFkMi0yLjAt
cjMiCisJYWFjPyAoID49bWVkaWEtbGlicy9mYWFkMi0yLjAtcjMgKSIKIAogUz0ke1dPUktESVJ9
LyR7UE59CiAKQEAgLTI1LDExICsyNSwxOSBAQAogCXVucGFjayAke0F9CiAJY2QgJHtTfQogCisJ
IyBBZGQgYW4gb3B0aW9uIHRvIGVuYWJsZS9kaXNhYmxlIGxpbmtpbmcgYWdhaW5zdCBsaWJtcDR2
MgorCWVwYXRjaCAiJHtGSUxFU0RJUn0vJHtQTn0tY29uZmlndXJlLW1wNC1zdXBwb3J0LnBhdGNo
IgorCiAJZWF1dG9yZWNvbmYKIAllbGlidG9vbGl6ZQogCWVwdW50X2N4eAogfQogCitzcmNfY29t
cGlsZSgpIHsKKwllY29uZiAkKHVzZV9lbmFibGUgYWFjIG1wNHYyKSB8fCBkaWUgIkNvbmZpZ3Vy
YXRpb24gZmFpbGVkLiIKKwllbWFrZSB8fCBkaWUgIkNvbXBpbGF0aW9uIGZhaWxlZC4iCit9CisK
IHNyY19pbnN0YWxsKCkgewogCW1ha2UgREVTVERJUj0iJHtEfSIgaW5zdGFsbCB8fCBkaWUKIAlk
b2RvYyBBVVRIT1JTIENoYW5nZUxvZyBORVdTIFJFQURNRSBUT0RPIGRvY3MvbGliZmFhYy5wZGYK
</data>        

          </attachment>
    </bug>

</bugzilla>