First of all ... thnx for the reply On Tue, May 26, 2009 at 12:56 PM, yoheeb <[email protected]> wrote: > > On May 21, 3:41 pm, Olemis Lang <[email protected]> wrote: >> I'm in the process of installing TracGraphViz plugin. Indeed I'm in >> the process of installing GraphViz in a Windows 2003 Server host. My >> Qs are : >> >> - Do I need to install GraphViz Py bindings (SWIG) in order to use the >> plugin ? >> > for some reason I want to say no. I have it running on my windows > server, and I am pretty sure it runs it via the command line. >
Good to know ... But anyway, could u pls tell me how did you install GraphViz itself. The fact is that I've not been able to install it in a Windows 2003 Server host. Here you have the «roadmap»: - Firstly, I tried GraphViz windows installer and it reported a missing DLL error at the beginning of the install ... - Which disappeared after upgrading the Windows Installer package to the latest version but, another error showed up (this time at the end of the install) : «A program required for this install to complete could not be run» BTW ... is there another graphViz windows installer (i.e. not http://www.graphviz.org/Download_Windows.php) ? - So I decided to compile the source code (yes ... MinGW + Msys + gtk+ + ...) and after a long way I still cannot compile it. The last difficulty I experienced (yes, the short story ;) is that, on compiling it (once again using Msys + MinGW) using the following script {{{ #! /bin/sh export PYTHON=python export PYTHON25=python export INSTALLROOT="C:/GraphViz" # Root install directory export GTKDIR="C:/gtk+" # Root of GTK tree export FONTCONFIGINCLUDEDIR # Path of fontconfig include dir export FONTCONFIGLIBDIR # Path of fontconfig lib dir export FREETYPEINCLUDEDIR # Path of freetype2 include dir export FREETYPELIBDIR # Path of freetype2 lib dir export CFLAGS="-DGVDLL=1" export CPPFLAGS="-I$GTKDIR/include -I$GTKDIR/include/freetype2 " export LDFLAGS="-L$GTKDIR/lib -no-undefined" export FONTCONFIG_CFLAGS=-I$GTKDIR/include/ export FONTCONFIG_LIBS="-L$FONTCONFIGLIBDIR -lfontconfig" export FREETYPE2_CFLAGS=-I$FREETYPEINCLUDEDIR export FREETYPE2_LIBS="-L$FREETYPELIBDIR" export PKG_CONFIG="$GTKDIR/bin/pkg-config" export PKG_CONFIG_PATH="$GTKDIR/lib/pkgconfig" export PANGOFLAGS="--with-fontconfig --with-fontconfiglibdir$FONTCONFIGLIBDIR --with-fontconfigincludedir=$FONTCONFIGINCLUDEDIR --with-pangocairo" ./configure -v -C --prefix=$INSTALLROOT --without-gdk-pixbuf --with-mylibgd --enable-python25=yes --enable-swig --without-x --disable-tcl --without-ipsepcola --with-codegens --enable-shared --disable-static --with-freetype=$GTKDIR/lib --enable-ltdl $PANGOFLAGS --without-gtk --without-gtkgl }}} I get the following message back in config.log {{{ [...] language extensions: gv_python: No (missing header) [...] gv_python25: No (missing header) [...] }}} > There was a little configuration messing around that needed to be > done, Yes, it's good to know, but that's not the problem right now . I cannot finish GraphViz install in Windows 2003 Server. Hopefully some day I'll can configure TracGraphViz plugin ... :-/ Oh my ! I never imagined that I'd loved this kind of lines that much : $ sudo apt-get install graphviz ;) PS: BTW it seems I'm gonna need GraphViz python bindings ... ;) -- Regards, Olemis. Blog ES: http://simelo-es.blogspot.com/ Blog EN: http://simelo-en.blogspot.com/ Featured article: --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Trac Users" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/trac-users?hl=en -~----------~----~----~----~------~----~------~--~---
