Hi Nico, > here's my question and please excuse me if they've been treated in > other > post (and my english also....) > - the otool command on osx produce : > libplplotd.9.7.0.dylib: > /Users/nico/git/plplot/plplot-build/src/libplplotd.9.dylib > (compatibility version 9.0.0, current version 9.7.0) > /usr/lib/libltdl.3.dylib (compatibility version 5.0.0, current > version 5.4.0) > /usr/lib/libSystem.B.dylib (compatibility version 1.0.0, current > version 111.1.4) > /Users/nico/git/plplot/plplot-build/lib/csa/libcsirocsa.0.dylib > (compatibility version 0.0.0, current version 0.0.1) > /Users/nico/git/plplot/plplot-build/lib/qsastime/libqsastime.0.dylib > (compatibility version 0.0.0, current version 0.0.1) > /usr/lib/libgcc_s.1.dylib (compatibility version 1.0.0, current > version 1.0.0) > it appears that libplot need libcsirocsa & libqsastime to run. > can i make this library local to my project using install_name_tool > command?
I do that for my application and it's no problem to copy all the plplot libraries (including libcsirocsa and libqsastime) into the application bundle and use the install_name_tool to change the paths. > > also cmake looks for tcl/tk frameworks in /Library/Frameworks/ of > apple > system and bind against the framework it founds. > i'm distributing my own tcl/tk library. will this be an issue? > how can i tell cmake to use my own tcl tk libraries ? This is also no problem, you just need to make sure that cmake is finding your tcl/tk libraries first, e.g. using the following cmake options -DCMAKE_INSTALL_PREFIX=$HOME/tcl/install -DCMAKE_LIBRARY_PATH=$HOME/ tcl/install/lib or similar (not sure if you need the second option, I took that from a message written some months ago, where one successfully managed to use his own tcl/tk libraries). > > can i easily compile plplot on Win32 using MinGW/MSys building > system ? Using tcl/tk might be a little more problematic, but here Arjen is the expert here, which will surely answer your question here. Regards, Werner > > many thanks in advance > best regards, > nico > > ------------------------------------------------------------------------------ > Come build with us! The BlackBerry® Developer Conference in SF, CA > is the only developer event you need to attend this year. Jumpstart > your > developing skills, take BlackBerry mobile applications to market and > stay > ahead of the curve. Join us from November 9-12, 2009. Register > now! > http://p.sf.net/sfu/devconf > _______________________________________________ > Plplot-general mailing list > [email protected] > https://lists.sourceforge.net/lists/listinfo/plplot-general -- Dr. Werner Smekal Institut fuer Allgemeine Physik Technische Universitaet Wien Wiedner Hauptstr 8-10 A-1040 Wien Austria DVR-Nr: 0005886 email: [email protected] web: http://www.iap.tuwien.ac.at/~smekal phone: +43-(0)1-58801-13463 (office) +43-(0)1-58801-13469 (laboratory) fax: +43-(0)1-58801-13499 ------------------------------------------------------------------------------ Come build with us! The BlackBerry® Developer Conference in SF, CA is the only developer event you need to attend this year. Jumpstart your developing skills, take BlackBerry mobile applications to market and stay ahead of the curve. Join us from November 9-12, 2009. Register now! http://p.sf.net/sfu/devconf _______________________________________________ Plplot-general mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/plplot-general
