This is the mail archive of the cygwin mailing list for the Cygwin project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

Re: XInternAtom XRectInRegion ... not found ... where to get these XLIB components


Thanks Brian,
that makes sense. I don't see anything wrong with the makefile specs, maybe someone in Xfree mailing list does, i put it there.
And yes i should have posted to Xfree mailing list, my mistake


-Robert


From: Brian Dessent <brian@dessent.net>
Reply-To: cygwin@cygwin.com
To: cygwin@cygwin.com
Subject: Re: XInternAtom XRectInRegion ... not found ... where to get these XLIB components
Date: Tue, 22 Nov 2005 00:47:41 -0800


Robert Body wrote:

> Hi, I am getting errors about xlib components missing. Running find gives
> me this:


This is the wrong mailing list.  X11 related topics go to cygwin-xfree
(at) cygwin.com.

> /home/Owner/games/simp> make
> gcc -Wall   -L/usr/X11R6/lib -L/usr/local/lib  -lX11 -lXpm -lXext
> xsimpsons.o toon.o -o xsimpsons
> toon.o:toon.c:(.text+0x47): undefined reference to `_XInternAtom'

The import libraries for these X11 functions are in the x11-devel
package which you presumably have installed, but since you didn't
include cygcheck output as requested at
<http://cygwin.com/problems.html> we can only speculate.  However you
would have gotten errors about not being able to find -lX11 if this were
not the case, so you most likely have everything you need already.

The problem is not that you're missing any libraries, it's that your
link command line order is wrong.  You cannot specify -lfoo before a
dependent object which uses functions from libfoo.

Brian

--
Unsubscribe info:      http://cygwin.com/ml/#unsubscribe-simple
Problem reports:       http://cygwin.com/problems.html
Documentation:         http://cygwin.com/docs.html
FAQ:                   http://cygwin.com/faq/




-- Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple Problem reports: http://cygwin.com/problems.html Documentation: http://cygwin.com/docs.html FAQ: http://cygwin.com/faq/


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]