packages/mail/clamsmtp/patches/010-fix-build.patch
Rosen Penev 087983a97e clamsmtp: Fix compile under musl
sys/socket already includes the needed socket stuff. Including the second
header causes the build to fail.

Signed-off-by: Rosen Penev <rosenp@gmail.com>
2018-08-26 08:20:21 -07:00

12 lines
270 B
Diff

diff --git a/common/sock_any.h b/common/sock_any.h
index 77c3841..1e30974 100644
--- a/common/sock_any.h
+++ b/common/sock_any.h
@@ -39,7 +39,6 @@
#ifndef __SOCK_ANY_H__
#define __SOCK_ANY_H__
-#include <sys/socket.h>
#include <sys/un.h>
#include <netinet/in.h>