Имя пользователя:
Пароль:  
Помощь | Регистрация | Забыли пароль?  

Название темы: Install nc
Показать сообщение отдельно

Аватара для Guest

Guest


Профиль | Цитировать


Installation: res_init error

If compilation fails with an “undefined reference to `res_init’” error, comment out the relevant call (line 1319 in Unix source) in netcat.c before running make:

#ifdef HAVE_BIND

/* can *you* say "cc -yaddayadda netcat.c -lresolv -l44bsd" on SunLOSs? */

res_init();

#endif

becomes

#ifdef HAVE_BIND

/* can *you* say "cc -yaddayadda netcat.c -lresolv -l44bsd" on SunLOSs? */

/* res_init(); */

#endif

Отправлено: 18:29, 15-05-2004 | #11

Название темы: Install nc