head 1.2; access; symbols pkgsrc-2013Q2:1.2.0.50 pkgsrc-2013Q2-base:1.2 pkgsrc-2012Q4:1.2.0.48 pkgsrc-2012Q4-base:1.2 pkgsrc-2011Q4:1.2.0.46 pkgsrc-2011Q4-base:1.2 pkgsrc-2011Q2:1.2.0.44 pkgsrc-2011Q2-base:1.2 pkgsrc-2009Q4:1.2.0.42 pkgsrc-2009Q4-base:1.2 pkgsrc-2008Q4:1.2.0.40 pkgsrc-2008Q4-base:1.2 pkgsrc-2008Q3:1.2.0.38 pkgsrc-2008Q3-base:1.2 cube-native-xorg:1.2.0.36 cube-native-xorg-base:1.2 pkgsrc-2008Q2:1.2.0.34 pkgsrc-2008Q2-base:1.2 pkgsrc-2008Q1:1.2.0.32 pkgsrc-2008Q1-base:1.2 pkgsrc-2007Q4:1.2.0.30 pkgsrc-2007Q4-base:1.2 pkgsrc-2007Q3:1.2.0.28 pkgsrc-2007Q3-base:1.2 pkgsrc-2007Q2:1.2.0.26 pkgsrc-2007Q2-base:1.2 pkgsrc-2007Q1:1.2.0.24 pkgsrc-2007Q1-base:1.2 pkgsrc-2006Q4:1.2.0.22 pkgsrc-2006Q4-base:1.2 pkgsrc-2006Q3:1.2.0.20 pkgsrc-2006Q3-base:1.2 pkgsrc-2006Q2:1.2.0.18 pkgsrc-2006Q2-base:1.2 pkgsrc-2006Q1:1.2.0.16 pkgsrc-2006Q1-base:1.2 pkgsrc-2005Q4:1.2.0.14 pkgsrc-2005Q4-base:1.2 pkgsrc-2005Q3:1.2.0.12 pkgsrc-2005Q3-base:1.2 pkgsrc-2005Q2:1.2.0.10 pkgsrc-2005Q2-base:1.2 pkgsrc-2005Q1:1.2.0.8 pkgsrc-2005Q1-base:1.2 pkgsrc-2004Q4:1.2.0.6 pkgsrc-2004Q4-base:1.2 pkgsrc-2004Q3:1.2.0.4 pkgsrc-2004Q3-base:1.2 pkgsrc-2004Q2:1.2.0.2 pkgsrc-2004Q2-base:1.2 pkgsrc-2004Q1:1.1.1.1.0.2 pkgsrc-2004Q1-base:1.1.1.1 pkgsrc-base:1.1.1.1 TNF:1.1.1; locks; strict; comment @# @; 1.2 date 2004.04.01.19.05.43; author jmmv; state dead; branches; next 1.1; 1.1 date 2004.01.26.11.46.28; author jmmv; state Exp; branches 1.1.1.1; next ; 1.1.1.1 date 2004.01.26.11.46.28; author jmmv; state Exp; branches; next ; desc @@ 1.2 log @Update to 0.8.0: Changes since 0.7.6: * coding style consistency for .c files * ABI padding for GstCaps and GstStructure Changes since 0.7.5: * uses 0.8 as the major/minor number * opt scheduler fixes * don't link non-versioned tools to gstreamer * bindings-related fixes and additions Changes since 0.7.4: * API additions for bindings * Queue memleak fix * optimal scheduler fixes * Ghost pad fixes * Signal marshalling fixes * documentation fixes * underquotedness fixes for automake 1.8 * fixed atomic implementation on sparc and S390 * gstreamer-scan fixes * multidisksrc renamed to multifilesrc * fixed GstCaps docs * fixed libxml checking when not needed * added timeout to filesrc * added support for double dparams * make spider report an error when it can't handle a mime type * fixed navigation event handling * added codec and volume tags Bugs fixed since 0.7.4: * 105844 : --disable-loadsave --disable-registry still check for libxml * 118310 : Timeout support added for fdsrc * 127133 : [API] Need non-vararg version of gst_index_add_association * 127815 : gst-register sigsegs 100% of the time. * 129600 : patch to compile on OSX * 131362 : use serialize/deserialize in the core * 132045 : incorrect dependency causes rebuilding of libgstreamer on "m * 132935 : setting pipeline -> NULL -> PLAYING doesn't restart stream * 132996 : configure fails: aclocal: macro `jm_AC_TYPE_UNSIGNED_LONG_LO * 133391 : the asm mutex implementation is broken on SPARC * 133631 : gst-launch seg faults in gst_caps_free with no sink * 133800 : fixes for underquoted macros and automake 1.8.x * 133817 : add support for disc number tag * 134128 : typo in ./gstreamer/gst/gstclock.c * 134145 : pot-update not updated after file removal * 134583 : Race on gst_pad_link_free * 134816 : test -e in autogen.sh does not work on Solaris * 134841 : gst-inspect.c is defining GList *pads twice @ text @$NetBSD: patch-ab,v 1.1 2004/01/26 11:46:28 jmmv Exp $ --- tools/gst-launch.c.orig 2003-02-02 01:05:42.000000000 +0100 +++ tools/gst-launch.c 2003-05-13 00:24:19.000000000 +0200 @@@@ -1,7 +1,9 @@@@ +#include #include #include #include #include +#include #include static guint64 iterations = 0; @@@@ -10,6 +12,15 @@@@ static guint64 max = 0; static GstClock *s_clock; +#ifndef SI_USER +typedef struct { + char *si_addr; + int si_signo; + int si_errno; + int si_code; +} siginfo_t; +#endif + gboolean idle_func (gpointer data) { @@@@ -158,6 +169,20 @@@@ } +#ifndef SI_USER +void si_handler(int sig, int code, struct sigcontext *scp) +{ + siginfo_t si; + + si.si_addr = NULL; + si.si_signo = sig; + si.si_errno = errno; + si.si_code = code; + + fault_handler(sig, &si, scp); +} +#endif + static void fault_restore (void) { @@@@ -176,8 +201,13 @@@@ struct sigaction action; memset (&action, 0, sizeof (action)); +#ifdef SI_USER action.sa_sigaction = fault_handler; - action.sa_flags = SA_SIGINFO; + action.sa_flags = 0; +#else + action.sa_handler = (void (*)(int))si_handler; + action.sa_flags = 0; +#endif sigaction (SIGSEGV, &action, NULL); sigaction (SIGQUIT, &action, NULL); @ 1.1 log @Initial revision @ text @d1 1 a1 1 $NetBSD: patch-ab,v 1.5 2003/05/18 13:09:03 cjep Exp $ @ 1.1.1.1 log @Move gstreamer to the multimedia category (coming from misc). This is version 0.6.4. @ text @@