diff options
author | Roy Marples <uberlord@gentoo.org> | 2006-09-29 09:15:43 +0000 |
---|---|---|
committer | Roy Marples <uberlord@gentoo.org> | 2006-09-29 09:15:43 +0000 |
commit | b902640042c96263c9aa401cbc5c30ea6c0a9c84 (patch) | |
tree | fe46c72edefde8062e40ea4018ae0ccbe6cacfd2 /net-wireless/wpa_supplicant/files | |
parent | Revbump to ensure nobody has world-writable javaws. Synced with ibm-jdk-bin (... (diff) | |
download | gentoo-2-b902640042c96263c9aa401cbc5c30ea6c0a9c84.tar.gz gentoo-2-b902640042c96263c9aa401cbc5c30ea6c0a9c84.tar.bz2 gentoo-2-b902640042c96263c9aa401cbc5c30ea6c0a9c84.zip |
Add a patch to enable dbus interface to compile on FreeBSD - you'll still need
the dbus-core from the overlay though AND tweak the ebuild slightly.
Keyworded ~xf86-fbsd.
(Portage version: 2.1.2_pre1-r4)
Diffstat (limited to 'net-wireless/wpa_supplicant/files')
-rw-r--r-- | net-wireless/wpa_supplicant/files/wpa_supplicant-0.5.5-sigpoll.patch | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/net-wireless/wpa_supplicant/files/wpa_supplicant-0.5.5-sigpoll.patch b/net-wireless/wpa_supplicant/files/wpa_supplicant-0.5.5-sigpoll.patch new file mode 100644 index 000000000000..6460e8234c15 --- /dev/null +++ b/net-wireless/wpa_supplicant/files/wpa_supplicant-0.5.5-sigpoll.patch @@ -0,0 +1,16 @@ +--- ctrl_iface_dbus.h.orig 2006-09-29 09:41:07 +0100 ++++ ctrl_iface_dbus.h 2006-09-29 09:44:23 +0100 +@@ -17,6 +17,13 @@ + + #ifdef CONFIG_CTRL_IFACE_DBUS + ++/* If we don't have SIGPOLL, so use SIGIO instead */ ++#ifndef SIGPOLL ++#ifdef SIGIO ++#define SIGPOLL SIGIO ++#endif ++#endif ++ + #include <dbus/dbus.h> + + #define WPAS_DBUS_OBJECT_PATH_MAX 150 |