ALT Linux Sisyphus discussions
 help / color / mirror / Atom feed
From: "Хихин Руслан" <hihin@yandex.ru>
To: ALT Linux Sisyphus mailing list <sisyphus@lists.altlinux.org>
Subject: Re: [sisyphus] I: Sisyphus-20080211 i586 unmets: +1682 -14 (1730/214)] vegastrike
Date: Tue, 12 Feb 2008 23:52:32 +0300
Message-ID: <200802122352.39115@ruslandh> (raw)
In-Reply-To: <20080210215245.GA9335@wo.int.altlinux.org>


[-- Attachment #1.1: Type: text/plain, Size: 516 bytes --]

Здравствуйте Dmitry V. Levin
  В сообщении от 11 февраля 2008 Dmitry V. Levin написал(a):
 > vegastrike
Что касается autotools - правильное расставление запятых решило 
проблему :
Убран пробел перед запятой и поставлен после  :

-	   AC_TRY_CPP([#include <vorbis/vorbisfile.h> ] ,have_vorbis_h=yes , 
have_vorbis_h=no)

-	   AC_MSG_RESULT([$have_vorbis_h])]
+	   AC_TRY_CPP([#include <vorbis/vorbisfile.h> ], have_vorbis_h=yes, 
have_vorbis_h=no) 
+	   AC_MSG_RESULT([$have_vorbis_h])

-- 
С  уважением Хихин Руслан

[-- Attachment #1.2: vegastrike-0.4.13-al_init.patch --]
[-- Type: text/x-diff, Size: 1019 bytes --]

diff -uNr vegastrike/src/aldrv/al_init.cpp vegastrike-new/src/aldrv/al_init.cpp
--- vegastrike/src/aldrv/al_init.cpp	2004-05-20 05:04:26 +0400
+++ vegastrike-new/src/aldrv/al_init.cpp	2008-02-12 23:11:01 +0300
@@ -20,7 +20,7 @@
 #include "al_globals.h"
 #include <vector>
 static void fixup_function_pointers(void) {
-  alutLoadMP3p = (mp3Loader *) alGetProcAddress((ALubyte *)"alutLoadMP3_LOKI");
+  alutLoadMP3p =  (mp3Loader *) alGetProcAddress((const ALchar *)"alutLoadMP3_LOKI");
   if(alutLoadMP3p == NULL) {
     VSFileSystem::vs_fprintf(stderr, "Could not GetProc %s\n","alutLoadMP3_LOKI");
   }
@@ -174,7 +174,7 @@
 		return false;
 	}
 
-	alcMakeContextCurrent( context_id );
+	alcMakeContextCurrent((ALCcontext*) context_id );
 
 	fixup_function_pointers();
 	ALenum alGetEr = 0;
@@ -215,7 +215,7 @@
   }
   buffers.clear();
   if (context_id)
-    alcDestroyContext(context_id);
+    alcDestroyContext((ALCcontext*) context_id);
   if (dev)
     alcCloseDevice( dev );
 #endif

[-- Attachment #1.3: vegastrike-0.4.3-autotools.patch --]
[-- Type: text/x-diff, Size: 1077 bytes --]

diff -uNr vegastrike/configure.in vegastrike-new/configure.in
--- vegastrike/configure.in	2008-02-12 19:44:59 +0300
+++ vegastrike-new/configure.in	2008-02-12 19:43:18 +0300
@@ -1259,19 +1259,19 @@
        	   LIBS=" $VORBIS_LDOPTS -lvorbisfile -lvorbis -logg "
 	   saved_CPPFLAGS="$CPPFLAGS"
 	   CPPFLAGS="$saved_CPPFLAGS $VORBIS_CFLAGS"
+
 	   AC_MSG_CHECKING([for vorbis header])
-	   AC_TRY_CPP([#include <vorbis/vorbisfile.h> ] ,have_vorbis_h=yes , have_vorbis_h=no)
-	   AC_MSG_RESULT([$have_vorbis_h])]
+	   AC_TRY_CPP([#include <vorbis/vorbisfile.h> ], have_vorbis_h=yes, have_vorbis_h=no) 
+	   AC_MSG_RESULT([$have_vorbis_h])
 	   if test "x$have_vorbis_h" = "xyes" ; then
 	      VS_CPPFLAGS="${VS_CPPFLAGS} ${VORBIS_CFLAGS} -DHAVE_OGG "
 	      echo "found VORBIS header: Enabling ingame ogg support:: ${VS_CPPFLAGS}"
 	   else
 	      echo "failed to locate VORBIS  install vorbis/vorbisfile.h"
 	   fi
-	   
        
-    else
-	echo "failed to locate VORBIS library"
+    else
+	echo "failed to locate VORBIS library"
     fi
 fi
 

[-- Attachment #2: This is a digitally signed message part. --]
[-- Type: application/pgp-signature, Size: 197 bytes --]

      parent reply	other threads:[~2008-02-12 20:52 UTC|newest]

Thread overview: 44+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2008-02-10 21:52 [sisyphus] I: Sisyphus-20080211 i586 unmets: +1682 -14 (1730/214)] Dmitry V. Levin
2008-02-10 22:28 ` Alexey Shabalin
2008-02-11 12:23   ` Шишков Евгений
2008-02-11 19:16   ` Grigory Batalov
2008-02-11 19:33     ` Damir Shayhutdinov
2008-02-11 20:52       ` Grigory Batalov
2008-02-11 20:59         ` Damir Shayhutdinov
2008-02-11 21:15           ` Grigory Batalov
2008-02-12 11:53             ` Grigory Batalov
2008-02-12 12:24               ` Damir Shayhutdinov
2008-02-12 13:21                 ` Grigory Batalov
2008-02-12 14:02                   ` Damir Shayhutdinov
2008-02-11 19:55     ` Alexey Rusakov
2008-02-11 20:50       ` Grigory Batalov
2008-02-12  5:32         ` Хихин Руслан
2008-02-12  6:06           ` Хихин Руслан
2008-02-12 11:38             ` Grigory Batalov
2008-02-12 11:40           ` Grigory Batalov
2008-02-12 14:20             ` Egor Vyscrebentsov
2008-02-12 15:10               ` Grigory Batalov
2008-02-12 14:49                 ` Egor Vyscrebentsov
2008-02-12 14:37             ` ruslandh
2008-02-12 15:06             ` ruslandh
2008-02-12 15:24               ` Grigory Batalov
2008-02-12 17:44                 ` Grigory Batalov
2008-02-12 18:03                 ` Хихин Руслан
2008-02-12 22:48                   ` Alexey Rusakov
2008-02-12 14:07     ` Egor Vyscrebentsov
2008-02-13 13:51     ` Valery V. Inozemtsev
2008-02-13 14:45       ` Grigory Batalov
2008-02-13 14:55         ` Valery V. Inozemtsev
2008-02-13 21:13           ` Grigory Batalov
2008-02-13 23:18             ` Grigory Batalov
2008-02-13 14:57       ` Damir Shayhutdinov
2008-02-11  9:12 ` Michael Shigorin
2008-02-11 12:42   ` Damir Shayhutdinov
2008-02-11 18:59     ` Alexey Rusakov
2008-02-11 21:21       ` Alexey Borovskoy
2008-02-11 21:46         ` Dmitry V. Levin
2008-02-11 21:58         ` Хихин Руслан
2008-02-13 17:35           ` [sisyphus] {backports,updates}/4.0 Michael Shigorin
2008-02-14 10:26             ` Eugene Prokopiev
2008-02-14 11:26               ` Michael Shigorin
2008-02-12 20:52 ` Хихин Руслан [this message]

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=200802122352.39115@ruslandh \
    --to=hihin@yandex.ru \
    --cc=sisyphus@lists.altlinux.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link

ALT Linux Sisyphus discussions

This inbox may be cloned and mirrored by anyone:

	git clone --mirror http://lore.altlinux.org/sisyphus/0 sisyphus/git/0.git

	# If you have public-inbox 1.1+ installed, you may
	# initialize and index your mirror using the following commands:
	public-inbox-init -V2 sisyphus sisyphus/ http://lore.altlinux.org/sisyphus \
		sisyphus@altlinux.ru sisyphus@altlinux.org sisyphus@lists.altlinux.org sisyphus@lists.altlinux.ru sisyphus@lists.altlinux.com sisyphus@linuxteam.iplabs.ru sisyphus@list.linux-os.ru
	public-inbox-index sisyphus

Example config snippet for mirrors.
Newsgroup available over NNTP:
	nntp://lore.altlinux.org/org.altlinux.lists.sisyphus


AGPL code for this site: git clone https://public-inbox.org/public-inbox.git