mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-02 01:20:54 +00:00
Update to 0.0.18.
This commit is contained in:
parent
fc4f42cddd
commit
efdbcf3e6f
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=239176
@ -6,7 +6,7 @@
|
||||
#
|
||||
|
||||
PORTNAME= farsight2
|
||||
PORTVERSION= 0.0.13
|
||||
PORTVERSION= 0.0.14
|
||||
CATEGORIES= net-im devel
|
||||
MASTER_SITES= http://farsight.freedesktop.org/releases/farsight2/
|
||||
|
||||
|
@ -1,3 +1,3 @@
|
||||
MD5 (farsight2-0.0.13.tar.gz) = a5263020a6d3ffcc50bc8e591b0d5665
|
||||
SHA256 (farsight2-0.0.13.tar.gz) = b214bf84fd1af7083e8721cfd137288b75adc23aeebeeee2d37d981b2471be31
|
||||
SIZE (farsight2-0.0.13.tar.gz) = 1051654
|
||||
MD5 (farsight2-0.0.14.tar.gz) = fbfa45661b7949abf9bf92c2531ac392
|
||||
SHA256 (farsight2-0.0.14.tar.gz) = 88337ceb368ffb2afa46bd8166352ee594573d7580a936010a01be542d8d4a84
|
||||
SIZE (farsight2-0.0.14.tar.gz) = 1054752
|
||||
|
@ -1,11 +0,0 @@
|
||||
--- gst-libs/gst/farsight/fs-plugin.c.orig 2009-02-27 23:42:55.000000000 -0500
|
||||
+++ gst-libs/gst/farsight/fs-plugin.c 2009-02-27 23:43:19.000000000 -0500
|
||||
@@ -363,7 +363,7 @@ fs_plugin_list_available (const gchar *t
|
||||
if (!dir)
|
||||
{
|
||||
GST_WARNING ("Could not open path %s to look for plugins: %s",
|
||||
- search_path, error ? error->message : "Unknown error");
|
||||
+ *search_path, error ? error->message : "Unknown error");
|
||||
g_clear_error (&error);
|
||||
continue;
|
||||
}
|
@ -1,15 +0,0 @@
|
||||
--- gst/fsrtpconference/fs-rtp-session.c.orig 2009-02-27 23:45:45.000000000 -0500
|
||||
+++ gst/fsrtpconference/fs-rtp-session.c 2009-02-27 23:46:16.000000000 -0500
|
||||
@@ -3613,10 +3613,10 @@ fs_rtp_session_associate_free_substreams
|
||||
}
|
||||
else
|
||||
{
|
||||
- GST_ERROR ("Could not associate a substream with its stream",
|
||||
+ GST_ERROR ("Could not associate a substream with its stream (%s)",
|
||||
error->message);
|
||||
fs_session_emit_error (FS_SESSION (session), error->code,
|
||||
- "Could not associate a substream with its stream",
|
||||
+ "Could not associate a substream with its stream (%s)",
|
||||
error->message);
|
||||
}
|
||||
g_clear_error (&error);
|
@ -8,14 +8,3 @@
|
||||
# include <netinet/ip.h>
|
||||
# include <arpa/inet.h>
|
||||
#endif /*G_OS_WIN32*/
|
||||
@@ -644,8 +645,10 @@ _bind_port (
|
||||
GST_WARNING ("could not set TOS: %s", g_strerror (errno));
|
||||
|
||||
prio = 6;
|
||||
+#ifdef SO_PRIORITY
|
||||
if (setsockopt (sock, SOL_SOCKET, SO_PRIORITY, &prio, sizeof (tos)) < 0)
|
||||
GST_WARNING ( "could not set socket priority: %s", g_strerror (errno));
|
||||
+#endif
|
||||
|
||||
address.sin_port = htons (port);
|
||||
retval = bind (sock, (struct sockaddr *) &address, sizeof (address));
|
||||
|
@ -1,13 +1,10 @@
|
||||
--- transmitters/rawudp/fs-rawudp-transmitter.c.orig 2009-08-01 16:45:45.000000000 -0400
|
||||
+++ transmitters/rawudp/fs-rawudp-transmitter.c 2009-08-01 16:46:50.000000000 -0400
|
||||
@@ -603,8 +603,10 @@ _bind_port (
|
||||
GST_WARNING ( "could not set TOS: %s", g_strerror (errno));
|
||||
|
||||
prio = 6;
|
||||
+#ifdef SO_PRIORITY
|
||||
if (setsockopt (sock, SOL_SOCKET, SO_PRIORITY, &prio, sizeof (tos)) < 0)
|
||||
GST_WARNING ( "could not set socket priority: %s", g_strerror (errno));
|
||||
+#endif
|
||||
|
||||
return sock;
|
||||
}
|
||||
--- transmitters/rawudp/fs-rawudp-transmitter.c.orig 2009-08-03 16:20:07.000000000 -0400
|
||||
+++ transmitters/rawudp/fs-rawudp-transmitter.c 2009-08-08 14:47:44.000000000 -0400
|
||||
@@ -53,6 +53,7 @@
|
||||
#else /*G_OS_WIN32*/
|
||||
# include <netdb.h>
|
||||
# include <sys/socket.h>
|
||||
+# include <netinet/in.h>
|
||||
# include <netinet/ip.h>
|
||||
# include <arpa/inet.h>
|
||||
#endif /*G_OS_WIN32*/
|
||||
|
Loading…
Reference in New Issue
Block a user