Nginx-ru mailing list archive (nginx-ru@sysoev.ru)
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: проблема с "hello world" модул ем
- To: nginx-ru@xxxxxxxxx
- Subject: Re: проблема с "hello world" модул ем
- From: "Ildar" <nginx-forum@xxxxxxxx>
- Date: Thu, 12 May 2011 02:56:35 -0400
- Dkim-signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=mickey.jlkhosting.com; s=x; h=Date:Sender:From:References:In-Reply-To:Message-ID:Content-Transfer-Encoding:Content-Type:Subject:To; bh=bDBckCohh066fhqXlcdZGAbp5k92+BD8Iht5vGO/tpo=; b=Ue7R+4it0S/DSLgyc8+o0RtnOZC9XidDck05Y+f7XXZtleO5CCJVsusiD0qmEuBvXodtOYq6rIJtbbqdh9fZlGurguelvnO8QprIgaMmixfKMSLWRuEPig677PwNfy6P;
- In-reply-to: <E1OhOVF-0002Ve-00.bdfy-mail-ru@xxxxxxxxxxx>
- References: <E1OhOVF-0002Ve-00.bdfy-mail-ru@xxxxxxxxxxx>
Добрый день. Мне нужно написать
простенький модуль для nginx. Нашел
пример :
1
2 // stub module to test header files' C++ compatibilty
3
4 extern "C" {
5 #include <ngx_config.h>
6 #include <ngx_core.h>
7 #include <ngx_event.h>
8 #include <ngx_event_connect.h>
9 #include <ngx_event_pipe.h>
10
11 #include <ngx_http.h>
12
13 #include <ngx_mail.h>
14 #include <ngx_mail_pop3_module.h>
15 #include <ngx_mail_imap_module.h>
16 #include <ngx_mail_smtp_module.h>
17 }
18
19 // nginx header files should go before other, because they define
64-bit off_t
20 // #include <string>
21
22
23 void
24 ngx_cpp_test_handler(void *data)
25 {
26 return;
27 }
28
Но вот проблема модуль не
компилируется, вылезает ошибка что
ngx_config.h и другие файлы не найдены. Я
устанавливал nginx на ubuntu. Использовал
следующие команды :
sudo aptitude install nginx
aptitude install libcurl4-openssl-dev libpcre++-dev
./configure --sbin-path=/usr/sbin/nginx
--conf-path=/etc/nginx/nginx.conf --pid-path=/var/run/nginx.pid
make
make install
может что-то пропустил и у меня эти
файлы не установились ?
Posted at Nginx Forum:
http://forum.nginx.org/read.php?21,117090,197497#msg-197497
_______________________________________________
nginx-ru mailing list
nginx-ru@xxxxxxxxx
http://nginx.org/mailman/listinfo/nginx-ru
|