Synfig Project Forum

Forums for Synfig Project
It is currently Fri May 24, 2013 2:25 pm

All times are UTC - 4 hours [ DST ]




Post new topic Reply to topic  [ 18 posts ]  Go to page 1, 2  Next
Author Message
PostPosted: Sat Oct 17, 2009 1:01 am 
Offline
User avatar

Joined: Fri Jan 25, 2008 3:46 am
Posts: 288
Location: Nashville. TN
I was running ./configure on synfig-studio when I got this message:

Code:
Unable to set up dependent libraries (synfig >= 0.62.00, ETL >= 0.04.13)


After that, it wouldn't run make. I tried running sudo ldconfig and then rerunning ./configure, but I ended up with the same message and now can't get any further. As far as I could tell, etl and synfig built according to plan, but maybe I missed something.

Any guidance would be appreciated.

Thanks,

Matt

_________________
Creepspace: The Witch Game - Created with open source software!


Top
 Profile  
 
PostPosted: Sat Oct 17, 2009 1:11 am 
Offline
User avatar

Joined: Fri Jan 25, 2008 3:46 am
Posts: 288
Location: Nashville. TN
I started over and it seems to have worked this time: synfig-studio is building now. Not sure what I did wrong the first time.

Matt

_________________
Creepspace: The Witch Game - Created with open source software!


Top
 Profile  
 
PostPosted: Sat Oct 17, 2009 1:29 am 
Offline
User avatar

Joined: Fri Jan 25, 2008 3:46 am
Posts: 288
Location: Nashville. TN
Well, shoot. The build seems to have failed pretty close to the end:

Code:
synfig: error while loading shared libraries: libsynfig.so.0: cannot open shared object file: No such file or directory
make[2]: *** [128x128/synfig_icon.png] Error 127
make[2]: Leaving directory `/home/dell270/Synfig_dev/Synfig-Studio-0.62.00/synfigstudio-0.62.00/images'
make[1]: *** [all-recursive] Error 1
make[1]: Leaving directory `/home/dell270/Synfig_dev/Synfig-Studio-0.62.00/synfigstudio-0.62.00'
make: *** [all] Error 2


Again I tried running sudo ldconfig to see if that would help, but no synfig studio was installed.

Matt

_________________
Creepspace: The Witch Game - Created with open source software!


Top
 Profile  
 
PostPosted: Sat Oct 17, 2009 4:39 am 
Offline
Site Admin
User avatar

Joined: Wed Jan 21, 2009 2:36 pm
Posts: 608
Location: Sweden.
I had the exact same issue as you. I don't know what system you are on but for me on Ubuntu 8.10, starting over following this guide helped and Synfig installed properly.
http://synfig.org/forums/viewtopic.php?f=13&t=277

_________________
www.rylanderanimation.se
Synfig scripts, etc.


Top
 Profile  
 
PostPosted: Sat Oct 17, 2009 4:42 am 
Offline
Site Admin
User avatar

Joined: Sat Dec 01, 2007 6:26 am
Posts: 4136
Location: Spain
Quote:
synfig: error while loading shared libraries: libsynfig.so.0: cannot open shared object file: No such file or directory

This means that the libraries path is not available. It needs ldconfig to be run from root.

Try this:

Be sure to uninstall the previous versions.
make uninstall at each folder

For ETL:
Code:
$./configure
$sudo make install
$ cd ..


Before make core comment the line "AC_CONFIG_SUBDIRS(libltdl)" in configure.ac by adding a "#" before.

for core:
Code:
$./configure
$make > /dev/null
$sudo make install > dev/null


Optionally you can use more cores with make -j2 (or -j4 etc). The > /dev/null allows to extract the error messages better.

now do:

Code:
$sudo ldconfig


and for studio:
Code:
$./configure
$make > /dev/null
$sudo make install > dev/null


finalize with:
Code:
$sudo ldconfig


I'll try to do a clean installation in a 9.04 and 9.10 machines and post here the results.
Good luck.

-G

_________________
Synfig needs your help!
Developers, packagers, bug testers, translators, artists, web developers, wiki writers... you can contribute! :D


Top
 Profile  
 
PostPosted: Sat Oct 17, 2009 12:31 pm 
Offline
User avatar

Joined: Wed Feb 04, 2009 8:34 pm
Posts: 153
Location: France
These are exactly the steps I followed to build it on Ubuntu 9.04-64, but without all the "> dev/null" , and it worked perfectly.

_________________
Illustrations, Comics, Animations


Top
 Profile  
 
PostPosted: Sat Oct 17, 2009 1:20 pm 
Offline
Site Admin
User avatar

Joined: Sat Dec 01, 2007 6:26 am
Posts: 4136
Location: Spain
Ok, I've installed Ubuntu 9.04 in a virutual machine (Sun's VirtualBox):

1) Download the tarballs: http://sourceforge.net/projects/synfig/ ... z/download
2) Extract them in a folder. Extrat the inner tarballs and extract the tarballs all: ETL, synfig, synfigstudio.
3) Install the build essentials:
Code:
$ sudo apt-get install build-essential

4) Install ETL
Code:
$ cd ETL-0.04.13
$./configure
$sudo make install
$ cd ..


4) Install Synfig core
Code:
$ sudo apt-get install libxml++2.6-dev libsigc++-2.0-dev libltdl3-dev libtool gettext cvs libpng12-dev libmng-dev libjpeg62-dev libfreetype6-dev libfontconfig1-dev libopenexr-dev libavcodec-dev libavformat-dev libmagick++-dev libdv-bin ffmpeg imagemagick
$ cd synfig-0.62.00
$ sed -i 's/^AC_CONFIG_SUBDIRS/# AC_CONFIG_SUBDIRS/' configure.ac
$./configure
$ make
$ sudo make install


5) Install synfistudio
Code:
$ sudo apt-get install libgtkmm-2.4-dev libgtk2.0-dev libglibmm-2.4-dev libsigc++-2.0-dev libltdl3-dev libtool gettext cvs ttf-freefont ttf-dejavu ttf-dustin
$ cd synfigstudio-0.62.00
$./configure
$ sudo ldconfig
$ make
$ sudo make install


6) FInalize
Code:
$ sudo ldconfig


That should work for an empty Ubuntu 9.04 installation.
-G

_________________
Synfig needs your help!
Developers, packagers, bug testers, translators, artists, web developers, wiki writers... you can contribute! :D


Last edited by pixelgeek on Mon Nov 02, 2009 11:43 pm, edited 2 times in total.
fix errant /code in mid 'instal'


Top
 Profile  
 
PostPosted: Mon Nov 02, 2009 2:34 pm 
Offline
User avatar

Joined: Wed Feb 04, 2009 8:34 pm
Posts: 153
Location: France
Built successfully on Karmic 64 with this method.

(I've noticed you forgot a "./configure" in step 4, after the "sed..." line,
also in step 5 you wrote 0.61.09 instead of 0.62.00.. )
Nice! :mrgreen:

_________________
Illustrations, Comics, Animations


Top
 Profile  
 
PostPosted: Mon Nov 02, 2009 6:56 pm 
Offline
Site Admin
User avatar

Joined: Sat Dec 01, 2007 6:26 am
Posts: 4136
Location: Spain
Satrip wrote:
Built successfully on Karmic 64 with this method.

(I've noticed you forgot a "./configure" in step 4, after the "sed..." line,
also in step 5 you wrote 0.61.09 instead of 0.62.00.. )
Nice! :mrgreen:

Thanks! corrected the mistake.
-G

_________________
Synfig needs your help!
Developers, packagers, bug testers, translators, artists, web developers, wiki writers... you can contribute! :D


Top
 Profile  
 
PostPosted: Wed Dec 16, 2009 3:57 pm 
Offline
User avatar

Joined: Fri Jan 25, 2008 3:46 am
Posts: 288
Location: Nashville. TN
I just tried these steps on Ubuntu 9.10 and Synfig installed, but when I try to draw anything on the stage (circle, rectangle, Bline, etc.) nothing shows up on the stage. The object is listed in the Layers panel as if it has been drawn, but there's nothing to be seen on stage. I checked the Blend Method and it's set to the default Composite. During the "sudo make install" step for synfigstudio, I did see a bunch of warnings flash by at the end related to missing modules in imagemagick (I think - they went by so fast), so maybe that has something to do with it.

The older version of Synfig in the Ubuntu repositories for 9.10 does not have this problem.

Any ideas?

Thanks,

Matt

Edit - More info:

I just opened an old file and everything in it displays on the stage, but when I try to add a new object, I get the same behavior as above.

_________________
Creepspace: The Witch Game - Created with open source software!


Top
 Profile  
 
PostPosted: Wed Dec 16, 2009 4:06 pm 
Offline
Site Admin

Joined: Mon Feb 16, 2009 5:19 pm
Posts: 217
I suspect this might be a variation on the input devices problem: bad coordinate settings for input devices can cause objects to be created in random parts of the canvas, far away from the viewpoint. If you create a circle and look at its center coordinates under the param panel and they are abnormally large, you should try changing the input device settings.


Top
 Profile  
 
PostPosted: Wed Dec 16, 2009 4:22 pm 
Offline
User avatar

Joined: Fri Jan 25, 2008 3:46 am
Posts: 288
Location: Nashville. TN
Thanks for the info. I enabled my Wacom tablet and it does draw objects on the stage where expected. Objects drawn with the mouse, on the other hand, are in fact way off the stage as you suggested. I can manually correct individual object locations in the Params panel, but I don't see in the Input Devices panel any place to fix the mouse problem to begin with. Is there any way to do that?

Thanks again,

Matt

_________________
Creepspace: The Witch Game - Created with open source software!


Top
 Profile  
 
PostPosted: Wed Dec 16, 2009 4:25 pm 
Offline
Site Admin
User avatar

Joined: Sat Dec 01, 2007 6:26 am
Posts: 4136
Location: Spain
Try to disble all mouse emulation from the input devices. It should allow use the wacom and also use the system mouse.
-G

_________________
Synfig needs your help!
Developers, packagers, bug testers, translators, artists, web developers, wiki writers... you can contribute! :D


Top
 Profile  
 
PostPosted: Wed Dec 16, 2009 4:31 pm 
Offline
User avatar

Joined: Fri Jan 25, 2008 3:46 am
Posts: 288
Location: Nashville. TN
I disabled MacIntosh Mouse Button Emulation first with no change, then disabled something called HID 413c:3010 (because it was the only item left other than my Wacom inputs) and now the mouse behaves normally.

Thanks,

Matt

_________________
Creepspace: The Witch Game - Created with open source software!


Top
 Profile  
 
PostPosted: Wed Dec 16, 2009 4:39 pm 
Offline
User avatar

Joined: Fri Jan 25, 2008 3:46 am
Posts: 288
Location: Nashville. TN
Hmmm... Well, something wacky is still going on. Now I can use the mouse as expected and I can draw on the canvas with the Wacom, but I can't change tools with the Wacom.

After some experimentation, it seems that if I want to use the mouse, I have to disable HID 413c:3010, but then I give up the Wacom. If I want to use the Wacom, I have to enable HID 413c:3010, but then I can't use the mouse. Weird.

Matt

_________________
Creepspace: The Witch Game - Created with open source software!


Top
 Profile  
 
Display posts from previous:  Sort by  
Post new topic Reply to topic  [ 18 posts ]  Go to page 1, 2  Next

All times are UTC - 4 hours [ DST ]


Who is online

Users browsing this forum: No registered users and 1 guest


You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot post attachments in this forum

Search for:
Jump to:  
Powered by phpBB® Forum Software © phpBB Group