diff options
author | sunpoet <sunpoet@FreeBSD.org> | 2012-03-05 10:00:45 +0800 |
---|---|---|
committer | sunpoet <sunpoet@FreeBSD.org> | 2012-03-05 10:00:45 +0800 |
commit | 573bb9ea545f317859f1680979a56debce05fe76 (patch) | |
tree | 1c8178c1c9a1484365fe8dd726ff19816681fdf7 /audio | |
parent | 162f13bcc9ebe21ad180b2def95dadb4cceb30dd (diff) | |
download | freebsd-ports-gnome-573bb9ea545f317859f1680979a56debce05fe76.tar.gz freebsd-ports-gnome-573bb9ea545f317859f1680979a56debce05fe76.tar.zst freebsd-ports-gnome-573bb9ea545f317859f1680979a56debce05fe76.zip |
- Fix build with curl 7.24.0: curl/types.h was removed (unused since Apr 2004)
PR: ports/165701
Notified by: makc
Submitted by: sunpoet (myself)
Approved by: Jason E. Hale <bsdkaffee@gmail.com> (maintainer)
Diffstat (limited to 'audio')
-rw-r--r-- | audio/libtunepimp/files/patch-lib_protocol.cpp | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/audio/libtunepimp/files/patch-lib_protocol.cpp b/audio/libtunepimp/files/patch-lib_protocol.cpp index b7648102f14d..df8c2277681c 100644 --- a/audio/libtunepimp/files/patch-lib_protocol.cpp +++ b/audio/libtunepimp/files/patch-lib_protocol.cpp @@ -1,6 +1,6 @@ --- lib/protocol.cpp.orig 2010-06-07 10:47:20.653619576 +0300 +++ lib/protocol.cpp 2010-06-07 10:47:55.249722982 +0300 -@@ -8,6 +8,7 @@ +@@ -8,11 +8,11 @@ -------------------------------------------------------------------*/ #include <stdio.h> #include <stdlib.h> @@ -8,3 +8,8 @@ #include <string> #include <map> #include <expat.h> + #include <curl/curl.h> +-#include <curl/types.h> + #include <curl/easy.h> + using namespace std; + |