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
=>
- 30 Handy Bash Shell Aliases For Linux / Unix / Mac OS X
- Top 30 Nmap Command Examples For Sys/Network Admins
- 25 PHP Security Best Practices For Sys Admins
- 20 Linux System Monitoring Tools Every SysAdmin Should Know
- 20 Linux Server Hardening Security Tips
- Linux: 20 Iptables Examples For New SysAdmins
- Top 20 OpenSSH Server Best Security Practices
- Top 20 Nginx WebServer Best Security Practices
- 20 Examples: Make Sure Unix / Linux Configuration Files Are Free From Syntax Errors
- 15 Greatest Open Source Terminal Applications Of 2012

- My 10 UNIX Command Line Mistakes
- Top 10 Open Source Web-Based Project Management Software
- Top 5 Email Client For Linux, Mac OS X, and Windows Users
- The Novice Guide To Buying A Linux Laptop













{ 1 comment… read it below or add one }
thanks man