Lighttpd checking for GTHREAD… configure: error: Package requirements (gthread-2.0 >= 2.4.0) were not met error and solution
Q. I’m trying to install lighttpd 1.5.0 while compiling source code I’m getting an error which read as follows:
checking for GTHREAD... configure: error: Package requirements (gthread-2.0 >= 2.4.0) were not met:
No package 'gthread-2.0' found
Consider adjusting the PKG_CONFIG_PATH environment variable if you
installed software in a non-standard prefix.
Alternatively, you may set the environment variables GTHREAD_CFLAGS
and GTHREAD_LIBS to avoid the need to call pkg-config.
See the pkg-config man page for more details.
How do I fix this issue; I'm using Fedora Core 6.x.
A. You need to install a package called glib2-devel. Lighttpd 1.5.x+ requires glib2-2.4.0 or higher.
Type the following command if you are using Redhat (RHEL) or Fedora Core or Cent OS:
# yum install glib2-devel
If you are using Debian/Ubuntu try following command:
# apt-get install libglib2.0-dev
OR
$ sudo apt-get install libglib2.0-dev
Now compile and install lighttpd:
# ./configure;make;make install
=>
Subscribe to our free e-mail newsletter or RSS feed to get all updates.
You can Email this page to a friend.
Related Other Helpful FAQs:
- Stop / Restart Lighttpd Server
- Lighttpd as you compiled without pcre support error and solution
- FreeBSD Lighttpd fastcgi php configuration and installation
- Warning: Remote Host Identification Has Changed error and solution
- Debian / Ubuntu Linux search package names with apt-cache command
Discussion on This FAQ
Leave a Reply
We encourage your comments, and suggestions. But please stay on topic, be polite, and avoid spam. Thank you very much for stopping by our site!



November 17th, 2007 at 4:59 pm
thanks man