Gansser, Martin wrote:

>>What arguments did you pass to gnome-python's configure script?
>>    
>>
>sorry for my first mail.
>
>thats my build script:
>
>#!/bin/csh -f
>#
>setenv CPPFLAGS "-I/opt/gnome/include/libcapplet1"
>#
>gmake distclean
>./configure --prefix=/opt/gnome \
>            --with-gtk-prefix=/opt/gnome \
>            --with-imlib-prefix=/opt/gnome \
>            --with-gnome-includes \
>            --with-gnome-libs \
>
these two lines above are your problems.  According to the output of 
"configure --help", these two options are used to specify include and 
lib dirs for gnome (ie. you need an argument).  Note that 
"--with-gnome-includes" as you have it is equivalent to 
"--with-gnome-includes=yes", which explains the "yes" bits in your build 
log.  Try leaving out the --with-gnome-includes and --with-gnome-libs 
arguments, and pass --with-gnome=/opt/gnome.

>            --with-gnome \
>            --with-glib-prefix=/opt/gnome
>gmake
>gmake install
>
>gnome-python only compiles w/o problems, if I do a
>./configure; gmake
>
>but I wont to use the prefix=/opt/gnome and glib/gtk/imlib from /opt/gnome
>and not from /usr/lcoal.
>
>what is the problem ?
>

James.

-- 
Email: [EMAIL PROTECTED]              | Linux.conf.au   http://linux.conf.au/
WWW:   http://www.daa.com.au/~james/ | Jan 22-25   Perth, Western Australia. 




_______________________________________________
pygtk mailing list   [EMAIL PROTECTED]
http://www.daa.com.au/mailman/listinfo/pygtk
Read the PyGTK FAQ: http://www.async.com.br/faq/pygtk/

Reply via email to