Your message dated Wed, 07 Sep 2005 09:02:10 -0700
with message-id <[EMAIL PROTECTED]>
and subject line Bug#326964: fixed in openalpp-cvs 20050907-1
has caused the attached Bug report to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what I am
talking about this indicates a serious mail system misconfiguration
somewhere.  Please contact me immediately.)

Debian bug tracking system administrator
(administrator, Debian Bugs database)

--------------------------------------
Received: (at submit) by bugs.debian.org; 6 Sep 2005 21:51:57 +0000
>From [EMAIL PROTECTED] Tue Sep 06 14:51:57 2005
Return-path: <[EMAIL PROTECTED]>
Received: from c173076.adsl.hansenet.de (localhost.localdomain) [213.39.173.76] 
        by spohr.debian.org with esmtp (Exim 3.36 1 (Debian))
        id 1EClMC-0002bq-00; Tue, 06 Sep 2005 14:51:56 -0700
Received: from aj by localhost.localdomain with local (Exim 4.52)
        id 1EClMB-0003oa-6P; Tue, 06 Sep 2005 23:51:55 +0200
To: Debian Bug Tracking System <[EMAIL PROTECTED]>
From: Andreas Jochens <[EMAIL PROTECTED]>
Subject: openalpp-cvs: FTBFS: invalid conversion from 'ALubyte*' to 'const 
ALchar*'
Message-Id: <[EMAIL PROTECTED]>
Date: Tue, 06 Sep 2005 23:51:55 +0200
Delivered-To: [EMAIL PROTECTED]
X-Spam-Checker-Version: SpamAssassin 2.60-bugs.debian.org_2005_01_02 
        (1.212-2003-09-23-exp) on spohr.debian.org
X-Spam-Level: 
X-Spam-Status: No, hits=-6.4 required=4.0 tests=BAYES_00,HAS_PACKAGE,
        UPPERCASE_25_50 autolearn=no version=2.60-bugs.debian.org_2005_01_02

Package: openalpp-cvs
Version: 20041206-2
Severity: serious
Tags: patch

When building 'openalpp-cvs' on unstable, I get the following error:

make[2]: Entering directory `/openalpp-cvs-20041206/src'
if /bin/sh ../libtool --mode=compile x86_64-linux-gnu-g++ -DPACKAGE_NAME=\"\" 
-DPACKAGE_TARNAME=\"\" -DPACKAGE_VERSION=\"\" -DPACKAGE_STRING=\"\" 
-DPACKAGE_BUGREPORT=\"\" -DPACKAGE=\"openalpp\" -DVERSION=\"0.2\" 
-DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 
-DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 
-DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_DLFCN_H=1 -DHAVE_LIBOPENAL=1 
-DSTDC_HEADERS=1  -I. -I. -I../include  -I/usr/local/include  -Wall -g -O2 -MT 
audioenvironment.lo -MD -MP -MF ".deps/audioenvironment.Tpo" \
  -c -o audioenvironment.lo `test -f 'audioenvironment.cpp' || echo 
'./'`audioenvironment.cpp; \
then mv -f ".deps/audioenvironment.Tpo" ".deps/audioenvironment.Plo"; \
else rm -f ".deps/audioenvironment.Tpo"; exit 1; \
fi
mkdir .libs
 x86_64-linux-gnu-g++ -DPACKAGE_NAME=\"\" -DPACKAGE_TARNAME=\"\" 
-DPACKAGE_VERSION=\"\" -DPACKAGE_STRING=\"\" -DPACKAGE_BUGREPORT=\"\" 
-DPACKAGE=\"openalpp\" -DVERSION=\"0.2\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 
-DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 
-DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 
-DHAVE_DLFCN_H=1 -DHAVE_LIBOPENAL=1 -DSTDC_HEADERS=1 -I. -I. -I../include 
-I/usr/local/include -Wall -g -O2 -MT audioenvironment.lo -MD -MP -MF 
.deps/audioenvironment.Tpo -c audioenvironment.cpp  -fPIC -DPIC -o 
.libs/audioenvironment.o
audioenvironment.cpp: In member function 'void 
openalpp::AudioEnvironment::initiateReverb()':
audioenvironment.cpp:150: error: invalid conversion from 'ALubyte*' to 'const 
ALchar*'
audioenvironment.cpp:150: error:   initializing argument 1 of 'void* 
alGetProcAddress(const ALchar*)'
audioenvironment.cpp:152: error: invalid conversion from 'ALubyte*' to 'const 
ALchar*'
audioenvironment.cpp:152: error:   initializing argument 1 of 'void* 
alGetProcAddress(const ALchar*)'
make[2]: *** [audioenvironment.lo] Error 1
make[2]: Leaving directory `/openalpp-cvs-20041206/src'

The attached patch fixes this, but there are still other problems,
i.e. the package still FTBFS.

Regards
Andreas Jochens

diff -urN ../tmp-orig/openalpp-cvs-20041206/src/audiobase.cpp 
./src/audiobase.cpp
--- ../tmp-orig/openalpp-cvs-20041206/src/audiobase.cpp 2004-11-11 
07:57:58.000000000 +0000
+++ ./src/audiobase.cpp 2005-09-06 19:28:14.000000000 +0000
@@ -37,7 +37,7 @@
     device_ =alcOpenDevice((unsigned char *)initString);
 
 #else
-    device_=alcOpenDevice((/*const */ALubyte *)"'((direction \"write\")) 
'((devices '(alsa sdl native null)))");
+    device_=alcOpenDevice((/*const */ALchar *)"'((direction \"write\")) 
'((devices '(alsa sdl native null)))");
 #endif
     if(!device_)
       throw InitError("Couldn't open device.");
@@ -70,17 +70,17 @@
 
     // Check for EAX 2.0 support
     unsigned char szFnName[256];
-    ALboolean g_bEAX = alIsExtensionPresent((ALubyte*)"EAX2.0");
+    ALboolean g_bEAX = alIsExtensionPresent((ALchar*)"EAX2.0");
     if (g_bEAX == AL_TRUE)
     {
       sprintf((char*)szFnName, "EAXSet");
-      ALvoid *eaxSet = alGetProcAddress(szFnName);
+      ALvoid *eaxSet = alGetProcAddress((ALchar*)szFnName);
       if (eaxSet == NULL) g_bEAX = AL_FALSE;
     }
     if (g_bEAX == AL_TRUE)
     {
       sprintf((char*)szFnName,"EAXGet");
-      ALvoid *eaxGet = alGetProcAddress(szFnName);
+      ALvoid *eaxGet = alGetProcAddress((ALchar*)szFnName);
       if (eaxGet == NULL) g_bEAX = AL_FALSE;
     }
     if (g_bEAX == AL_TRUE)
diff -urN ../tmp-orig/openalpp-cvs-20041206/src/audioenvironment.cpp 
./src/audioenvironment.cpp
--- ../tmp-orig/openalpp-cvs-20041206/src/audioenvironment.cpp  2004-11-11 
07:57:58.000000000 +0000
+++ ./src/audioenvironment.cpp  2005-09-06 19:25:59.000000000 +0000
@@ -147,9 +147,9 @@
     return;
  
   alReverbScale=(void (*)(ALuint sid, ALfloat param))
-    alGetProcAddress((ALubyte *)"alReverbScale_LOKI");
+    alGetProcAddress((ALchar *)"alReverbScale_LOKI");
   alReverbDelay=(void (*)(ALuint sid, ALfloat param))
-    alGetProcAddress((ALubyte *)"alReverbDelay_LOKI");
+    alGetProcAddress((ALchar *)"alReverbDelay_LOKI");
   if(!(alReverbScale && alReverbDelay)) {
     throw InitError("Couldn't initiate reverb");
   } else

---------------------------------------
Received: (at 326964-close) by bugs.debian.org; 7 Sep 2005 16:09:41 +0000
>From [EMAIL PROTECTED] Wed Sep 07 09:09:41 2005
Return-path: <[EMAIL PROTECTED]>
Received: from katie by spohr.debian.org with local (Exim 3.36 1 (Debian))
        id 1ED2NG-00027y-00; Wed, 07 Sep 2005 09:02:10 -0700
From: Loic Dachary (OuoU) <[EMAIL PROTECTED]>
To: [EMAIL PROTECTED]
X-Katie: $Revision: 1.56 $
Subject: Bug#326964: fixed in openalpp-cvs 20050907-1
Message-Id: <[EMAIL PROTECTED]>
Sender: Archive Administrator <[EMAIL PROTECTED]>
Date: Wed, 07 Sep 2005 09:02:10 -0700
Delivered-To: [EMAIL PROTECTED]
X-Spam-Checker-Version: SpamAssassin 2.60-bugs.debian.org_2005_01_02 
        (1.212-2003-09-23-exp) on spohr.debian.org
X-Spam-Level: 
X-Spam-Status: No, hits=-6.0 required=4.0 tests=BAYES_00,HAS_BUG_NUMBER 
        autolearn=no version=2.60-bugs.debian.org_2005_01_02

Source: openalpp-cvs
Source-Version: 20050907-1

We believe that the bug you reported is fixed in the latest version of
openalpp-cvs, which is due to be installed in the Debian FTP archive:

libopenalpp-cvs-dev_20050907-1_i386.deb
  to pool/main/o/openalpp-cvs/libopenalpp-cvs-dev_20050907-1_i386.deb
libopenalpp-cvs_20050907-1_i386.deb
  to pool/main/o/openalpp-cvs/libopenalpp-cvs_20050907-1_i386.deb
openalpp-cvs-doc_20050907-1_all.deb
  to pool/main/o/openalpp-cvs/openalpp-cvs-doc_20050907-1_all.deb
openalpp-cvs_20050907-1.diff.gz
  to pool/main/o/openalpp-cvs/openalpp-cvs_20050907-1.diff.gz
openalpp-cvs_20050907-1.dsc
  to pool/main/o/openalpp-cvs/openalpp-cvs_20050907-1.dsc
openalpp-cvs_20050907.orig.tar.gz
  to pool/main/o/openalpp-cvs/openalpp-cvs_20050907.orig.tar.gz



A summary of the changes between this version and the previous one is
attached.

Thank you for reporting the bug, which will now be closed.  If you
have further comments please address them to [EMAIL PROTECTED],
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Loic Dachary (OuoU) <[EMAIL PROTECTED]> (supplier of updated openalpp-cvs 
package)

(This message was generated automatically at their request; if you
believe that there is a problem with it please contact the archive
administrators by mailing [EMAIL PROTECTED])


-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1

Format: 1.7
Date: Wed,  7 Sep 2005 15:24:01 +0200
Source: openalpp-cvs
Binary: openalpp-cvs-doc libopenalpp-cvs-dev libopenalpp-cvs
Architecture: source all i386
Version: 20050907-1
Distribution: unstable
Urgency: low
Maintainer: Loic Dachary (OuoU) <[EMAIL PROTECTED]>
Changed-By: Loic Dachary (OuoU) <[EMAIL PROTECTED]>
Description: 
 libopenalpp-cvs - Object Oriented version of OpenAL
 libopenalpp-cvs-dev - Object Oriented version of OpenAL
 openalpp-cvs-doc - Object Oriented version of OpenAL
Closes: 326964
Changes: 
 openalpp-cvs (20050907-1) unstable; urgency=low
 .
   * upstream sync 20050907 (closes: #326964)
Files: 
 7ce03774db1aa69d60bd141af822002a 741 libs optional openalpp-cvs_20050907-1.dsc
 f6c6cf9900dc18a1e63c3911c00ec75d 1530186 libs optional 
openalpp-cvs_20050907.orig.tar.gz
 39909e417681b4bc62133f3270f3f539 4793 libs optional 
openalpp-cvs_20050907-1.diff.gz
 f46c65fab97c4753bc7f7d948c7b46ef 116978 libdevel optional 
openalpp-cvs-doc_20050907-1_all.deb
 73d48f1635d0f1118b5b675023eb3244 19750 libdevel optional 
libopenalpp-cvs-dev_20050907-1_i386.deb
 1d589a38c44fb58ce0a267ab757e8170 58602 libs optional 
libopenalpp-cvs_20050907-1_i386.deb

-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.1 (GNU/Linux)

iD8DBQFDHwpj8dLMyEl6F20RAtkqAKCOWJNI/cO1WcZ0vNVdUULMpY/jIACcD6te
+bv5DdVLmKUCi3jwqptYG6k=
=LR9B
-----END PGP SIGNATURE-----


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]

Reply via email to