ALT Linux Team development discussions
 help / color / mirror / Atom feed
* Re: [devel] lighttpd-1.4.9-alt1: rebuild failed
  @ 2006-05-21 21:11 ` Konstantin A. Lepikhov
  2006-05-22  5:20   ` Alexey Tourbin
  0 siblings, 1 reply; 9+ messages in thread
From: Konstantin A. Lepikhov @ 2006-05-21 21:11 UTC (permalink / raw)
  To: devel

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

Hi QA!

Monday 22, at 01:04:59 AM you wrote:

> Package: lighttpd-1.4.9-alt1
> Packager: L.A. Kostis <lakostis@altlinux>
> Status: rebuild failed.
> Please investigate.
> 
> Why:
> 
> checking for lua... yes
> checking for lua-config... no
> checking for lua_open in -llua... no
> checking for lua... Package lua was not found in the pkg-config search path. Perhaps you should add the directory containing `lua.pc' to the PKG_CONFIG_PATH environment variable No package 'lua' found
> configure: error: Library requirements (lua) not met; consider adjusting the PKG_CONFIG_PATH environment variable if your libraries are in a nonstandard prefix so pkg-config can find them.
а вот и первый пострадавший от новой lua ;)

-- 
WBR et al.

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

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

* Re: [devel] lighttpd-1.4.9-alt1: rebuild failed
  2006-05-21 21:11 ` [devel] lighttpd-1.4.9-alt1: rebuild failed Konstantin A. Lepikhov
@ 2006-05-22  5:20   ` Alexey Tourbin
  2006-05-22  5:42     ` Alexey Tourbin
  0 siblings, 1 reply; 9+ messages in thread
From: Alexey Tourbin @ 2006-05-22  5:20 UTC (permalink / raw)
  To: devel

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

On Mon, May 22, 2006 at 01:11:16AM +0400, Konstantin A. Lepikhov wrote:
> > checking for lua... yes
> > checking for lua-config... no
> > checking for lua_open in -llua... no
> > checking for lua... Package lua was not found in the pkg-config search path. Perhaps you should add the directory containing `lua.pc' to the PKG_CONFIG_PATH environment variable No package 'lua' found
> > configure: error: Library requirements (lua) not met; consider adjusting the PKG_CONFIG_PATH environment variable if your libraries are in a nonstandard prefix so pkg-config can find them.
> а вот и первый пострадавший от новой lua ;)

$ grep lua_open /usr/include/lua.h                               
#define lua_open()      luaL_newstate()
$

Линковаться без хедеров/без прототипов грешно.
К сожалению autoconf это делает.

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

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

* Re: [devel] lighttpd-1.4.9-alt1: rebuild failed
  2006-05-22  5:20   ` Alexey Tourbin
@ 2006-05-22  5:42     ` Alexey Tourbin
  2006-05-22  5:50       ` Konstantin A. Lepikhov
  2006-05-22  6:55       ` Andrey Rahmatullin
  0 siblings, 2 replies; 9+ messages in thread
From: Alexey Tourbin @ 2006-05-22  5:42 UTC (permalink / raw)
  To: devel

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

On Mon, May 22, 2006 at 09:20:49AM +0400, Alexey Tourbin wrote:
> On Mon, May 22, 2006 at 01:11:16AM +0400, Konstantin A. Lepikhov wrote:
> > > checking for lua... yes
> > > checking for lua-config... no
> > > checking for lua_open in -llua... no
> > > checking for lua... Package lua was not found in the pkg-config search path. Perhaps you should add the directory containing `lua.pc' to the PKG_CONFIG_PATH environment variable No package 'lua' found
> > > configure: error: Library requirements (lua) not met; consider adjusting the PKG_CONFIG_PATH environment variable if your libraries are in a nonstandard prefix so pkg-config can find them.
> > а вот и первый пострадавший от новой lua ;)
> 
> $ grep lua_open /usr/include/lua.h                               
> #define lua_open()      luaL_newstate()
> $
> 
> Линковаться без хедеров/без прототипов грешно.
> К сожалению autoconf это делает.

--- ./configure.in-	2005-12-15 12:08:31 +0300
+++ ./configure.in	2006-05-22 09:22:00 +0400
@@ -389,7 +389,7 @@
    AC_DEFINE([HAVE_LUA], [1], [liblua])
    AC_DEFINE([HAVE_LUA_H], [1], [lua.h])
  else
-   AC_CHECK_LIB(lua, lua_open, [
+   AC_CHECK_LIB(lua, luaL_newstate, [
      AC_CHECK_HEADERS([lua.h],[
        LUA_LIBS="-llua -llualib"
        AC_DEFINE([HAVE_LUA], [1], [liblua])

Как бы AC_CHECK_LIB попросить включать хедеры от библиотеки, которую
он собирается зондировать?

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

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

* Re: [devel] lighttpd-1.4.9-alt1: rebuild failed
  2006-05-22  5:42     ` Alexey Tourbin
@ 2006-05-22  5:50       ` Konstantin A. Lepikhov
  2006-05-22  6:55       ` Andrey Rahmatullin
  1 sibling, 0 replies; 9+ messages in thread
From: Konstantin A. Lepikhov @ 2006-05-22  5:50 UTC (permalink / raw)
  To: ALT Devel discussion list

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

Hi Alexey!

Monday 22, at 09:42:25 AM you wrote:

> On Mon, May 22, 2006 at 09:20:49AM +0400, Alexey Tourbin wrote:
> > On Mon, May 22, 2006 at 01:11:16AM +0400, Konstantin A. Lepikhov wrote:
> > > > checking for lua... yes
> > > > checking for lua-config... no
> > > > checking for lua_open in -llua... no
> > > > checking for lua... Package lua was not found in the pkg-config search path. Perhaps you should add the directory containing `lua.pc' to the PKG_CONFIG_PATH environment variable No package 'lua' found
> > > > configure: error: Library requirements (lua) not met; consider adjusting the PKG_CONFIG_PATH environment variable if your libraries are in a nonstandard prefix so pkg-config can find them.
> > > а вот и первый пострадавший от новой lua ;)
> > 
> > $ grep lua_open /usr/include/lua.h                               
> > #define lua_open()      luaL_newstate()
> > $
> > 
> > Линковаться без хедеров/без прототипов грешно.
> > К сожалению autoconf это делает.
> 
> --- ./configure.in-	2005-12-15 12:08:31 +0300
> +++ ./configure.in	2006-05-22 09:22:00 +0400
> @@ -389,7 +389,7 @@
>     AC_DEFINE([HAVE_LUA], [1], [liblua])
>     AC_DEFINE([HAVE_LUA_H], [1], [lua.h])
>   else
> -   AC_CHECK_LIB(lua, lua_open, [
> +   AC_CHECK_LIB(lua, luaL_newstate, [
>       AC_CHECK_HEADERS([lua.h],[
>         LUA_LIBS="-llua -llualib"
>         AC_DEFINE([HAVE_LUA], [1], [liblua])
> 
> Как бы AC_CHECK_LIB попросить включать хедеры от библиотеки, которую
> он собирается зондировать?
А так вообще разве можно? По-моему, там надо testapp собирать и в нем все
декларировать.

-- 
WBR et al.

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

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

* Re: [devel] lighttpd-1.4.9-alt1: rebuild failed
  2006-05-22  5:42     ` Alexey Tourbin
  2006-05-22  5:50       ` Konstantin A. Lepikhov
@ 2006-05-22  6:55       ` Andrey Rahmatullin
  2006-05-22  6:58         ` Alexey Tourbin
  1 sibling, 1 reply; 9+ messages in thread
From: Andrey Rahmatullin @ 2006-05-22  6:55 UTC (permalink / raw)
  To: devel

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

On Mon, May 22, 2006 at 09:42:25AM +0400, Alexey Tourbin wrote:
> -   AC_CHECK_LIB(lua, lua_open, [
> +   AC_CHECK_LIB(lua, luaL_newstate, [
А 5.0 оно найдет?

-- 
WBR, wRAR (ALT Linux Team)
Powered by the ALT Linux fortune(8):

* Pilot решил посмотреть на Skype for Linux: help -> about -> Segmentation fault
<drF_ckoff> =)
<Pilot> file -> options -> Segmentation fault
<UlfR> хех
<drF_ckoff> Pilot: это у тебя люлекс не той системы =)
<UlfR> Pilot: у тебя наверное не слакварь ;)

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

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

* Re: [devel] lighttpd-1.4.9-alt1: rebuild failed
  2006-05-22  6:55       ` Andrey Rahmatullin
@ 2006-05-22  6:58         ` Alexey Tourbin
  2006-05-22  6:59           ` Andrey Rahmatullin
  0 siblings, 1 reply; 9+ messages in thread
From: Alexey Tourbin @ 2006-05-22  6:58 UTC (permalink / raw)
  To: devel

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

On Mon, May 22, 2006 at 12:55:28PM +0600, Andrey Rahmatullin wrote:
> On Mon, May 22, 2006 at 09:42:25AM +0400, Alexey Tourbin wrote:
> > -   AC_CHECK_LIB(lua, lua_open, [
> > +   AC_CHECK_LIB(lua, luaL_newstate, [
> А 5.0 оно найдет?

Нет.

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

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

* Re: [devel] lighttpd-1.4.9-alt1: rebuild failed
  2006-05-22  6:58         ` Alexey Tourbin
@ 2006-05-22  6:59           ` Andrey Rahmatullin
  2006-05-22  7:07             ` Alexey Tourbin
  0 siblings, 1 reply; 9+ messages in thread
From: Andrey Rahmatullin @ 2006-05-22  6:59 UTC (permalink / raw)
  To: devel

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

On Mon, May 22, 2006 at 10:58:11AM +0400, Alexey Tourbin wrote:
> > А 5.0 оно найдет?
> Нет.
Это плохо.

-- 
WBR, wRAR (ALT Linux Team)
Powered by the ALT Linux fortune(8):

Возможно, вы уже успели заметить, что после обновления пакета app-defaults
до версии 0.2.6-alt1 в системе что-то стало работать не так, как положено.
		-- ldv in sisyphus@

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

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

* Re: [devel] lighttpd-1.4.9-alt1: rebuild failed
  2006-05-22  6:59           ` Andrey Rahmatullin
@ 2006-05-22  7:07             ` Alexey Tourbin
  2006-05-22  7:27               ` Alexey I. Froloff
  0 siblings, 1 reply; 9+ messages in thread
From: Alexey Tourbin @ 2006-05-22  7:07 UTC (permalink / raw)
  To: devel

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

On Mon, May 22, 2006 at 12:59:30PM +0600, Andrey Rahmatullin wrote:
> On Mon, May 22, 2006 at 10:58:11AM +0400, Alexey Tourbin wrote:
> > > А 5.0 оно найдет?
> > Нет.
> Это плохо.

Плохой автоконф: нельзя защупывать функции в библиотеке, не включив
заголовочных файлов.

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

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

* Re: [devel] lighttpd-1.4.9-alt1: rebuild failed
  2006-05-22  7:07             ` Alexey Tourbin
@ 2006-05-22  7:27               ` Alexey I. Froloff
  0 siblings, 0 replies; 9+ messages in thread
From: Alexey I. Froloff @ 2006-05-22  7:27 UTC (permalink / raw)
  To: ALT Devel discussion list

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

* Alexey Tourbin <at@> [060522 11:06]:
> > > > А 5.0 оно найдет?
> > > Нет.
> > Это плохо.
> Плохой автоконф: нельзя защупывать функции в библиотеке, не включив
> заголовочных файлов.
AC_TRY_LINK

-- 
Regards, Alexey I. Froloff
AIF5-RIPN, AIF5-RIPE
-------------------------------------------
  Inform-Mobil, Ltd. System Administrator
       http://www.inform-mobil.ru/

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

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

end of thread, other threads:[~2006-05-22  7:27 UTC | newest]

Thread overview: 9+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2006-05-21 21:11 ` [devel] lighttpd-1.4.9-alt1: rebuild failed Konstantin A. Lepikhov
2006-05-22  5:20   ` Alexey Tourbin
2006-05-22  5:42     ` Alexey Tourbin
2006-05-22  5:50       ` Konstantin A. Lepikhov
2006-05-22  6:55       ` Andrey Rahmatullin
2006-05-22  6:58         ` Alexey Tourbin
2006-05-22  6:59           ` Andrey Rahmatullin
2006-05-22  7:07             ` Alexey Tourbin
2006-05-22  7:27               ` Alexey I. Froloff

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