• Home
  • Blog
  • Add-ons
  • Forum
  • Wiki
  • Developers
Nightingale - The tune of life, the tune of yours
  • Portal
  • Search
  • Member List
  • Calendar
  • Help
  • Portal
  • Search
  • Member List
  • Calendar
  • Help
Guest Hi, Guest
  • Login
  • Register
Login
Username:
Password: Lost Password?
 
Nightingale Forums Development Technical Development Got SB Trunk Based Build to Build Fully...

Pages (4): 1 2 3 4 Next »
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Thread Modes
Got SB Trunk Based Build to Build Fully...
ilikenwf Offline
Developer/Project Manager
*******
Posts: 412
Threads: 22
Joined: Nov 2010
Reputation: 8
#1
02-03-2012, 04:54 PM (This post was last modified: 02-03-2012, 04:58 PM by ilikenwf.)
I can even start up the Profile Manger...but that's about it...it otherwise doesn't run, it just starts and then dies with the standard gtk error messages...

I built an x86_64 xulrunner 1.9 on a Debian VM, and then used the x86_64 taglib and sqlite from the ngale sourceforge svn repo.

Here's a tar.lzma of the deps:
http://www.mediafire.com/?483g7bepdhb073g

And the branch in the git is sb-trunk-xul-1:
https://github.com/nightingale-media-pla...runk-xul-1

or via git:

https://github.com/nightingale-media-pla...runk-xul-1

*NOTE* You should backup your ~/.nightingale2 directory before running this, as it for some reason uses that same directory for it's profile files!
How to Build Nightingale | Nightingale on GitHub
Find
Reply
GeekShadow Offline
Mozilla addict
******
Posts: 195
Threads: 25
Joined: Nov 2010
Reputation: 4
#2
02-04-2012, 01:11 AM
same error for me, when I tried building about two weeks ago.
Former Songbird contributor
Nightingale Community developer
Mozilla Reps
Website Find
Reply
ilikenwf Offline
Developer/Project Manager
*******
Posts: 412
Threads: 22
Joined: Nov 2010
Reputation: 8
#3
02-04-2012, 02:05 AM
It's annoying as I'll get at...
How to Build Nightingale | Nightingale on GitHub
Find
Reply
ilikenwf Offline
Developer/Project Manager
*******
Posts: 412
Threads: 22
Joined: Nov 2010
Reputation: 8
#4
02-04-2012, 12:21 PM
It works now!

build.sh will make it...it's the sb-trunk-oldxul branch..we've yet to rebrand it yet, though, so we can't distribute the binaries yet.
How to Build Nightingale | Nightingale on GitHub
Find
Reply
ilikenwf Offline
Developer/Project Manager
*******
Posts: 412
Threads: 22
Joined: Nov 2010
Reputation: 8
#5
02-05-2012, 05:49 AM
Here's a screenshot:
http://img201.imageshack.us/img201/7484/...0x1080.png

We need our dev team back! The skinners, bug fixers, etc!
How to Build Nightingale | Nightingale on GitHub
Find
Reply
Timmythepirate Offline
Forum Moderator/Time Lord
******
Posts: 151
Threads: 5
Joined: Oct 2010
Reputation: 3
#6
02-05-2012, 03:10 PM
I got it to build in open suse, but I couldn't get it to build in LM 12 32-bit, even after trying several times. It got stuck on the gstreamer lib configuration. I don't know what the problem is; it doesn't give a clear reason for why it stopped. I'd look further into it, but school is keeping me busy.
Find
Reply
Ezekiel000 Offline
Moderator
*****
Posts: 100
Threads: 5
Joined: Sep 2010
Reputation: 2
#7
02-05-2012, 06:58 PM
Compiles and seems to work fine on Debian 6.0.3 64bit.
Find
Reply
johnmurrayvi Offline
CXM (Chief XULRunner Magician)
**
Posts: 44
Threads: 1
Joined: Feb 2012
Reputation: 1
#8
02-14-2012, 07:22 AM
I was having issues at first building sb-trunk, also getting errors regarding the gstreamer libs, however the build.sh script was the problem. It creates songbird.config instead of nightingale.config. Tested it with a clean copy of the branch with just the one change in build.sh and it builds successfully (at least on Ubuntu 11.10 x86_64). This was addressed in the 1.8 branch but is still broken in sb-trunk-oldxul.

Simple fix, but can send a pull-request or if someone else could put it in their next push:
Line 60 is
Code:
59         fi
60         echo 'ac_add_options --with-media-core=gstreamer-system' >> songbird.config
61         ;;
but needs to be
Code:
59         fi
60         echo 'ac_add_options --with-media-core=gstreamer-system' >> nightingale.config
61         ;;

Thanks!
Find
Reply
Ezekiel000 Offline
Moderator
*****
Posts: 100
Threads: 5
Joined: Sep 2010
Reputation: 2
#9
02-15-2012, 01:37 AM (This post was last modified: 02-15-2012, 01:46 AM by Ezekiel000.)
I used the fix from johnmurrayvi to fix the build.sh and compiled the sb-trunk-oldxul.
It built fine and ran fine I only found two problems:
- The tabs on the addon settings page are messed up.
- The volume control always starts as just a dot but as soon as you set the volume the rest of the bar fills in.
See attached screenshot to see these errors.

Is the settings folder meant to be ~/.nightingale now rather than ~/.nightingale2 ?

I also found when updating the rdfs of extensions that they still didn't work. The MediaFlow addon actually causes a segmentation fault.


Attached Files
.png   Screenshot at 2012-02-14 15:26:51.png (Size: 70.32 KB / Downloads: 335)
Find
Reply
rsjtdrjgfuzkfg Offline
Developer
*******
Posts: 664
Threads: 15
Joined: Oct 2011
Reputation: 15
#10
02-15-2012, 03:46 AM
(02-14-2012, 07:22 AM)johnmurrayvi Wrote: I was having issues at first building sb-trunk, also getting errors regarding the gstreamer libs, however the build.sh script was the problem. It creates songbird.config instead of nightingale.config. Tested it with a clean copy of the branch with just the one change in build.sh and it builds successfully (at least on Ubuntu 11.10 x86_64). This was addressed in the 1.8 branch but is still broken in sb-trunk-oldxul.

Simple fix, but can send a pull-request or if someone else could put it in their next push:
Line 60 is
Code:
59         fi
60         echo 'ac_add_options --with-media-core=gstreamer-system' >> songbird.config
61         ;;
but needs to be
Code:
59         fi
60         echo 'ac_add_options --with-media-core=gstreamer-system' >> nightingale.config
61         ;;

Thanks!

Thanks for submitting! Fixed now.
Songbird/Nightingale Community Developer and German Translator
Find
Reply
« Next Oldest | Next Newest »
Pages (4): 1 2 3 4 Next »


  • View a Printable Version
  • Subscribe to this thread
Forum Jump:


Users browsing this thread: 1 Guest(s)
  • Return to Top
  • Lite (Archive) Mode
  • RSS Syndication
Current time: 03-22-2023, 09:13 AM Powered By MyBB, © 2002-2023 MyBB Group.
Design By AliReza_Tofighi In WhiteCrow Software Group.
white outlined nightingale project logo

Nightingale is free!
It is an Open Source project released under the terms of the GNU General Public License v2 (GPL v2).
For more details, please read the license information.

Follow us!
f  g  t

Support
  • Community Forum
  • Official Blog
  • Add-ons
  • Wiki
  • Help Forum
Contribute
  • Developer's Center
  • Translate Nightingale
  • Source Code
  • Report a Bug
Ressources
  • Download Nightingale
Linear Mode
Threaded Mode