1
0
mirror of https://github.com/Llewellynvdm/conky.git synced 2024-11-17 18:45:10 +00:00

* Fixed linux.c compilation problem due to (suspected) broken linux

headers


git-svn-id: https://conky.svn.sourceforge.net/svnroot/conky/trunk/conky1@1042 7f574dfc-610e-0410-a909-a81674777703
This commit is contained in:
Brenden Matthews 2008-03-24 03:38:28 +00:00
parent 902ff4ca5c
commit 7613414296
3 changed files with 11 additions and 0 deletions

View File

@ -2,6 +2,8 @@
2008-03-23
* Fixed compilation with --disable-x11
* Fixed linux.c compilation problem due to (suspected) broken linux
headers
2008-03-22
* Conky 1.5.0 released

View File

@ -61,6 +61,12 @@ pkg_setup() {
fi
}
src_unpack() {
unpack ${A}
cd ${S}
epatch ${FILESDIR}/conky-1.5.0-disable-x11.patch
}
src_compile() {
local mymake
if useq ipv6 ; then

View File

@ -52,6 +52,9 @@
#include <linux/sockios.h>
#include <net/if.h>
#include <arpa/inet.h>
#ifdef _NET_IF_H
#define _LINUX_IF_H
#endif
#include <linux/route.h>
#include <math.h>