* [devel] Как найти, где спрятались *.h файлы
@ 2002-11-11 12:27 Igor Tertishny
2002-11-11 12:39 ` Alexander Bokovoy
0 siblings, 1 reply; 5+ messages in thread
From: Igor Tertishny @ 2002-11-11 12:27 UTC (permalink / raw)
To: devel
Компилю совершенно бесподобную прогу. Но возникает проблема - постоянно идет
ошибка о ненахождении переменных из заголовочного файла. SDL и alsa. Даю
кусочек вывода:
DL_alsa_audio.c:73: `SND_PCM_CHANNEL_PLAYBACK' undeclared (first use in this
function)
SDL_alsa_audio.c:74: `SND_PCM_MODE_BLOCK' undeclared (first use in this
function)
SDL_alsa_audio.c:76: `SND_PCM_STOP_STOP' undeclared (first use in this
function)
SDL_alsa_audio.c:77: `SND_PCM_SFMT_S16_LE' undeclared (first use in this
function)
SDL_alsa_audio.c: In function `Audio_Available':
SDL_alsa_audio.c:98: `snd_pcm_channel_params_t' undeclared (first use in this
function)
SDL_alsa_audio.c:98: parse error before "cparams"
SDL_alsa_audio.c:106: `cparams' undeclared (first use in this function)
SDL_alsa_audio.c:108: `SND_PCM_OPEN_PLAYBACK' undeclared (first use in this
function)
SDL_alsa_audio.c:108: `SND_PCM_OPEN_NONBLOCK' undeclared (first use in this
function)
Я пересмотрел все заголовочные файлы alsa, но не нашел этих переменных, а это
явно не переменные автора проги, а системные. Как найти, где их искать, чтобы
вставить в заголовочный файл? Мне проще переписать прогу самому, чем мурыжить
автора.
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [devel] Как найти, где спрятались *.h файлы
2002-11-11 12:27 [devel] Как найти, где спрятались *.h файлы Igor Tertishny
@ 2002-11-11 12:39 ` Alexander Bokovoy
2002-11-11 22:53 ` Igor Tertishny
0 siblings, 1 reply; 5+ messages in thread
From: Alexander Bokovoy @ 2002-11-11 12:39 UTC (permalink / raw)
To: devel
On Mon, Nov 11, 2002 at 02:27:27PM +0200, Igor Tertishny wrote:
> Компилю совершенно бесподобную прогу. Но возникает проблема - постоянно идет
> ошибка о ненахождении переменных из заголовочного файла. SDL и alsa. Даю
> кусочек вывода:
>
> DL_alsa_audio.c:73: `SND_PCM_CHANNEL_PLAYBACK' undeclared (first use in this
> function)
> SDL_alsa_audio.c:74: `SND_PCM_MODE_BLOCK' undeclared (first use in this
> function)
> SDL_alsa_audio.c:76: `SND_PCM_STOP_STOP' undeclared (first use in this
> function)
> SDL_alsa_audio.c:77: `SND_PCM_SFMT_S16_LE' undeclared (first use in this
> function)
> SDL_alsa_audio.c: In function `Audio_Available':
> SDL_alsa_audio.c:98: `snd_pcm_channel_params_t' undeclared (first use in this
> function)
> SDL_alsa_audio.c:98: parse error before "cparams"
> SDL_alsa_audio.c:106: `cparams' undeclared (first use in this function)
> SDL_alsa_audio.c:108: `SND_PCM_OPEN_PLAYBACK' undeclared (first use in this
> function)
> SDL_alsa_audio.c:108: `SND_PCM_OPEN_NONBLOCK' undeclared (first use in this
> function)
>
> Я пересмотрел все заголовочные файлы alsa, но не нашел этих переменных, а это
> явно не переменные автора проги, а системные. Как найти, где их искать, чтобы
> вставить в заголовочный файл? Мне проще переписать прогу самому, чем мурыжить
> автора.
Как вариант: автор использует более старую версию API этих библиотек?
--
/ Alexander Bokovoy
---
I am not afraid of tomorrow, for I have seen yesterday and I love today.
-- William Allen White
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [devel] Как найти, где спрятались *.h файлы
2002-11-11 12:39 ` Alexander Bokovoy
@ 2002-11-11 22:53 ` Igor Tertishny
2002-11-12 13:09 ` Anton Farygin
0 siblings, 1 reply; 5+ messages in thread
From: Igor Tertishny @ 2002-11-11 22:53 UTC (permalink / raw)
To: devel
>
> Как вариант: автор использует более старую версию API этих библиотек?
Вы оказались полностью правы... Это именно так, проверил. А вот как с этим
бороться не особо представляю, пакет oldalsa убрали, а здря... libalsa-devel
конфликтует с libalsa2-devel.
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [devel] Как найти, где спрятались *.h файлы
2002-11-11 22:53 ` Igor Tertishny
@ 2002-11-12 13:09 ` Anton Farygin
2002-11-12 21:15 ` Igor Tertishny
0 siblings, 1 reply; 5+ messages in thread
From: Anton Farygin @ 2002-11-12 13:09 UTC (permalink / raw)
To: devel
[-- Attachment #1: Type: text/plain, Size: 380 bytes --]
Igor Tertishny пишет:
>>Как вариант: автор использует более старую версию API этих библиотек?
>>
>>
>
>Вы оказались полностью правы... Это именно так, проверил. А вот как с этим
>бороться не особо представляю, пакет oldalsa убрали, а здря... libalsa-devel
>конфликтует с libalsa2-devel.
>
>
Как это не грустно, но придется портировать на новую версию alsa.
Rgds,
Rider
[-- Attachment #2: Type: application/pgp-signature, Size: 252 bytes --]
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [devel] Как найти, где спрятались *.h файлы
2002-11-12 13:09 ` Anton Farygin
@ 2002-11-12 21:15 ` Igor Tertishny
0 siblings, 0 replies; 5+ messages in thread
From: Igor Tertishny @ 2002-11-12 21:15 UTC (permalink / raw)
To: devel
>
> Как это не грустно, но придется портировать на новую версию alsa.
>
И это, похоже, можно сделать только ручками? Блудливыми? Других путей не
имеется?
^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2002-11-12 21:15 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2002-11-11 12:27 [devel] Как найти, где спрятались *.h файлы Igor Tertishny
2002-11-11 12:39 ` Alexander Bokovoy
2002-11-11 22:53 ` Igor Tertishny
2002-11-12 13:09 ` Anton Farygin
2002-11-12 21:15 ` Igor Tertishny
ALT Linux Team development discussions
This inbox may be cloned and mirrored by anyone:
git clone --mirror http://lore.altlinux.org/devel/0 devel/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 devel devel/ http://lore.altlinux.org/devel \
devel@altlinux.org devel@altlinux.ru devel@lists.altlinux.org devel@lists.altlinux.ru devel@linux.iplabs.ru mandrake-russian@linuxteam.iplabs.ru sisyphus@linuxteam.iplabs.ru
public-inbox-index devel
Example config snippet for mirrors.
Newsgroup available over NNTP:
nntp://lore.altlinux.org/org.altlinux.lists.devel
AGPL code for this site: git clone https://public-inbox.org/public-inbox.git