rpms/csound/FC-6 csound-5.03.0-disable-atsa.patch, NONE, 1.1 csound-5.03.0-gstabs-disable-option.patch, NONE, 1.1 csound-5.03.0-no-usr-local.patch, NONE, 1.1 csound-5.03.0-remote-fixes.patch, NONE, 1.1 csound-5.03.0-enable-fluidsynth.patch, 1.1, 1.2 csound.spec, 1.2, 1.3 sources, 1.2, 1.3 csound-5.03.0-no-gstabs.patch, 1.1, NONE csound-5.03.0-printf-redef.patch, 1.1, NONE csound-5.03.0-uninitialized.patch, 1.1, NONE

Daniel Williams (dcbw) fedora-extras-commits at redhat.com
Sun Oct 29 03:32:51 UTC 2006


Author: dcbw

Update of /cvs/extras/rpms/csound/FC-6
In directory cvs-int.fedora.redhat.com:/tmp/cvs-serv25315

Modified Files:
	csound-5.03.0-enable-fluidsynth.patch csound.spec sources 
Added Files:
	csound-5.03.0-disable-atsa.patch 
	csound-5.03.0-gstabs-disable-option.patch 
	csound-5.03.0-no-usr-local.patch 
	csound-5.03.0-remote-fixes.patch 
Removed Files:
	csound-5.03.0-no-gstabs.patch csound-5.03.0-printf-redef.patch 
	csound-5.03.0-uninitialized.patch 
Log Message:
* Sat Oct 28 2006 Dan Williams <dcbw at redhat.com> 5.03.0-7
- Rebuild to drop old source tarball

* Fri Oct 27 2006 Dan Williams <dcbw at redhat.com> 5.03.0-6
- Update to a cvs snapshot for the remote plugin and a few other fixes
- Split csound FLTK plugin out from -gui package since it's unrelated to the GUI bits
- Put the virtual MIDI keyboard into its own package

* Wed Oct 25 2006 Dan Williams <dcbw at redhat.com> 5.03.0-5
- Fix the remote plugin's local IP address read code, add more error checking

* Mon Oct 23 2006 Dan Williams <dcbw at redhat.com> 5.03.0-4
- Drop csound-5.03.0-uninitialized.patch, upstream
- Drop csound-5.03.0-printf-redef.patch, upstream
- CVS snapshot to grab some updated opcodes and fixes
- Make disabling -gstabs an option for better upstream palatability
- Disable atsa; it breaks the build for some unknown reason



csound-5.03.0-disable-atsa.patch:

--- NEW FILE csound-5.03.0-disable-atsa.patch ---
diff -ru Csound5.03.0/SConstruct /tmp/Csound5.03.0/SConstruct
--- Csound5.03.0/SConstruct	2006-10-23 16:07:41.000000000 -0400
+++ /tmp/Csound5.03.0/SConstruct	2006-08-11 09:23:01.000000000 -0400
@@ -1422,7 +1365,6 @@
 
 if (commonEnvironment['buildUtilities'] != '0'):
     utils = [
-        ['atsa',        'util/atsa_main.c'    ],
         ['cvanal',      'util/cvl_main.c'     ],
         ['dnoise',      'util/dnoise_main.c'  ],
         ['envext',      'util/env_main.c'     ],

csound-5.03.0-gstabs-disable-option.patch:

--- NEW FILE csound-5.03.0-gstabs-disable-option.patch ---
--- Csound5.03.0/SConstruct.gstabs-disable-option	2006-10-23 15:36:38.000000000 -0400
+++ Csound5.03.0/SConstruct	2006-10-23 15:39:28.000000000 -0400
@@ -161,6 +161,9 @@
 opts.Add('noDebug',
     'Build without debugging information.',
     '0')
+opts.Add('disableGStabs',
+    'Set to 1 if you want to turn off GStabs debug info support, which may break some architectures',
+    '0')
 opts.Add('gcc3opt',
     'Enable gcc 3.3.x or later optimizations for the specified CPU architecture (e.g. pentium3); implies noDebug.',
     '0')
@@ -289,7 +292,10 @@
     commonEnvironment.Prepend(CCFLAGS = ['-g', '-O2'])
   else:
     if not withMSVC():
-      commonEnvironment.Prepend(CCFLAGS = ['-g', '-gstabs', '-O2'])
+      debug_opts = ['-g', '-O2']
+      if commonEnvironment['disableGStabs'] == '0':
+        debug_opts.append('-gstabs')
+      commonEnvironment.Prepend(CCFLAGS = debug_opts)
 else:
   commonEnvironment.Prepend(CCFLAGS = ['-O2'])
 if commonEnvironment['useGprof'] == '1':

csound-5.03.0-no-usr-local.patch:

--- NEW FILE csound-5.03.0-no-usr-local.patch ---
--- Csound5.03.0/SConstruct.no-usr-local	2006-10-27 16:24:08.000000000 -0400
+++ Csound5.03.0/SConstruct	2006-10-27 16:26:03.000000000 -0400
@@ -306,10 +306,10 @@
 if commonEnvironment['buildRelease'] == '0':
     commonEnvironment.Prepend(CPPFLAGS = ['-DBETA'])
 if commonEnvironment['Word64'] == '1':
-    commonEnvironment.Prepend(LIBPATH = ['.', '#.', '/usr/local/lib64'])
+    commonEnvironment.Prepend(LIBPATH = ['.', '#.'])
     commonEnvironment.Append(CCFLAGS = ['-fPIC'])
 else:
-    commonEnvironment.Prepend(LIBPATH = ['.', '#.', '/usr/local/lib'])
+    commonEnvironment.Prepend(LIBPATH = ['.', '#.'])
 
 if commonEnvironment['useDouble'] == '0':
     print 'CONFIGURATION DECISION: Using single-precision floating point for audio samples.'
@@ -324,14 +324,12 @@
 
 if getPlatform() == 'linux':
     commonEnvironment.Append(CCFLAGS = "-DLINUX")
-    commonEnvironment.Append(CPPPATH = '/usr/local/include')
     commonEnvironment.Append(CPPPATH = '/usr/include')
     commonEnvironment.Append(CPPPATH = '/usr/X11R6/include')
     commonEnvironment.Append(CCFLAGS = "-DPIPES")
     commonEnvironment.Append(LINKFLAGS = ['-Wl,-Bdynamic'])
 elif getPlatform() == 'darwin':
     commonEnvironment.Append(CCFLAGS = "-DMACOSX")
-    commonEnvironment.Append(CPPPATH = '/usr/local/include')
     commonEnvironment.Append(CCFLAGS = "-DPIPES")
     if commonEnvironment['useAltivec'] == '1':
         print 'CONFIGURATION DECISION using Altivec optmisation'
@@ -342,7 +340,6 @@
     commonEnvironment.Append(CCFLAGS = "-DPIPES")
     commonEnvironment.Append(CCFLAGS = "-DOS_IS_WIN32")
     if not withMSVC():
-        commonEnvironment.Append(CPPPATH = '/usr/local/include')
         commonEnvironment.Append(CPPPATH = '/usr/include')
         commonEnvironment.Append(CCFLAGS = "-mthreads")
     else:
@@ -350,18 +347,17 @@
 
 if getPlatform() == 'linux':
     path1 = '/usr/include/python%s' % commonEnvironment['pythonVersion']
-    path2 = '/usr/local/include/python%s' % commonEnvironment['pythonVersion']
-    pythonIncludePath = [path1, path2]
+    pythonIncludePath = [path1]
     path1 = '/usr/include/tcl8.4'
     path2 = '/usr/include/tk8.4'
-    tclIncludePath = [path1, path2]
+    tclIncludePath = [path1]
     pythonLinkFlags = []
     if commonEnvironment['Word64'] == '1':
         tmp = '/usr/lib64/python%s/config' % commonEnvironment['pythonVersion']
-        pythonLibraryPath = ['/usr/local/lib64', '/usr/lib64', tmp]
+        pythonLibraryPath = ['/usr/lib64', tmp]
     else:
         tmp = '/usr/lib/python%s/config' % commonEnvironment['pythonVersion']
-        pythonLibraryPath = ['/usr/local/lib', '/usr/lib', tmp]
+        pythonLibraryPath = ['/usr/lib', tmp]
     pythonLibs = ['python%s' % commonEnvironment['pythonVersion']]
 elif getPlatform() == 'darwin':
     pyBasePath = '/System/Library/Frameworks/Python.Framework'

csound-5.03.0-remote-fixes.patch:

--- NEW FILE csound-5.03.0-remote-fixes.patch ---
--- Csound5.03.0/OOps/remote.c.remote-fixes	2006-10-27 16:00:10.000000000 -0400
+++ Csound5.03.0/OOps/remote.c	2006-10-27 16:32:02.000000000 -0400
@@ -38,6 +38,9 @@
 
 #define ST(x)   (((REMOTE_GLOBALS*) ((CSOUND*)csound)->remoteGlobals)->x)
 
+void remote_Cleanup(CSOUND *csound);
+
+
 void remoteRESET(CSOUND *csound)
 {
     csound->remoteGlobals = NULL;
@@ -46,9 +49,9 @@
 #ifdef HAVE_SOCKETS
 
  /* get the IPaddress of this machine */
-static void getIpAddress(char *ipaddr, char *ifname)
+static int getIpAddress(char *ipaddr, char *ifname)
 {
-
+    int ret = -1;
 #ifdef WIN32
     /* VL 12/10/06: something needs to go here */
     /* gethostbyname is the real answer; code below id unsafe */
@@ -61,25 +64,26 @@
     memset(&sin, 0, sizeof (struct sockaddr_in));
     memmove(&sin.sin_addr, he->h_addr_list[0], he->h_length);
     strcpy(ipaddr, inet_ntoa (sin.sin_addr));
+    ret = 0;
 
 #else
     struct ifreq ifr;
-    int fd, i;
-    unsigned char val;
+    int fd;
 
     fd = socket(AF_INET,SOCK_DGRAM, 0);
     if (fd >= 0) {
       strcpy(ifr.ifr_name, ifname);
 
       if (ioctl(fd, SIOCGIFADDR, &ifr) == 0) {
-        for( i=2; i<6; i++){
-          val = (unsigned char)ifr.ifr_ifru.ifru_addr.sa_data[i];
-          sprintf(ipaddr, "%s%d%s", ipaddr, val, i==5?"":".");
-        }
+        char *local;
+        local = inet_ntoa(((struct sockaddr_in *)(&ifr.ifr_addr))->sin_addr);
+        strcpy(ipaddr, local);
+        ret = 0;
       }
     }
     close(fd);
 #endif
+    return ret;
 }
 
 char remoteID(CSOUND *csound)
@@ -88,31 +92,83 @@
     return ST(ipadrs)[len-1];
 }
 
-static void callox(CSOUND *csound)
+static int callox(CSOUND *csound)
 {
-    if (csound->remoteGlobals == NULL)
+    if (csound->remoteGlobals == NULL) {
       csound->remoteGlobals = csound->Calloc(csound, sizeof(REMOTE_GLOBALS));
+      if (csound->remoteGlobals == NULL) {
+        csound->Message(csound, Str("insufficient memory to initialize remote"
+                        " globals."));
+        goto error;
+      }
+    }
 
     ST(socksout) = (SOCK*)csound->Calloc(csound,(size_t)MAXREMOTES * sizeof(SOCK));
+    if (ST(socksout) == NULL) {
+      csound->Message(csound, Str("insufficient memory to initialize outgoing "
+                      "socket table."));
+      goto error;
+    }
     ST(socksin) = (int*) csound->Calloc(csound,(size_t)MAXREMOTES * sizeof(int));
+    if (ST(socksin) == NULL) {
+      csound->Message(csound, Str("insufficient memory to initialize incoming "
+                      "socket table."));
+      goto error;
+    }
     ST(insrfd_list) =
       (int*) csound->Calloc(csound,(size_t)MAXREMOTES * sizeof(int));
+    if (ST(insrfd_list) == NULL) {
+      csound->Message(csound, Str("insufficient memory to initialize "
+                      "insrfd_list."));
+      goto error;
+    }
     ST(chnrfd_list) =
       (int*) csound->Calloc(csound,(size_t)MAXREMOTES * sizeof(int));
+    if (ST(chnrfd_list) == NULL) {
+      csound->Message(csound, Str("insufficient memory to initialize "
+                      "chnrfd_list."));
+      goto error;
+    }
     ST(insrfd) = (int*) csound->Calloc(csound,(size_t)129 * sizeof(int));
+    if (ST(insrfd) == NULL) {
+      csound->Message(csound, Str("insufficient memory to initialize "
+                      "insrfd table."));
+      goto error;
+    }
     ST(chnrfd) = (int*) csound->Calloc(csound,(size_t)17 * sizeof(int));
+    if (ST(chnrfd) == NULL) {
+      csound->Message(csound, Str("insufficient memory to initialize "
+                      "chnrfd table."));
+      goto error;
+    }
     ST(ipadrs) = (char*) csound->Calloc(csound,(size_t)15 * sizeof(char));
+    if (ST(ipadrs) == NULL) {
+      csound->Message(csound, Str("insufficient memory to initialize "
+                      "local ip address."));
+      goto error;
+    }
+
+    /* get IP adrs of this machine */
+    /* FIXME: don't hardcode eth0 */
+    if (getIpAddress(ST(ipadrs), "eth0") < 0) {
+      csound->Message(csound, Str("unable to get local ip address."));
+      goto error;
+    }
+
+	return 0;
 
-    getIpAddress(ST(ipadrs), "eth0"); /* get IP adrs of this machine */
+error:
+    /* Clean up anything we may have allocated before running out of memory */
+    remote_Cleanup(csound);
+    return -1;
 }
 
 /* Cleanup the above; called from musmon csoundCleanup */
 void remote_Cleanup(CSOUND *csound)
 {
     int fd;
-/*     if (csound->remoteGlobals == NULL) return; */
-    if (ST(socksout) == NULL) return;     /* if nothing allocated, return */
-    else {
+    if (csound->remoteGlobals == NULL) return;
+    if (ST(socksout) != NULL) {
       SOCK *sop = ST(socksout), *sop_end = sop + MAXREMOTES;
       for ( ; sop < sop_end; sop++)
         if ((fd = sop->rfd) > 0)
@@ -289,7 +345,12 @@
 {   /*      INSTR 0 opcode  */
     short nargs = p->INOCOUNT;
 
-    if (csound->remoteGlobals==NULL || ST(socksin) == NULL) callox(csound);
+    if (csound->remoteGlobals==NULL || ST(socksin) == NULL) {
+      if (callox(csound) < 0) {
+        csound->InitError(csound, Str("failed to initialize remote globals."));
+        return 0;
+      }
+    }
     if (nargs < 3) {
       csound->InitError(csound, Str("missing instr nos"));
       return 0;
@@ -331,7 +392,12 @@
 {   /*      INSTR 0 opcode  */
     short nargs = p->INOCOUNT;
 
-    if (csound->remoteGlobals==NULL || ST(socksin) == NULL) callox(csound);
+    if (csound->remoteGlobals==NULL || ST(socksin) == NULL) {
+      if (callox(csound) < 0) {
+        csound->InitError(csound, Str("failed to initialize remote globals."));
+        return 0;
+      }
+    }
     if (nargs < 2) {
       csound->InitError(csound, Str("missing instr nos"));
       return NOTOK;
@@ -361,7 +427,12 @@
 {                                            /* INSTR 0 opcode  */
     short nargs = p->INOCOUNT;
 
-    if (csound->remoteGlobals==NULL || ST(socksin) == NULL) callox(csound);
+    if (csound->remoteGlobals==NULL || ST(socksin) == NULL) {
+      if (callox(csound) < 0) {
+        csound->InitError(csound, Str("failed to initialize remote globals."));
+        return 0;
+      }
+    }
     if (nargs < 3) {
       csound->InitError(csound, Str("missing channel nos"));
       return NOTOK;
@@ -400,7 +471,12 @@
 {                                         /*       INSTR 0 opcode  */
     short nargs = p->INOCOUNT;
     
-    if (csound->remoteGlobals==NULL || ST(socksin) == NULL) callox(csound);
+    if (csound->remoteGlobals==NULL || ST(socksin) == NULL) {
+      if (callox(csound) < 0) {
+        csound->InitError(csound, Str("failed to initialize remote globals."));
+        return 0;
+      }
+    }
     if (nargs < 2) {
       csound->InitError(csound, Str("missing channel nos"));
       return NOTOK;

csound-5.03.0-enable-fluidsynth.patch:

Index: csound-5.03.0-enable-fluidsynth.patch
===================================================================
RCS file: /cvs/extras/rpms/csound/FC-6/csound-5.03.0-enable-fluidsynth.patch,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- csound-5.03.0-enable-fluidsynth.patch	5 Sep 2006 18:09:14 -0000	1.1
+++ csound-5.03.0-enable-fluidsynth.patch	29 Oct 2006 03:32:20 -0000	1.2
@@ -1,16 +1,16 @@
---- Csound5.03.0/SConstruct.enable-fluidsynth	2006-08-11 09:23:01.000000000 -0400
-+++ Csound5.03.0/SConstruct	2006-08-30 13:48:19.000000000 -0400
-@@ -212,6 +212,9 @@
- opts.Add('buildOSXGUI',
-     'On OSX, set to 1 to build the basic GUI frontend',
+--- Csound5.03.0/SConstruct.enable-fluidsynth	2006-10-21 11:03:22.000000000 -0400
++++ Csound5.03.0/SConstruct	2006-10-23 15:36:10.000000000 -0400
+@@ -225,6 +225,9 @@
      '0')
+ opts.Add('isWinNT', 'On windows, if win2000 or NT is used',
+           '%d' % withMSVC())
 +opts.Add('useFluidsynth',
 +    'Set to 1 if you want OSC support',
 +    '0')
  
  # Define the common part of the build environment.
  # This section also sets up customized options for third-party libraries, which
-@@ -405,6 +408,7 @@
+@@ -426,6 +429,7 @@
  pdhfound = configure.CheckHeader("m_pd.h", language = "C")
  tclhfound = configure.CheckHeader("tcl.h", language = "C")
  luaFound = configure.CheckHeader("lua.h", language = "C")
@@ -18,7 +18,7 @@
  swigFound = 'swig' in commonEnvironment['TOOLS']
  print 'Checking for SWIG... %s' % (['no', 'yes'][int(swigFound)])
  pythonFound = configure.CheckHeader("Python.h", language = "C")
-@@ -1187,7 +1191,7 @@
+@@ -1228,7 +1232,7 @@
  
  # FLUIDSYNTH OPCODES
  


Index: csound.spec
===================================================================
RCS file: /cvs/extras/rpms/csound/FC-6/csound.spec,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- csound.spec	8 Sep 2006 14:59:23 -0000	1.2
+++ csound.spec	29 Oct 2006 03:32:20 -0000	1.3
@@ -11,7 +11,7 @@
 Summary:       Csound - sound synthesis language and library
 Name:          csound
 Version:       5.03.0
-Release:       3%{?dist}
+Release:       7%{?dist}
 URL:           http://csound.sourceforge.net/
 License:       LGPL
 Group:         Applications/Multimedia
@@ -28,7 +28,7 @@
 BuildRequires: tk-devel tcl-devel
 BuildRequires: tetex tetex-latex libxslt
 
-Source0:     http://superb-east.dl.sourceforge.net/sourceforge/csound/Csound5.03_src.tgz
+Source0: http://superb-east.dl.sourceforge.net/sourceforge/csound/Csound5.03_src-cvs20061027.tar.bz2
 
 # NOTE:
 # Manual sources aren't distributed, but may be extracted from CVS via...
@@ -36,10 +36,11 @@
 # cvs -z9 -d :pserver:anonymous at csound.cvs.sourceforge.net:/cvsroot/csound checkout -P -r csound-5_03_0 manual
 Source1: Csound5.03_manual.tgz
 
-Patch0: csound-5.03.0-uninitialized.patch
-Patch1: csound-5.03.0-printf-redef.patch
-Patch2: csound-5.03.0-enable-fluidsynth.patch
-Patch3: csound-5.03.0-no-gstabs.patch
+Patch0: csound-5.03.0-enable-fluidsynth.patch
+Patch1: csound-5.03.0-gstabs-disable-option.patch
+Patch2: csound-5.03.0-no-usr-local.patch
+Patch3: csound-5.03.0-disable-atsa.patch
+Patch4: csound-5.03.0-remote-fixes.patch
 
 
 %description
@@ -109,6 +110,15 @@
 %description gui
 Contains a FLTK-based GUI for Csound
 
+%package fltk
+Summary: FLTK plugins for Csound
+Group: Applications/Multimedia
+Requires: %{name} = %{version}-%{release}
+Requires: fltk
+
+%description fltk
+Contains FLTK plugins for csound
+
 %package jack
 Summary: Jack Audio plugins for Csound
 Group: Applications/Multimedia
@@ -144,6 +154,15 @@
 %description osc
 Open Sound Control (OSC) plugin for Csound
 
+%package virtual-keyboard
+Summary: Virtual MIDI keyboard plugin for Csound
+Group: Applications/Multimedia
+Requires: %{name} = %{version}-%{release}
+Requires: fltk
+
+%description virtual-keyboard
+A virtual MIDI keyboard plugin for Csound
+
 %package manual
 Summary: Csound manual
 Group: Documentation
@@ -161,10 +180,12 @@
 
 %prep
 %setup -q -n Csound5.03.0
-%patch0 -p1 -b .uninitialized
-%patch1 -p1 -b .printf-redef
-%patch2 -p1 -b .enable-fluidsynth
-%patch3 -p1 -b .no-gstabs
+%patch0 -p1 -b .enable-fluidsynth
+%patch1 -p1 -b .gstabs-disable-option
+%patch2 -p1 -b .no-usr-local
+%patch3 -p1 -b .disable-atsa
+%patch4 -p1 -b .remote-fixes
+
 tar xf %{SOURCE1}
 
 %build
@@ -174,6 +195,11 @@
       frontends/fltk_gui/CsoundGlobalSettings.cpp
 
 scons dynamicCsoundLibrary=1 \
+      buildRelease=0 \
+      noDebug=0 \
+      disableGStabs=1 \
+      buildInterfaces=1 \
+      useALSA=1 \
       usePortAudio=0 \
       usePortMIDI=0 \
       useOSC=1 \
@@ -186,6 +212,7 @@
       buildTclcsound=1 \
       buildJavaWrapper=1 \
       buildDSSI=1 \
+      buildUtilities=1 \
       prefix=%{_prefix} \
       customCCFLAGS="%{optflags}" \
       customCXXFLAGS="%{optflags}" \
@@ -268,6 +295,8 @@
 %{_bindir}/scsort
 %{_bindir}/sndinfo
 %{_bindir}/srconv
+%{_bindir}/pv_export
+%{_bindir}/pv_import
 %{_libdir}/lib%{name}.so.5.1
 %dir %{_datadir}/%{name}
 %{_datadir}/%{name}/xmg/*.xmg
@@ -298,6 +327,9 @@
 %{_libdir}/%{name}/plugins/libudprecv.so
 %{_libdir}/%{name}/plugins/libudpsend.so
 %{_libdir}/%{name}/plugins/libvbap.so
+%{_libdir}/%{name}/plugins/libharmon.so
+%{_libdir}/%{name}/plugins/libugakbari.so
+%{_libdir}/%{name}/plugins/libvaops.so
 %{_libdir}/%{name}/plugins/opcodes.dir
 
 %files devel
@@ -332,6 +364,9 @@
 %files gui
 %defattr(-,root,root,0755)
 %{_bindir}/csound5gui
+
+%files fltk
+%defattr(-,root,root,0755)
 %{_libdir}/%{name}/plugins/libwidgets.so
 
 %files jack
@@ -350,6 +385,10 @@
 %defattr(-,root,root,0755)
 %{_libdir}/%{name}/plugins/libosc.so
 
+%files virtual-keyboard
+%defattr(-,root,root,0755)
+%{_libdir}/%{name}/plugins/libvirtual.so
+
 %files manual
 %defattr(-,root,root,0755)
 %doc manual/copying.txt manual/credits.txt manual/bugs.txt manual/readme.txt manual/news.txt
@@ -364,6 +403,24 @@
 %doc tutorial/*.py
 
 %changelog
+* Sat Oct 28 2006 Dan Williams <dcbw at redhat.com> 5.03.0-7
+- Rebuild to drop old source tarball
+
+* Fri Oct 27 2006 Dan Williams <dcbw at redhat.com> 5.03.0-6
+- Update to a cvs snapshot for the remote plugin and a few other fixes
+- Split csound FLTK plugin out from -gui package since it's unrelated to the GUI bits
+- Put the virtual MIDI keyboard into its own package
+
+* Wed Oct 25 2006 Dan Williams <dcbw at redhat.com> 5.03.0-5
+- Fix the remote plugin's local IP address read code, add more error checking
+
+* Mon Oct 23 2006 Dan Williams <dcbw at redhat.com> 5.03.0-4
+- Drop csound-5.03.0-uninitialized.patch, upstream
+- Drop csound-5.03.0-printf-redef.patch, upstream
+- CVS snapshot to grab some updated opcodes and fixes
+- Make disabling -gstabs an option for better upstream palatability
+- Disable atsa; it breaks the build for some unknown reason
+
 * Fri Sep  8 2006 Dan Williams <dcbw at redhat.com> 5.03.0-3
 - csound-5.03.0-no-gstabs.patch added; produce dwarf2 like everyone else
 


Index: sources
===================================================================
RCS file: /cvs/extras/rpms/csound/FC-6/sources,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- sources	5 Sep 2006 18:09:14 -0000	1.2
+++ sources	29 Oct 2006 03:32:20 -0000	1.3
@@ -1,2 +1,2 @@
 acebd377b0ca008d082657ef0270a949  Csound5.03_manual.tgz
-15801aef4abce5efb8975b201aa900a2  Csound5.03_src.tgz
+8f01e4b65c3cb046df04f7eae92448d5  Csound5.03_src-cvs20061027.tar.bz2


--- csound-5.03.0-no-gstabs.patch DELETED ---


--- csound-5.03.0-printf-redef.patch DELETED ---


--- csound-5.03.0-uninitialized.patch DELETED ---




More information about the scm-commits mailing list