diff options
author | Guido Falsi <madpilot@FreeBSD.org> | 2021-01-09 16:43:48 +0000 |
---|---|---|
committer | Guido Falsi <madpilot@FreeBSD.org> | 2021-01-09 16:43:48 +0000 |
commit | 48193806f8f98625f0f35a217e72d5c595786e39 (patch) | |
tree | 6b371ee48a16fd3e268ceadebd492e66f048fd4a | |
parent | e4713ff2dc8fdab4b8b44c7f17a55e30284cbccf (diff) | |
download | ports-48193806f8f98625f0f35a217e72d5c595786e39.tar.gz ports-48193806f8f98625f0f35a217e72d5c595786e39.zip |
Fix conky build on head after commit a21def4d568f which removed the
wi driver.
The code actually depending on this include is already disabled by
#if 0, so there is no functional change.
Notes
Notes:
svn path=/head/; revision=560876
-rw-r--r-- | sysutils/conky/files/patch-src_freebsd.cc | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/sysutils/conky/files/patch-src_freebsd.cc b/sysutils/conky/files/patch-src_freebsd.cc new file mode 100644 index 000000000000..17d94196195c --- /dev/null +++ b/sysutils/conky/files/patch-src_freebsd.cc @@ -0,0 +1,12 @@ +--- src/freebsd.cc.orig 2020-07-27 12:01:52 UTC ++++ src/freebsd.cc +@@ -49,7 +49,9 @@ + #include <unistd.h> + + #include <dev/acpica/acpiio.h> ++#if 0 + #include <dev/wi/if_wavelan_ieee.h> ++#endif + + #include <mutex> + |