Missing libs when compiling GTK+ code

2005-03-26 Thread Radek Vokal
I'm trying to compile my project under Cygwin/X and faced several
problems. The first one was missing libXrender.la file. Thanx to this
mailing list I've solved this issue but right after fixing this the
makefile reports:

gcc.exe: /usr/lib/libgpg-error.dll.a: No such file or directory
gcc.exe: /usr/lib/libgtk-x11-2.0.dll.a: No such file or directory
gcc.exe: /usr/lib/libatk-1.0.dll.a: No such file or directory
gcc.exe: /usr/lib/libgdk-x11-2.0.dll.a: No such file or directory
gcc.exe: /usr/lib/libgdk_pixbuf-2.0.dll.a: No such file or directory
gcc.exe: /usr/lib/libpangoxft-1.0.dll.a: No such file or directory
gcc.exe: /usr/lib/libpangoft2-1.0.dll.a: No such file or directory
gcc.exe: /usr/X11R6/lib/libXft.dll.a: No such file or directory
gcc.exe: /usr/X11R6/lib/libXrender.dll.a: No such file or directory
gcc.exe: /usr/lib/libfontconfig.dll.a: No such file or directory
gcc.exe: /usr/lib/libfreetype.dll.a: No such file or directory
gcc.exe: /usr/lib/libexpat.dll.a: No such file or directory
gcc.exe: /usr/lib/libpangox-1.0.dll.a: No such file or directory
gcc.exe: /usr/lib/libpango-1.0.dll.a: No such file or directory
gcc.exe: /usr/lib/libgobject-2.0.dll.a: No such file or directory
gcc.exe: /usr/lib/libgmodule-2.0.dll.a: No such file or directory
gcc.exe: /usr/lib/libglib-2.0.dll.a: No such file or directory
gcc.exe: /usr/lib/libintl.dll.a: No such file or directory
gcc.exe: /usr/lib/libiconv.dll.a: No such file or directory
make[2]: *** [myproject.exe] Error 1
etc.

Strange that all these files are present in these directories. Am I
missing some PATH configuration or ldconfig stuff?


Re: Missing libs when compiling GTK+ code

2005-03-26 Thread Gerrit P. Haase
Radek Vokal wrote:
I'm trying to compile my project under Cygwin/X and faced several
problems. The first one was missing libXrender.la file. Thanx to this
mailing list I've solved this issue but right after fixing this the
makefile reports:
gcc.exe: /usr/lib/libgpg-error.dll.a: No such file or directory
gcc.exe: /usr/lib/libgtk-x11-2.0.dll.a: No such file or directory
gcc.exe: /usr/lib/libatk-1.0.dll.a: No such file or directory
gcc.exe: /usr/lib/libgdk-x11-2.0.dll.a: No such file or directory
gcc.exe: /usr/lib/libgdk_pixbuf-2.0.dll.a: No such file or directory
gcc.exe: /usr/lib/libpangoxft-1.0.dll.a: No such file or directory
gcc.exe: /usr/lib/libpangoft2-1.0.dll.a: No such file or directory
gcc.exe: /usr/X11R6/lib/libXft.dll.a: No such file or directory
gcc.exe: /usr/X11R6/lib/libXrender.dll.a: No such file or directory
gcc.exe: /usr/lib/libfontconfig.dll.a: No such file or directory
gcc.exe: /usr/lib/libfreetype.dll.a: No such file or directory
gcc.exe: /usr/lib/libexpat.dll.a: No such file or directory
gcc.exe: /usr/lib/libpangox-1.0.dll.a: No such file or directory
gcc.exe: /usr/lib/libpango-1.0.dll.a: No such file or directory
gcc.exe: /usr/lib/libgobject-2.0.dll.a: No such file or directory
gcc.exe: /usr/lib/libgmodule-2.0.dll.a: No such file or directory
gcc.exe: /usr/lib/libglib-2.0.dll.a: No such file or directory
gcc.exe: /usr/lib/libintl.dll.a: No such file or directory
gcc.exe: /usr/lib/libiconv.dll.a: No such file or directory
make[2]: *** [myproject.exe] Error 1
etc.
Strange that all these files are present in these directories. Am I
missing some PATH configuration or ldconfig stuff?
Just a guess: what about the permissions on these files?
Can you do `ls /usr/lib/libiconv.dll.a` as the same user who issues
the make command?  How looks the link command used?
Gerrit
--
=^..^=
Action Soccer: http://www.action-soccer.de/?lv=deid=505
(german online game)


Re: Missing libs when compiling GTK+ code

2005-03-26 Thread Radek Vokal
On Sat, 26 Mar 2005 20:26:36 +0100, Gerrit P. Haase [EMAIL PROTECTED] wrote:
 Radek Vokal wrote:
 
  I'm trying to compile my project under Cygwin/X and faced several
  problems. The first one was missing libXrender.la file. Thanx to this
  mailing list I've solved this issue but right after fixing this the
  makefile reports:
 
  gcc.exe: /usr/lib/libgpg-error.dll.a: No such file or directory
  gcc.exe: /usr/lib/libgtk-x11-2.0.dll.a: No such file or directory
  gcc.exe: /usr/lib/libatk-1.0.dll.a: No such file or directory
  gcc.exe: /usr/lib/libgdk-x11-2.0.dll.a: No such file or directory
  gcc.exe: /usr/lib/libgdk_pixbuf-2.0.dll.a: No such file or directory
  gcc.exe: /usr/lib/libpangoxft-1.0.dll.a: No such file or directory
  gcc.exe: /usr/lib/libpangoft2-1.0.dll.a: No such file or directory
  gcc.exe: /usr/X11R6/lib/libXft.dll.a: No such file or directory
  gcc.exe: /usr/X11R6/lib/libXrender.dll.a: No such file or directory
  gcc.exe: /usr/lib/libfontconfig.dll.a: No such file or directory
  gcc.exe: /usr/lib/libfreetype.dll.a: No such file or directory
  gcc.exe: /usr/lib/libexpat.dll.a: No such file or directory
  gcc.exe: /usr/lib/libpangox-1.0.dll.a: No such file or directory
  gcc.exe: /usr/lib/libpango-1.0.dll.a: No such file or directory
  gcc.exe: /usr/lib/libgobject-2.0.dll.a: No such file or directory
  gcc.exe: /usr/lib/libgmodule-2.0.dll.a: No such file or directory
  gcc.exe: /usr/lib/libglib-2.0.dll.a: No such file or directory
  gcc.exe: /usr/lib/libintl.dll.a: No such file or directory
  gcc.exe: /usr/lib/libiconv.dll.a: No such file or directory
  make[2]: *** [myproject.exe] Error 1
  etc.
 
  Strange that all these files are present in these directories. Am I
  missing some PATH configuration or ldconfig stuff?
 
 Just a guess: what about the permissions on these files?
 Can you do `ls /usr/lib/libiconv.dll.a` as the same user who issues
 the make command?  How looks the link command used?

This looks fine. Does permission really mather in Cygwin anyway? I see
all these listed files, ls -l /usr/lib/libiconv.dll.a says

-rwxr-x---+ 1 rat Users 7630 Jul  6  2004 /usr/lib/libiconv.dll.a*

which seems to be ok.


Re: fixing XTerm colors

2005-03-26 Thread Michael Wardle
Alexander Gottwald wrote:
On Thu, 24 Mar 2005, Michael Wardle wrote:
It seems that startx starts an XTerm with a yellow foreground and a 
black background, but subsequent invocations of XTerm will use the 
user's settings.
[...]
So there are basicly two solutions: 

- remove the options and start xterm the way it is supposed to
I would like to see this happen.
--
Michael


Re: Fwd: GLXUnsupportedPrivateRequest error with Xwin_gl.exe

2005-03-26 Thread Igor Pechtchanski
On Fri, 25 Mar 2005, David Cameron wrote:

 However, Gazebo now dies immediately after with the cryptic message
 Bad System Call:
 $ gazebo.exe example.world
 *** Gazebo 0.5.1 ***
 using display [127.0.0.1:0.0]
 rendering: [GLX offscreen] direct [no] RGBA [8 8 8 8] depth [16]
 Bad system call

I know nothing about Gazebo, but the Bad system call message is usually
an indication that cygserver is not running when an application invokes
either shared memory or IPC functionality.  See
/usr/share/doc/cygserver.README.
HTH,
Igor
-- 
http://cs.nyu.edu/~pechtcha/
  |\  _,,,---,,_[EMAIL PROTECTED]
ZZZzz /,`.-'`'-.  ;-;;,_[EMAIL PROTECTED]
 |,4-  ) )-,_. ,\ (  `'-'   Igor Pechtchanski, Ph.D.
'---''(_/--'  `-'\_) fL a.k.a JaguaR-R-R-r-r-r-.-.-.  Meow!

The Sun will pass between the Earth and the Moon tonight for a total
Lunar eclipse... -- WCBS Radio Newsbrief, Oct 27 2004, 12:01 pm EDT


Re: Missing libs when compiling GTK+ code

2005-03-26 Thread Igor Pechtchanski
On Sat, 26 Mar 2005, Radek Vokal wrote:

 On Sat, 26 Mar 2005 20:26:36 +0100, Gerrit P. Haase [EMAIL PROTECTED] wrote:

http://cygwin.com/acronyms/#PCYMTNQREAIYR.  Thanks.

  Radek Vokal wrote:
 
   I'm trying to compile my project under Cygwin/X and faced several
   problems. The first one was missing libXrender.la file. Thanx to this
   mailing list I've solved this issue but right after fixing this the
   makefile reports:
  
   gcc.exe: /usr/lib/libgpg-error.dll.a: No such file or directory
   [snip]
   gcc.exe: /usr/lib/libiconv.dll.a: No such file or directory
   make[2]: *** [myproject.exe] Error 1
   etc.
  
   Strange that all these files are present in these directories. Am I
   missing some PATH configuration or ldconfig stuff?
 
  Just a guess: what about the permissions on these files?
  Can you do `ls /usr/lib/libiconv.dll.a` as the same user who issues
  the make command?  How looks the link command used?

 This looks fine. Does permission really mather in Cygwin anyway? I see
 all these listed files, ls -l /usr/lib/libiconv.dll.a says

 -rwxr-x---+ 1 rat Users 7630 Jul  6  2004 /usr/lib/libiconv.dll.a*

 which seems to be ok.

Does it help if you run gcc with CYGWIN=notraverse?
Igor
-- 
http://cs.nyu.edu/~pechtcha/
  |\  _,,,---,,_[EMAIL PROTECTED]
ZZZzz /,`.-'`'-.  ;-;;,_[EMAIL PROTECTED]
 |,4-  ) )-,_. ,\ (  `'-'   Igor Pechtchanski, Ph.D.
'---''(_/--'  `-'\_) fL a.k.a JaguaR-R-R-r-r-r-.-.-.  Meow!

The Sun will pass between the Earth and the Moon tonight for a total
Lunar eclipse... -- WCBS Radio Newsbrief, Oct 27 2004, 12:01 pm EDT