]> git.pld-linux.org Git - packages/arts.git/commitdiff
- Updated
authoradgor <adgor@pld-linux.org>
Sun, 10 Sep 2006 16:30:46 +0000 (16:30 +0000)
committercvs2git <feedback@pld-linux.org>
Sun, 24 Jun 2012 12:13:13 +0000 (12:13 +0000)
Changed files:
    arts-branch.diff -> 1.3

arts-branch.diff

index 7b11907d0eecc2f363708b31b4701fe34cb85e6f..1e59de3b6a1486eba1cd53eda2f454b618f519cd 100644 (file)
-Index: arts/soundserver/artswrapper.c
+Index: tests/testifacerepo.cc
 ===================================================================
---- arts/soundserver/artswrapper.c     (.../tags/arts/1.5.3)   (revision 549703)
-+++ arts/soundserver/artswrapper.c     (.../branches/arts/1.5) (revision 549703)
-@@ -95,6 +95,10 @@
- #else
-               setreuid(-1, getuid());
- #endif
-+              if (geteuid() != getuid()) {
-+                      perror("setuid()");
-+                      return 2;
-+              }
-       }
-       if(argc == 0)
-Index: arts/soundserver/crashhandler.cc
+--- tests/testifacerepo.cc     (.../tags/arts/1.5.4/arts)      (revision 582125)
++++ tests/testifacerepo.cc     (.../branches/arts/1.5/arts)    (revision 582125)
+@@ -21,7 +21,7 @@
+     */
+ #include <algorithm>
+-#include "core.h"
++#include "common.h"
+ #include "test.h"
+ using namespace Arts;
+Index: tests/testanyref.cc
+===================================================================
+--- tests/testanyref.cc        (.../tags/arts/1.5.4/arts)      (revision 582125)
++++ tests/testanyref.cc        (.../branches/arts/1.5/arts)    (revision 582125)
+@@ -20,8 +20,7 @@
+     */
+-#include "anyref.h"
+-#include "core.h"
++#include "common.h"
+ #include "test.h"
+ using namespace Arts;
+Index: flow/audioioalsa.cc
 ===================================================================
---- arts/soundserver/crashhandler.cc   (.../tags/arts/1.5.3)   (revision 549703)
-+++ arts/soundserver/crashhandler.cc   (.../branches/arts/1.5) (revision 549703)
-@@ -196,7 +196,12 @@
-           argv[i++] = NULL;
-           setgid(getgid());
--          setuid(getuid());
-+          if (getuid() != geteuid())
-+            setuid(getuid());
-+          if (getuid() != geteuid()) {
-+          perror("setuid()");
-+            exit(255);
-+          }
-           execvp(crashApp, argv);
-Index: arts/flow/gsl/gslmagic.c
+--- flow/audioioalsa.cc        (.../tags/arts/1.5.4/arts)      (revision 582125)
++++ flow/audioioalsa.cc        (.../branches/arts/1.5/arts)    (revision 582125)
+@@ -114,7 +114,11 @@
+        */
+     m_card = snd_defaults_pcm_card();  //!! need interface !!
+     m_device = snd_defaults_pcm_device(); //!!
++#ifdef WORDS_BIGENDIAN
++    m_format = SND_PCM_SFMT_S16_BE;
++#else
+     m_format = SND_PCM_SFMT_S16_LE;
++#endif
+     m_bufferMode = block;  //block/stream (stream mode doesn't work yet)
+       if(m_card >= 0) {
+Index: examples/referenceinfo.cc
+===================================================================
+--- examples/referenceinfo.cc  (.../tags/arts/1.5.4/arts)      (revision 582125)
++++ examples/referenceinfo.cc  (.../branches/arts/1.5/arts)    (revision 582125)
+@@ -23,7 +23,7 @@
+     */
+-#include "core.h"
++#include "common.h"
+ #include <stdio.h>
+ using namespace Arts;
+Index: examples/x11commtest.cc
 ===================================================================
---- arts/flow/gsl/gslmagic.c   (.../tags/arts/1.5.3)   (revision 549703)
-+++ arts/flow/gsl/gslmagic.c   (.../branches/arts/1.5) (revision 549703)
-@@ -616,7 +616,7 @@
-     return FALSE;
-   do
--    ret = fstat (bfile->fd, &buf) < 0;
-+    ret = fstat (bfile->fd, &buf);
-   while (ret < 0 && errno == EINTR);
-   if (ret < 0)
-     {
+--- examples/x11commtest.cc    (.../tags/arts/1.5.4/arts)      (revision 582125)
++++ examples/x11commtest.cc    (.../branches/arts/1.5/arts)    (revision 582125)
+@@ -25,7 +25,7 @@
+     */
+ #include <iostream>
+-#include "core.h"
++#include "common.h"
+ using namespace std;
+ using namespace Arts;
+Index: examples/helloserver.cc
+===================================================================
+--- examples/helloserver.cc    (.../tags/arts/1.5.4/arts)      (revision 582125)
++++ examples/helloserver.cc    (.../branches/arts/1.5/arts)    (revision 582125)
+@@ -23,7 +23,7 @@
+     */
+-#include "core.h"
++#include "common.h"
+ #include "hello_impl.h"
+ #include <stdio.h>
+Index: Makefile.am.in
+===================================================================
+--- Makefile.am.in     (.../tags/arts/1.5.4/arts)      (revision 582125)
++++ Makefile.am.in     (.../branches/arts/1.5/arts)    (revision 582125)
+@@ -21,7 +21,7 @@
+ $(top_srcdir)/acinclude.m4: $(top_srcdir)/libltdl/ltdl.m4
+-AUTOMAKE_OPTIONS = foreign 1.5
++AUTOMAKE_OPTIONS = foreign 1.6.1
+ COMPILE_FIRST = libltdl mcop mcopidl flow mcop_mt soundserver artsc examples tests doc 
+ EXTRA_DIST = admin
 
-Property changes on: arts
+Property changes on: .
 ___________________________________________________________________
 Name: svn:externals
    + libltdl https://svn.kde.org/home/kde/branches/KDE/3.5/kdelibs/libltdl
This page took 0.125407 seconds and 4 git commands to generate.