From Bugzilla Helper: User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.2.1) Gecko/20030225 Description of problem: I think the following 2 lines in the file /usr/lib/pkgconfig/gthread-2.0.pc are in error, the two lines are Libs: -L${libdir} -lgthread-2.0 -pthread Cflags: -pthread I think they should be Libs: -L${libdir} -lgthread-2.0 -lpthread Cflags: -D_REENTRANT Thats it! Version-Release number of selected component (if applicable): glib2-devel-2.2.1-1 How reproducible: Always Steps to Reproduce: Hmm.. Steps to reproduce should be obvious. Additional info:
Why do you think that? (If you examine /usr/lib/gcc-lib/i386-redhat-linux/3.2.1/specs, you'll see that -pthread adds -D_REENTRANT for the preprocessor and -lpthread for the linker on Linux.)
Yes, you are right.. Sorry, may bad.