12-14-2010, 10:58 AM
(11-29-2010, 06:24 AM)pythonian4000 Wrote:(11-29-2010, 04:48 AM)keeshanam Wrote: Receiving the following error.
Code:
install: missing destination file operand after `/media/TeraRaid/Developmet/nightingale/trunk/compiled/dist/gst-plugins/libgstcoreelements.so'
Try `install --help' for more information.
That issue is for a missing library, and currently the dependencies directories on SVN are missing most of the library files, so I'm not sure how you even got it to compile before! If this is your only issue, you can get around it by telling the compiler to use the system's Gstreamer media core instead of its own files (so it won't be looking for that one any more), by creating a songbird.config file in the base directory of the code (same directory as songbird.mk) with the following line:
ac_add_options --with-media-core=gstreamer-system
Thanks... solved that issue for me too.... but now I'm getting the following error:
Code:
NightingGale/trunk/compiled/components/moz/strings/src/sbMozStringUtils.a -lxpcomglue_s -lnspr4 -lxpcom -lplds4
/usr/bin/ld: cannot find -lxpcomglue_s
collect2: ld returned 1 exit status
make[7]: *** [sbStrings.so] Error 1
make[7]: Leaving directory `/home/gordon/NightingGale/trunk/compiled/components/moz/strings/components/src'
make[6]: *** [libs] Error 2
make[6]: Leaving directory `/home/gordon/NightingGale/trunk/compiled/components/moz/strings/components'
make[5]: *** [libs] Error 2
make[5]: Leaving directory `/home/gordon/NightingGale/trunk/compiled/components/moz/strings'
make[4]: *** [libs] Error 2
make[4]: Leaving directory `/home/gordon/NightingGale/trunk/compiled/components/moz'
make[3]: *** [libs_tier_componentsbase] Error 2
make[3]: Leaving directory `/home/gordon/NightingGale/trunk/compiled'
make[2]: *** [tier_componentsbase] Error 2
make[2]: Leaving directory `/home/gordon/NightingGale/trunk/compiled'
make[1]: *** [default] Error 2
make[1]: Leaving directory `/home/gordon/NightingGale/trunk/compiled'
make: *** [build] Error 2

Any help would be great.