diff options
author | Peter Pentchev <roam@FreeBSD.org> | 2006-12-13 12:41:35 +0000 |
---|---|---|
committer | Peter Pentchev <roam@FreeBSD.org> | 2006-12-13 12:41:35 +0000 |
commit | 64e068d25c1370f67d2f0d779ac1719f9bc5d137 (patch) | |
tree | e8e79d2b112a29862848aa733e4b3f9387c78d2e /audio/icecast2 | |
parent | 68ee2dd59c7dc7173d1688b825cc1c5a70f097c1 (diff) |
Notes
Diffstat (limited to 'audio/icecast2')
-rw-r--r-- | audio/icecast2/Makefile | 2 | ||||
-rw-r--r-- | audio/icecast2/files/patch-src::auth_url.c | 12 |
2 files changed, 13 insertions, 1 deletions
diff --git a/audio/icecast2/Makefile b/audio/icecast2/Makefile index 3ef7902fc3d9..1728ed7410c1 100644 --- a/audio/icecast2/Makefile +++ b/audio/icecast2/Makefile @@ -7,7 +7,7 @@ PORTNAME= icecast2 PORTVERSION= 2.3.1 -PORTREVISION= 3 +PORTREVISION= 4 PORTEPOCH= 1 CATEGORIES= audio net ipv6 MASTER_SITES= http://svn.xiph.org/releases/icecast/ diff --git a/audio/icecast2/files/patch-src::auth_url.c b/audio/icecast2/files/patch-src::auth_url.c new file mode 100644 index 000000000000..d70bf74b9e70 --- /dev/null +++ b/audio/icecast2/files/patch-src::auth_url.c @@ -0,0 +1,12 @@ +--- src/auth_url.c.orig Thu Dec 7 17:26:49 2006 ++++ src/auth_url.c Thu Dec 7 17:27:05 2006 +@@ -518,7 +518,9 @@ + curl_easy_setopt (url_info->handle, CURLOPT_WRITEDATA, url_info->handle); + curl_easy_setopt (url_info->handle, CURLOPT_NOSIGNAL, 1L); + curl_easy_setopt (url_info->handle, CURLOPT_TIMEOUT, 15L); ++#if LIBCURL_VERSION_NUM < 0x071000 + curl_easy_setopt (url_info->handle, CURLOPT_PASSWDFUNCTION, my_getpass); ++#endif + curl_easy_setopt (url_info->handle, CURLOPT_ERRORBUFFER, &url_info->errormsg[0]); + + if (url_info->username && url_info->password) |