ALT Linux Team development discussions
 help / color / mirror / Atom feed
* [devel] libusb version
@ 2009-03-04 22:46 Gennady Kovalev
  2009-03-04 23:02 ` Alexey I. Froloff
                   ` (2 more replies)
  0 siblings, 3 replies; 6+ messages in thread
From: Gennady Kovalev @ 2009-03-04 22:46 UTC (permalink / raw)
  To: ALT Linux Team development discussions

Здоровья Вам!

Пытаюсь опакетить madwimax (http://code.google.com/p/madwimax). Он 
требует libusb-1.0, а у нас в Sisyphus 0.9.4, причем так, что он провайдит

/usr/lib/libusb-1.0.so.0
/usr/lib/libusb-1.0.so.0.0.0

Что делать с libusb?


^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: [devel] libusb version
  2009-03-04 22:46 [devel] libusb version Gennady Kovalev
@ 2009-03-04 23:02 ` Alexey I. Froloff
  2009-03-05  5:17 ` Alexander Bokovoy
  2009-03-05  5:18 ` Alexander Bokovoy
  2 siblings, 0 replies; 6+ messages in thread
From: Alexey I. Froloff @ 2009-03-04 23:02 UTC (permalink / raw)
  To: ALT Devel discussion list

[-- Attachment #1: Type: text/plain, Size: 291 bytes --]

* Gennady Kovalev <gik@> [090305 01:48]:
> Пытаюсь опакетить madwimax (http://code.google.com/p/madwimax). Он 
> требует libusb-1.0, а у нас в Sisyphus 0.9.4, причем так, что он провайдит
И что не нравится?

$ pkg-config --exists libusb-1.0 && echo OK
OK

-- 
Regards,
Sir Raorn.

[-- Attachment #2: Digital signature --]
[-- Type: application/pgp-signature, Size: 189 bytes --]

^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: [devel] libusb version
  2009-03-04 22:46 [devel] libusb version Gennady Kovalev
  2009-03-04 23:02 ` Alexey I. Froloff
@ 2009-03-05  5:17 ` Alexander Bokovoy
  2009-03-05  6:39   ` Alexey I. Froloff
  2009-03-05  5:18 ` Alexander Bokovoy
  2 siblings, 1 reply; 6+ messages in thread
From: Alexander Bokovoy @ 2009-03-05  5:17 UTC (permalink / raw)
  To: ALT Linux Team development discussions

2009/3/5 Gennady Kovalev <gik@bigur.ru>:
> Здоровья Вам!
>
> Пытаюсь опакетить madwimax (http://code.google.com/p/madwimax). Он требует
> libusb-1.0, а у нас в Sisyphus 0.9.4, причем так, что он провайдит
>
> /usr/lib/libusb-1.0.so.0
> /usr/lib/libusb-1.0.so.0.0.0
>
> Что делать с libusb?
Использовать pkgconfig с запросом пакета libusb-1.0, как уже показал raorn.


-- 
/ Alexander Bokovoy

^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: [devel] libusb version
  2009-03-04 22:46 [devel] libusb version Gennady Kovalev
  2009-03-04 23:02 ` Alexey I. Froloff
  2009-03-05  5:17 ` Alexander Bokovoy
@ 2009-03-05  5:18 ` Alexander Bokovoy
  2 siblings, 0 replies; 6+ messages in thread
From: Alexander Bokovoy @ 2009-03-05  5:18 UTC (permalink / raw)
  To: ALT Linux Team development discussions

2009/3/5 Gennady Kovalev <gik@bigur.ru>:
> Здоровья Вам!
>
> Пытаюсь опакетить madwimax (http://code.google.com/p/madwimax). Он требует
> libusb-1.0, а у нас в Sisyphus 0.9.4, причем так, что он провайдит
>
> /usr/lib/libusb-1.0.so.0
> /usr/lib/libusb-1.0.so.0.0.0
>
> Что делать с libusb?
Использовать pkgconfig с запросом пакета libusb-1.0, как уже показал raorn.
-- 
/ Alexander Bokovoy

^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: [devel] libusb version
  2009-03-05  5:17 ` Alexander Bokovoy
@ 2009-03-05  6:39   ` Alexey I. Froloff
  2009-03-05  8:18     ` Alexander Bokovoy
  0 siblings, 1 reply; 6+ messages in thread
From: Alexey I. Froloff @ 2009-03-05  6:39 UTC (permalink / raw)
  To: ALT Devel discussion list

[-- Attachment #1: Type: text/plain, Size: 415 bytes --]

* Alexander Bokovoy <ab@> [090305 08:24]:
> > Что делать с libusb?
> Использовать pkgconfig с запросом пакета libusb-1.0, как уже показал raorn.
Оно так и делает:

# Check for libusb-1.0
PKG_CHECK_MODULES([libusb1], libusb-1.0,,AC_MSG_ERROR([libusb-1.0 not found$(test ! "${PKG_CONFIG}" && (echo; echo Try to install pkg-config first.))]))

Тем не менее есть уже libusb 1.0.0.

-- 
Regards,
Sir Raorn.

[-- Attachment #2: Digital signature --]
[-- Type: application/pgp-signature, Size: 189 bytes --]

^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: [devel] libusb version
  2009-03-05  6:39   ` Alexey I. Froloff
@ 2009-03-05  8:18     ` Alexander Bokovoy
  0 siblings, 0 replies; 6+ messages in thread
From: Alexander Bokovoy @ 2009-03-05  8:18 UTC (permalink / raw)
  To: ALT Linux Team development discussions

2009/3/5 Alexey I. Froloff <raorn@altlinux.ru>:
> * Alexander Bokovoy <ab@> [090305 08:24]:
>> > Что делать с libusb?
>> Использовать pkgconfig с запросом пакета libusb-1.0, как уже показал raorn.
> Оно так и делает:
>
> # Check for libusb-1.0
> PKG_CHECK_MODULES([libusb1], libusb-1.0,,AC_MSG_ERROR([libusb-1.0 not found$(test ! "${PKG_CONFIG}" && (echo; echo Try to install pkg-config first.))]))
>
> Тем не менее есть уже libusb 1.0.0.
У меня только вчера приехал контейнер со всеми вещами, включая
компьютеры. Так что где-то после выходных я смогу собрать новые
версии.
-- 
/ Alexander Bokovoy

^ permalink raw reply	[flat|nested] 6+ messages in thread

end of thread, other threads:[~2009-03-05  8:18 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2009-03-04 22:46 [devel] libusb version Gennady Kovalev
2009-03-04 23:02 ` Alexey I. Froloff
2009-03-05  5:17 ` Alexander Bokovoy
2009-03-05  6:39   ` Alexey I. Froloff
2009-03-05  8:18     ` Alexander Bokovoy
2009-03-05  5:18 ` Alexander Bokovoy

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