ПРОЕКТЫ 


  АРХИВ 


Apache-Talk @lexa.ru 

Inet-Admins @info.east.ru 

Filmscanners @halftone.co.uk 

Security-alerts @yandex-team.ru 

nginx-ru @sysoev.ru 


  СТАТЬИ 


  ПЕРСОНАЛЬНОЕ 


  ПРОГРАММЫ 



ПИШИТЕ
ПИСЬМА












     АРХИВ :: nginx-ru
Nginx-ru mailing list archive (nginx-ru@sysoev.ru)

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: Включение дебага, 1.2.0 не собирается



Hello!

On Wed, Apr 25, 2012 at 08:27:36AM -0400, vsharun wrote:

> src/os/unix/ngx_freebsd_init.c: In function 'ngx_debug_init':
> src/os/unix/ngx_freebsd_init.c:80: error: '_malloc_options' undeclared
> (first use in this function)
> src/os/unix/ngx_freebsd_init.c:80: error: (Each undeclared identifier is
> reported only once
> src/os/unix/ngx_freebsd_init.c:80: error: for each function it appears
> in.)
> *** [objs/src/os/unix/ngx_freebsd_init.o] Error code 1
> 
> FreeBSD HEAD amd64 от 25.04.2012
> clang/gcc штатные - эффект одинаковый

Там jasone@ в -current понакоммитил "нового и прогрессивного", 
сломав нафиг обратную совместимость /etc/malloc.conf и промотав 
_malloc_options:

http://svnweb.freebsd.org/base?view=revision&revision=234370

Устаканится - будем смотреть.  Чтобы собиралось - проще всего не 
выпендриваться и не определять NGX_DEBUG_MALLOC, эта 
функциональность нужна в первую очередь для разработки.  Ну или 
незамысловато пропатчить руками как-то так:

--- a/src/os/unix/ngx_freebsd_init.c
+++ b/src/os/unix/ngx_freebsd_init.c
@@ -76,9 +76,9 @@ ngx_debug_init()
 {
 #if (NGX_DEBUG_MALLOC)
 
-#if __FreeBSD_version >= 500014
+#if __FreeBSD_version >= 500014 && __FreeBSD_version < 1000011
     _malloc_options = "J";
-#else
+#elif __FreeBSD_version < 500014
     malloc_options = "J";
 #endif
 

(not tested; __FreeBSD_version взят ближайший, т.к. jasone@ 
побампать его не удосужился)

Maxim Dounin

_______________________________________________
nginx-ru mailing list
nginx-ru@xxxxxxxxx
http://mailman.nginx.org/mailman/listinfo/nginx-ru


 




Copyright © Lexa Software, 1996-2009.