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

Fix using the wireless-vars

This commit is contained in:
Nikolas Garofil 2010-02-20 17:59:51 +01:00
parent cbc5aaad91
commit d91214e290
2 changed files with 5 additions and 5 deletions

View File

@ -89,7 +89,7 @@ if(BUILD_WLAN)
if(NOT IWLIB_LIB)
message(FATAL_ERROR "Unable to find libiw.so")
endif(NOT IWLIB_LIB)
set(CMAKE_REQUIRED_LIBRARIES ${IWLIB_LIB})
set(conky_libs ${conky_libs} ${IWLIB_LIB})
check_function_exists(iw_sockets_open IWLIB_SOCKETS_OPEN_FUNC)
endif(BUILD_WLAN)

View File

@ -76,7 +76,7 @@
#define NBD_MAJOR 43
#endif
#ifdef HAVE_IWLIB
#ifdef BUILD_WLAN
#include <iwlib.h>
#endif
@ -356,7 +356,7 @@ void update_net_stats(void)
char buf[256];
double delta;
#ifdef HAVE_IWLIB
#ifdef BUILD_WLAN
// wireless info variables
int skfd, has_bitrate = 0;
struct wireless_info *winfo;
@ -496,9 +496,9 @@ void update_net_stats(void)
}
}
#ifdef HAVE_IWLIB
#ifdef BUILD_WLAN
/* update wireless info */
winfo = malloc(sizeof(struct wireless_info));
winfo = (struct wireless_info *) malloc(sizeof(struct wireless_info));
memset(winfo, 0, sizeof(struct wireless_info));
skfd = iw_sockets_open();