]> git.sur5r.net Git - i3/i3status/commitdiff
Fix build under FreeBSD after recent changes for Linux. 71/head
authorJohn Baldwin <jhb@FreeBSD.org>
Thu, 8 Oct 2015 20:20:02 +0000 (13:20 -0700)
committerJohn Baldwin <jhb@FreeBSD.org>
Thu, 8 Oct 2015 20:20:02 +0000 (13:20 -0700)
src/print_wireless_info.c

index 463962517c30febaf1354d62a9be3ea5501c9a7d..a3ab6701eb89c8d113310a0f81beb5aafa77957b 100644 (file)
@@ -65,7 +65,9 @@
 typedef struct {
     int flags;
     char essid[IW_ESSID_MAX_SIZE + 1];
+#ifdef LINUX
     uint8_t bssid[ETH_ALEN];
+#endif
     int quality;
     int quality_max;
     int quality_average;
@@ -77,6 +79,7 @@ typedef struct {
     double frequency;
 } wireless_info_t;
 
+#ifdef LINUX
 // Like iw_print_bitrate, but without the dependency on libiw.
 static void print_bitrate(char *buffer, int buflen, int bitrate) {
     const int kilo = 1e3;
@@ -251,6 +254,7 @@ static int gwi_scan_cb(struct nl_msg *msg, void *data) {
 
     return NL_SKIP;
 }
+#endif
 
 static int get_wireless_info(const char *interface, wireless_info_t *info) {
     memset(info, 0, sizeof(wireless_info_t));