head	1.2;
access;
symbols
	pkgsrc-2018Q1:1.1.0.22
	pkgsrc-2018Q1-base:1.1
	pkgsrc-2017Q4:1.1.0.20
	pkgsrc-2017Q4-base:1.1
	pkgsrc-2017Q3:1.1.0.18
	pkgsrc-2017Q3-base:1.1
	pkgsrc-2017Q2:1.1.0.14
	pkgsrc-2017Q2-base:1.1
	pkgsrc-2017Q1:1.1.0.12
	pkgsrc-2017Q1-base:1.1
	pkgsrc-2016Q4:1.1.0.10
	pkgsrc-2016Q4-base:1.1
	pkgsrc-2016Q3:1.1.0.8
	pkgsrc-2016Q3-base:1.1
	pkgsrc-2016Q2:1.1.0.6
	pkgsrc-2016Q2-base:1.1
	pkgsrc-2016Q1:1.1.0.4
	pkgsrc-2016Q1-base:1.1
	pkgsrc-2015Q4:1.1.0.2
	pkgsrc-2015Q4-base:1.1;
locks; strict;
comment	@# @;


1.2
date	2018.04.25.21.42.05;	author kamil;	state dead;
branches;
next	1.1;
commitid	OKxmMnBtA7R6ZRzA;

1.1
date	2015.10.25.10.52.24;	author wiz;	state Exp;
branches;
next	;
commitid	YdVGq20ss7mCKtGy;


desc
@@


1.2
log
@vlc20: Removed

This is a legacy version of VLC 2.0.x.

Reasons:
 - It uses FFMPEG 2.x with old OpenSSL.
 - It uses legacy x264 incompatible with the pkgsrc one.

There is a newer version multimedia/vlc for 2.2.x and 3.0.x released
upstream.
@
text
@$NetBSD: patch-ar,v 1.1 2015/10/25 10:52:24 wiz Exp $

--- modules/misc/inhibit/xdg.c.orig	2011-11-22 20:30:36.000000000 +0000
+++ modules/misc/inhibit/xdg.c
@@@@ -27,7 +27,11 @@@@
 #include <vlc_inhibit.h>
 #include <assert.h>
 #include <signal.h>
+#ifdef _POSIX_SPAWN
+# if (_POSIX_SPAWN >= 0)
 #include <spawn.h>
+# endif
+#endif
 #include <sys/wait.h>
 
 static int Open (vlc_object_t *);
@@@@ -47,7 +51,11 @@@@ struct vlc_inhibit_sys
     vlc_thread_t thread;
     vlc_cond_t update, inactive;
     vlc_mutex_t lock;
+#ifdef _POSIX_SPAWN
+# if (_POSIX_SPAWN >= 0)
     posix_spawnattr_t attr;
+# endif
+#endif
     bool suspend, suspended;
 };
 
@@@@ -67,17 +75,29 @@@@ static int Open (vlc_object_t *obj)
     vlc_mutex_init (&p_sys->lock);
     vlc_cond_init (&p_sys->update);
     vlc_cond_init (&p_sys->inactive);
+#ifdef _POSIX_SPAWN
+# if (_POSIX_SPAWN >= 0)
     posix_spawnattr_init (&p_sys->attr);
+# endif
+#endif
     /* Reset signal handlers to default and clear mask in the child process */
     {
         sigset_t set;
 
         sigemptyset (&set);
+#ifdef _POSIX_SPAWN
+# if (_POSIX_SPAWN >= 0)
         posix_spawnattr_setsigmask (&p_sys->attr, &set);
+# endif
+#endif
         sigaddset (&set, SIGPIPE);
+#ifdef _POSIX_SPAWN
+# if (_POSIX_SPAWN >= 0)
         posix_spawnattr_setsigdefault (&p_sys->attr, &set);
         posix_spawnattr_setflags (&p_sys->attr, POSIX_SPAWN_SETSIGDEF
                                               | POSIX_SPAWN_SETSIGMASK);
+# endif
+#endif
     }
     p_sys->suspend = false;
     p_sys->suspended = false;
@@@@ -106,7 +126,11 @@@@ static void Close (vlc_object_t *obj)
 
     vlc_cancel (p_sys->thread);
     vlc_join (p_sys->thread, NULL);
+#ifdef _POSIX_SPAWN
+# if (_POSIX_SPAWN >= 0)
     posix_spawnattr_destroy (&p_sys->attr);
+# endif
+#endif
     vlc_cond_destroy (&p_sys->inactive);
     vlc_cond_destroy (&p_sys->update);
     vlc_mutex_destroy (&p_sys->lock);
@@@@ -152,6 +176,8 @@@@ static void *Thread (void *data)
         pid_t pid;
 
         vlc_mutex_unlock (&p_sys->lock);
+#ifdef _POSIX_SPAWN
+# if (_POSIX_SPAWN >= 0)
         if (!posix_spawnp (&pid, "xdg-screensaver", NULL, &p_sys->attr,
                            argv, environ))
         {
@@@@ -162,6 +188,8 @@@@ static void *Thread (void *data)
             while (waitpid (pid, &status, 0) == -1);
         }
         else/* We don't handle the error, but busy looping would be worse :( */
+# endif
+#endif
             msg_Warn (ih, "could not start xdg-screensaver");
 
         vlc_mutex_lock (&p_sys->lock);
@


1.1
log
@Re-Import vlc-2.0.9nb21 (from vlc2) as multimedia/vlc20.

To better clarify which version this packages.

VideoLAN is a project of French students from the Ecole Centrale Paris
and developers from all over the world. Its main goals is MPEG streaming
on a network, but it also features a standalone multimedia player. The
VideoLAN Server can stream video read from a hard disk, a DVD player,
a satellite card or an MPEG 2 compression card, and unicast or multicast
it on a network. The VideoLAN Client can read the stream from the network
and display it. It can also be used to display video read locally on
the computer : DVDs, VCDs, MPEG and DivX files and from a satellite
card. It is multi-plaform : Linux, Windows, Mac OS X, BeOS, BSD, Solaris,
QNX, iPaq... The VideoLAN Client and Server now have a full IPv6 support.

This version is the last version with support for OSSv3, which is the
OSS version implemented in NetBSD before NetBSD 7.
@
text
@d1 1
a1 1
$NetBSD: patch-ar,v 1.1.1.1 2012/02/21 12:49:43 drochner Exp $
@

