Antw: [syslog-ng]Problem generating syslog-ng on HP-UX 11i v1 (PA-RISC 2.0)

Jose Javier Sianes Ruiz syslog-ng@lists.balabit.hu
Fri, 26 Nov 2004 08:30:39 +0100


<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
  <meta content="text/html;charset=ISO-8859-1" http-equiv="Content-Type">
  <title></title>
</head>
<body bgcolor="#ffffff" text="#000000">
I have changed the source line in conf file with same results. <br>
<br>
<blockquote><tt><small>root@asterix:/opt/syslog-ng/syslog-ng/sbin&gt;
./syslog-ng -dv</small></tt><br>
  <tt><small>Memory fault(coredump)</small></tt><br>
  <tt><small>root@asterix:/opt/syslog-ng/syslog-ng/sbin&gt;</small></tt><br>
</blockquote>
The most strange is gdb information about the core generated. It seems
like it cant locate a file. Im going to try with 1.6.4 (all my test
were with 1.6.5 and 1.6.5+snapshot) to see what happends. Anyway,
anyone have a depot generated? Searching in HP-UX Porting Center I find
a valid depot file. Its works, but its 3 years old. Will be very
apreciated. Thanks in advantage.<br>
<br>
<br>
<br>
<br>
Stephan Hendl wrote:
<blockquote cite="mids1a638ec.027@lvnbb.brandenburg.de" type="cite">
  <pre wrap="">Hi, 
 

it might be there is a problem with the sources section in your confg
file. 
I think that you cannot use the /dev/log device twice for sourcing the
syslog data.

  </pre>
  <blockquote type="cite">
    <pre wrap="">source stdlog { pipe("/dev/log" pad_size(2048)); };
source s_sys { pipe("/dev/log"); internal(); };
    </pre>
  </blockquote>
  <pre wrap=""><!---->
I use (with 11.0 PA RISC 2.0)

source s_sys { pipe(/dev/log pad_size(2048)); internal(); }; 

This works fine in a productive environment. One of our central syslog
server runs syslog-ng-1.6.4 on 11.0.

Stephan



  </pre>
  <blockquote type="cite">
    <blockquote type="cite">
      <blockquote type="cite">
        <pre wrap=""><a class="moz-txt-link-abbreviated" href="mailto:jsianes@grupohispatec.com">jsianes@grupohispatec.com</a> 24.11.2004 20:01:12 &gt;&gt;&gt;
        </pre>
      </blockquote>
    </blockquote>
  </blockquote>
  <pre wrap=""><!---->I have a lot of problems trying to create a syslog-ng binary in HP-UX
11i v1 for PA-RISC 2.0 architecture:

HP-UX asterix B.11.11 U 9000/810 2013576237 unlimited-user license

All compilation issues goes right, but when I try to run it create a
core. This is all the test I have made:

<a class="moz-txt-link-abbreviated" href="mailto:root@asterix:/root/syslog/syslog-ng-1.6.5+20041124">root@asterix:/root/syslog/syslog-ng-1.6.5+20041124</a>&gt;
/usr/local/sbin/syslog-ng -dv
Memory fault(coredump)
<a class="moz-txt-link-abbreviated" href="mailto:root@asterix:/root/syslog/syslog-ng-1.6.5+20041124">root@asterix:/root/syslog/syslog-ng-1.6.5+20041124</a>&gt; gdb
/usr/local/sbin/syslog-ng
HP gdb 3.3 for PA-RISC 1.1 or 2.0 (narrow), HP-UX 11.00.
Copyright 1986 - 2001 Free Software Foundation, Inc.
Hewlett-Packard Wildebeest 3.3 (based on GDB) is covered by the
GNU General Public License. Type "show copying" to see the conditions
to
change it and/or distribute copies. Type "show warranty" for
warranty/support.
..
(gdb) r -dv
Starting program: /usr/local/sbin/syslog-ng -dv

Program received signal SIGSEGV, Segmentation fault.
0x197dc in c_vformat_length () at format.c:178
178     format.c: No such file or directory.
(gdb) bt
#0  0x197dc in c_vformat_length () at format.c:178
#1  0x1c4f4 in msg_vformat () at werror.c:132
#2  0x1c5b4 in werror () at werror.c:152
#3  0xc224 in make_syslog_config (name=0x40001220
"/usr/local/etc/syslog-ng/syslog-ng.conf", backend=0x40006a80) at
cfgfile.c:344
#4  0x71bc in main (argc=2, argv=0x7f7f0814) at main.c:479
(gdb) quit
The program is running.  Exit anyway? (y or n) y
<a class="moz-txt-link-abbreviated" href="mailto:root@asterix:/root/syslog/syslog-ng-1.6.5+20041124">root@asterix:/root/syslog/syslog-ng-1.6.5+20041124</a>&gt;
I have try with both, stable an snapshot versions. The result is the
same, a crash at the beginning. This is my configuration file:

<a class="moz-txt-link-abbreviated" href="mailto:root@asterix:/root/syslog/syslog-ng-1.6.5+20041124">root@asterix:/root/syslog/syslog-ng-1.6.5+20041124</a>&gt; cat
/etc/syslog-ng/syslog-ng.conf
# syslog-ng configuration file.
#
# This should behave pretty much like the original syslog on HP-UX.
But
# it could be configured a lot smarter.
#
# See syslog-ng(8) and syslog-ng.conf(8) for more information.
#
# 20000925 <a class="moz-txt-link-abbreviated" href="mailto:gb@sysfive.com">gb@sysfive.com</a> 

options { sync (0);
          time_reopen (10);
          log_fifo_size (2048);
          long_hostnames (off);
          use_dns (no);
          use_fqdn (no);
          create_dirs (no);
          keep_hostname (yes);
        };

source stdlog { pipe("/dev/log" pad_size(2048)); };
source s_sys { pipe("/dev/log"); internal(); };

destination d_cons { file("/dev/console"); };
destination d_mesg { file("/var/adm/syslog-ng/syslog.log"); };
destination d_mail { file("/var/adm/syslog-ng/mail.log"); };
destination d_mlrt { usertty("root"); };
destination d_mlal { usertty("*"); };

filter f_filter1   { facility(mail) and level(debug); };
filter f_filter2   { (facility(mail) and level(debug)) or
                     level(info); };
filter f_filter3   { level(alert); };
filter f_filter4   { level(emerg); };

log { source(s_sys); filter(f_filter1); destination(d_mail); };
log { source(s_sys); filter(f_filter2); destination(d_mesg); };
log { source(s_sys); filter(f_filter3); destination(d_cons);
                                        destination(d_mlrt); };
log { source(s_sys); filter(f_filter4); destination(d_mlal); };
<a class="moz-txt-link-abbreviated" href="mailto:root@asterix:/root/syslog/syslog-ng-1.6.5+20041124">root@asterix:/root/syslog/syslog-ng-1.6.5+20041124</a>&gt;
Here is the configure output:

<a class="moz-txt-link-abbreviated" href="mailto:root@asterix:/root/syslog/syslog-ng-1.6.5+20041124">root@asterix:/root/syslog/syslog-ng-1.6.5+20041124</a>&gt; ./configure
--with-debug
checking for a BSD-compatible install... /opt/imake/bin/install -c
checking whether build environment is sane... yes
checking for gawk... no
checking for mawk... no
checking for nawk... no
checking for awk... awk
checking whether make sets $(MAKE)... yes
checking whether build environment is sane... yes
checking for gcc... no
checking for cc... cc
checking for C compiler default output file name... a.out
checking whether the C compiler works... yes
checking whether we are cross compiling... no
checking for suffix of executables...
checking for suffix of object files... o
checking whether we are using the GNU C compiler... no
checking whether cc accepts -g... yes
checking for cc option to accept ANSI C... none needed
checking for style of include used by make... GNU
checking dependency style of cc... hp
checking for cc option to accept ANSI C... none needed
checking for bison... bison -y
checking for flex... flex
checking for yywrap in -lfl... no
checking for yywrap in -ll... yes
checking lex output file root... lex.yy
checking whether yytext is a pointer... yes
checking whether make sets $(MAKE)... (cached) yes
checking how to run the C preprocessor... cc -E
checking for egrep... grep -E
checking for ANSI C header files... yes
checking for sys/types.h... yes
checking for sys/stat.h... yes
checking for stdlib.h... yes
checking for string.h... yes
checking for memory.h... yes
checking for strings.h... yes
checking for inttypes.h... yes
checking for stdint.h... no
checking for unistd.h... yes
checking malloc.h usability... yes
checking malloc.h presence... yes
checking for malloc.h... yes
checking for unistd.h... (cached) yes
checking door.h usability... no
checking door.h presence... no
checking for door.h... no
checking stropts.h usability... yes
checking stropts.h presence... yes
checking for stropts.h... yes
checking sys/strlog.h usability... yes
checking sys/strlog.h presence... yes
checking for sys/strlog.h... yes
checking stdarg.h usability... yes
checking stdarg.h presence... yes
checking for stdarg.h... yes
checking sys/klog.h usability... no
checking sys/klog.h presence... no
checking for sys/klog.h... no
checking arpa/nameser.h usability... yes
checking arpa/nameser.h presence... yes
checking for arpa/nameser.h... yes
checking tcpd.h usability... no
checking tcpd.h presence... no
checking for tcpd.h... no
checking for an ANSI C-conforming const... yes
checking whether time.h and sys/time.h may both be included... yes
checking for modern utmp... no
checking for global timezone variable... no
checking for short... yes
checking size of short... 2
checking for int... yes
checking size of int... 4
checking for long... yes
checking size of long... 4
checking for I_CONSLOG... no
checking for O_LARGEFILE... yes
checking for res_init in &lt;resolv.h&gt;...
checking for working alloca.h... yes
checking for alloca... yes
checking for vprintf... yes
checking for _doprnt... yes
checking for res_init in -lresolv... no
checking for __res_init in -lresolv... no
checking for door_create in -ldoor... no
checking for socket in -lsocket... no
checking for gethostbyname in -lnsl... yes
checking for select... yes
checking for snprintf... yes
checking for vsnprintf... yes
checking for strerror... yes
checking for inet_aton... yes
checking for strncpy... yes
checking for getutent... yes
checking for getopt_long... no
checking for strcasecmp... yes
checking for strptime... yes
checking for TCP wrapper library...
checking whether to enable Sun STREAMS support... no
checking whether to enable Sun door support... no
checking whether to enable TCP wrapper support... no
checking whether to enable spoof_source support... no
checking libol version &gt;= 0.3.14... ok
configure: creating ./config.status
config.status: creating Makefile
config.status: creating src/Makefile
config.status: creating src/tests/Makefile
config.status: creating doc/Makefile
config.status: creating doc/sgml/Makefile
config.status: creating contrib/Makefile
config.status: creating syslog-ng.spec
config.status: creating src/config.h
config.status: src/config.h is unchanged
config.status: executing depfiles commands
<a class="moz-txt-link-abbreviated" href="mailto:root@asterix:/root/syslog/syslog-ng-1.6.5+20041124">root@asterix:/root/syslog/syslog-ng-1.6.5+20041124</a>&gt;

In compilation time, here is the output:

<a class="moz-txt-link-abbreviated" href="mailto:root@asterix:/root/syslog/syslog-ng-1.6.5+20041124">root@asterix:/root/syslog/syslog-ng-1.6.5+20041124</a>&gt; make
No suffix list.
Making all in src
        make  all-recursive
Making all in .
        source='main.c' object='main.o' libtool=no \
        depfile='.deps/main.Po' tmpdepfile='.deps/main.TPo' \
        depmode=hp /bin/sh
/root/syslog/syslog-ng-1.6.5+20041124/depcomp \
        cc -DHAVE_CONFIG_H -I.
-I/root/syslog/syslog-ng-1.6.5+20041124/src -I.      -g -Wall
-I/usr/local/include/libol -D_GNU_SOURCE -c `test -f 'main.c' || echo
'/root/syslog/syslog-ng-1.6.5+20041124/src/'`main.c
        source='sources.c' object='sources.o' libtool=no \
        depfile='.deps/sources.Po' tmpdepfile='.deps/sources.TPo' \
        depmode=hp /bin/sh
/root/syslog/syslog-ng-1.6.5+20041124/depcomp \
        cc -DHAVE_CONFIG_H -I.
-I/root/syslog/syslog-ng-1.6.5+20041124/src -I.      -g -Wall
-I/usr/local/include/libol -D_GNU_SOURCE -c `test -f 'sources.c' || echo
'/root/syslog/syslog-ng-1.6.5+20041124/src/'`sources.c
        source='center.c' object='center.o' libtool=no \
        depfile='.deps/center.Po' tmpdepfile='.deps/center.TPo' \
        depmode=hp /bin/sh
/root/syslog/syslog-ng-1.6.5+20041124/depcomp \
        cc -DHAVE_CONFIG_H -I.
-I/root/syslog/syslog-ng-1.6.5+20041124/src -I.      -g -Wall
-I/usr/local/include/libol -D_GNU_SOURCE -c `test -f 'center.c' || echo
'/root/syslog/syslog-ng-1.6.5+20041124/src/'`center.c
        source='filters.c' object='filters.o' libtool=no \
        depfile='.deps/filters.Po' tmpdepfile='.deps/filters.TPo' \
        depmode=hp /bin/sh
/root/syslog/syslog-ng-1.6.5+20041124/depcomp \
        cc -DHAVE_CONFIG_H -I.
-I/root/syslog/syslog-ng-1.6.5+20041124/src -I.      -g -Wall
-I/usr/local/include/libol -D_GNU_SOURCE -c `test -f 'filters.c' || echo
'/root/syslog/syslog-ng-1.6.5+20041124/src/'`filters.c
        source='destinations.c' object='destinations.o' libtool=no \
        depfile='.deps/destinations.Po'
tmpdepfile='.deps/destinations.TPo' \
        depmode=hp /bin/sh
/root/syslog/syslog-ng-1.6.5+20041124/depcomp \
        cc -DHAVE_CONFIG_H -I.
-I/root/syslog/syslog-ng-1.6.5+20041124/src -I.      -g -Wall
-I/usr/local/include/libol -D_GNU_SOURCE -c `test -f 'destinations.c' ||
echo '/root/syslog/syslog-ng-1.6.5+20041124/src/'`destinations.c
        source='log.c' object='log.o' libtool=no \
        depfile='.deps/log.Po' tmpdepfile='.deps/log.TPo' \
        depmode=hp /bin/sh
/root/syslog/syslog-ng-1.6.5+20041124/depcomp \
        cc -DHAVE_CONFIG_H -I.
-I/root/syslog/syslog-ng-1.6.5+20041124/src -I.      -g -Wall
-I/usr/local/include/libol -D_GNU_SOURCE -c `test -f 'log.c' || echo
'/root/syslog/syslog-ng-1.6.5+20041124/src/'`log.c
        source='cfgfile.c' object='cfgfile.o' libtool=no \
        depfile='.deps/cfgfile.Po' tmpdepfile='.deps/cfgfile.TPo' \
        depmode=hp /bin/sh
/root/syslog/syslog-ng-1.6.5+20041124/depcomp \
        cc -DHAVE_CONFIG_H -I.
-I/root/syslog/syslog-ng-1.6.5+20041124/src -I.      -g -Wall
-I/usr/local/include/libol -D_GNU_SOURCE -c `test -f 'cfgfile.c' || echo
'/root/syslog/syslog-ng-1.6.5+20041124/src/'`cfgfile.c
        source='cfg-grammar.c' object='cfg-grammar.o' libtool=no \
        depfile='.deps/cfg-grammar.Po'
tmpdepfile='.deps/cfg-grammar.TPo' \
        depmode=hp /bin/sh
/root/syslog/syslog-ng-1.6.5+20041124/depcomp \
        cc -DHAVE_CONFIG_H -I.
-I/root/syslog/syslog-ng-1.6.5+20041124/src -I.      -g -Wall
-I/usr/local/include/libol -D_GNU_SOURCE -c `test -f 'cfg-grammar.c' ||
echo '/root/syslog/syslog-ng-1.6.5+20041124/src/'`cfg-grammar.c
        source='cfg-lex.c' object='cfg-lex.o' libtool=no \
        depfile='.deps/cfg-lex.Po' tmpdepfile='.deps/cfg-lex.TPo' \
        depmode=hp /bin/sh
/root/syslog/syslog-ng-1.6.5+20041124/depcomp \
        cc -DHAVE_CONFIG_H -I.
-I/root/syslog/syslog-ng-1.6.5+20041124/src -I.      -g -Wall
-I/usr/local/include/libol -D_GNU_SOURCE -c `test -f 'cfg-lex.c' || echo
'/root/syslog/syslog-ng-1.6.5+20041124/src/'`cfg-lex.c
        source='affile.c' object='affile.o' libtool=no \
        depfile='.deps/affile.Po' tmpdepfile='.deps/affile.TPo' \
        depmode=hp /bin/sh
/root/syslog/syslog-ng-1.6.5+20041124/depcomp \
        cc -DHAVE_CONFIG_H -I.
-I/root/syslog/syslog-ng-1.6.5+20041124/src -I.      -g -Wall
-I/usr/local/include/libol -D_GNU_SOURCE -c `test -f 'affile.c' || echo
'/root/syslog/syslog-ng-1.6.5+20041124/src/'`affile.c
        source='afsocket.c' object='afsocket.o' libtool=no \
        depfile='.deps/afsocket.Po' tmpdepfile='.deps/afsocket.TPo' \
        depmode=hp /bin/sh
/root/syslog/syslog-ng-1.6.5+20041124/depcomp \
        cc -DHAVE_CONFIG_H -I.
-I/root/syslog/syslog-ng-1.6.5+20041124/src -I.      -g -Wall
-I/usr/local/include/libol -D_GNU_SOURCE -c `test -f 'afsocket.c' ||
echo '/root/syslog/syslog-ng-1.6.5+20041124/src/'`afsocket.c
        source='afunix.c' object='afunix.o' libtool=no \
        depfile='.deps/afunix.Po' tmpdepfile='.deps/afunix.TPo' \
        depmode=hp /bin/sh
/root/syslog/syslog-ng-1.6.5+20041124/depcomp \
        cc -DHAVE_CONFIG_H -I.
-I/root/syslog/syslog-ng-1.6.5+20041124/src -I.      -g -Wall
-I/usr/local/include/libol -D_GNU_SOURCE -c `test -f 'afunix.c' || echo
'/root/syslog/syslog-ng-1.6.5+20041124/src/'`afunix.c
        source='afinet.c' object='afinet.o' libtool=no \
        depfile='.deps/afinet.Po' tmpdepfile='.deps/afinet.TPo' \
        depmode=hp /bin/sh
/root/syslog/syslog-ng-1.6.5+20041124/depcomp \
        cc -DHAVE_CONFIG_H -I.
-I/root/syslog/syslog-ng-1.6.5+20041124/src -I.      -g -Wall
-I/usr/local/include/libol -D_GNU_SOURCE -c `test -f 'afinet.c' || echo
'/root/syslog/syslog-ng-1.6.5+20041124/src/'`afinet.c
        source='afinter.c' object='afinter.o' libtool=no \
        depfile='.deps/afinter.Po' tmpdepfile='.deps/afinter.TPo' \
        depmode=hp /bin/sh
/root/syslog/syslog-ng-1.6.5+20041124/depcomp \
        cc -DHAVE_CONFIG_H -I.
-I/root/syslog/syslog-ng-1.6.5+20041124/src -I.      -g -Wall
-I/usr/local/include/libol -D_GNU_SOURCE -c `test -f 'afinter.c' || echo
'/root/syslog/syslog-ng-1.6.5+20041124/src/'`afinter.c
        source='afuser.c' object='afuser.o' libtool=no \
        depfile='.deps/afuser.Po' tmpdepfile='.deps/afuser.TPo' \
        depmode=hp /bin/sh
/root/syslog/syslog-ng-1.6.5+20041124/depcomp \
        cc -DHAVE_CONFIG_H -I.
-I/root/syslog/syslog-ng-1.6.5+20041124/src -I.      -g -Wall
-I/usr/local/include/libol -D_GNU_SOURCE -c `test -f 'afuser.c' || echo
'/root/syslog/syslog-ng-1.6.5+20041124/src/'`afuser.c
        source='afstreams.c' object='afstreams.o' libtool=no \
        depfile='.deps/afstreams.Po' tmpdepfile='.deps/afstreams.TPo'
\
        depmode=hp /bin/sh
/root/syslog/syslog-ng-1.6.5+20041124/depcomp \
        cc -DHAVE_CONFIG_H -I.
-I/root/syslog/syslog-ng-1.6.5+20041124/src -I.      -g -Wall
-I/usr/local/include/libol -D_GNU_SOURCE -c `test -f 'afstreams.c' ||
echo '/root/syslog/syslog-ng-1.6.5+20041124/src/'`afstreams.c
        source='afprogram.c' object='afprogram.o' libtool=no \
        depfile='.deps/afprogram.Po' tmpdepfile='.deps/afprogram.TPo'
\
        depmode=hp /bin/sh
/root/syslog/syslog-ng-1.6.5+20041124/depcomp \
        cc -DHAVE_CONFIG_H -I.
-I/root/syslog/syslog-ng-1.6.5+20041124/src -I.      -g -Wall
-I/usr/local/include/libol -D_GNU_SOURCE -c `test -f 'afprogram.c' ||
echo '/root/syslog/syslog-ng-1.6.5+20041124/src/'`afprogram.c
        source='afremctrl.c' object='afremctrl.o' libtool=no \
        depfile='.deps/afremctrl.Po' tmpdepfile='.deps/afremctrl.TPo'
\
        depmode=hp /bin/sh
/root/syslog/syslog-ng-1.6.5+20041124/depcomp \
        cc -DHAVE_CONFIG_H -I.
-I/root/syslog/syslog-ng-1.6.5+20041124/src -I.      -g -Wall
-I/usr/local/include/libol -D_GNU_SOURCE -c `test -f 'afremctrl.c' ||
echo '/root/syslog/syslog-ng-1.6.5+20041124/src/'`afremctrl.c
cc: "afremctrl.c", line 58: warning 604: Pointers are not
assignment-compatible.
cc: "afremctrl.c", line 58: warning 563: Argument #1 is not the correct
type.
cc: "afremctrl.c", line 58: warning 604: Pointers are not
assignment-compatible.
cc: "afremctrl.c", line 58: warning 563: Argument #2 is not the correct
type.
        source='nscache.c' object='nscache.o' libtool=no \
        depfile='.deps/nscache.Po' tmpdepfile='.deps/nscache.TPo' \
        depmode=hp /bin/sh
/root/syslog/syslog-ng-1.6.5+20041124/depcomp \
        cc -DHAVE_CONFIG_H -I.
-I/root/syslog/syslog-ng-1.6.5+20041124/src -I.      -g -Wall
-I/usr/local/include/libol -D_GNU_SOURCE -c `test -f 'nscache.c' || echo
'/root/syslog/syslog-ng-1.6.5+20041124/src/'`nscache.c
        source='utils.c' object='utils.o' libtool=no \
        depfile='.deps/utils.Po' tmpdepfile='.deps/utils.TPo' \
        depmode=hp /bin/sh
/root/syslog/syslog-ng-1.6.5+20041124/depcomp \
        cc -DHAVE_CONFIG_H -I.
-I/root/syslog/syslog-ng-1.6.5+20041124/src -I.      -g -Wall
-I/usr/local/include/libol -D_GNU_SOURCE -c `test -f 'utils.c' || echo
'/root/syslog/syslog-ng-1.6.5+20041124/src/'`utils.c
        source='syslog-names.c' object='syslog-names.o' libtool=no \
        depfile='.deps/syslog-names.Po'
tmpdepfile='.deps/syslog-names.TPo' \
        depmode=hp /bin/sh
/root/syslog/syslog-ng-1.6.5+20041124/depcomp \
        cc -DHAVE_CONFIG_H -I.
-I/root/syslog/syslog-ng-1.6.5+20041124/src -I.      -g -Wall
-I/usr/local/include/libol -D_GNU_SOURCE -c `test -f 'syslog-names.c' ||
echo '/root/syslog/syslog-ng-1.6.5+20041124/src/'`syslog-names.c
        source='macros.c' object='macros.o' libtool=no \
        depfile='.deps/macros.Po' tmpdepfile='.deps/macros.TPo' \
        depmode=hp /bin/sh
/root/syslog/syslog-ng-1.6.5+20041124/depcomp \
        cc -DHAVE_CONFIG_H -I.
-I/root/syslog/syslog-ng-1.6.5+20041124/src -I.      -g -Wall
-I/usr/local/include/libol -D_GNU_SOURCE -c `test -f 'macros.c' || echo
'/root/syslog/syslog-ng-1.6.5+20041124/src/'`macros.c
        source='getopt.c' object='getopt.o' libtool=no \
        depfile='.deps/getopt.Po' tmpdepfile='.deps/getopt.TPo' \
        depmode=hp /bin/sh
/root/syslog/syslog-ng-1.6.5+20041124/depcomp \
        cc -DHAVE_CONFIG_H -I.
-I/root/syslog/syslog-ng-1.6.5+20041124/src -I.      -g -Wall
-I/usr/local/include/libol -D_GNU_SOURCE -c `test -f 'getopt.c' || echo
'/root/syslog/syslog-ng-1.6.5+20041124/src/'`getopt.c
        source='getopt1.c' object='getopt1.o' libtool=no \
        depfile='.deps/getopt1.Po' tmpdepfile='.deps/getopt1.TPo' \
        depmode=hp /bin/sh
/root/syslog/syslog-ng-1.6.5+20041124/depcomp \
        cc -DHAVE_CONFIG_H -I.
-I/root/syslog/syslog-ng-1.6.5+20041124/src -I.      -g -Wall
-I/usr/local/include/libol -D_GNU_SOURCE -c `test -f 'getopt1.c' || echo
'/root/syslog/syslog-ng-1.6.5+20041124/src/'`getopt1.c
        cc  -g -Wall -I/usr/local/include/libol -D_GNU_SOURCE   -o
syslog-ng  main.o sources.o center.o  filters.o destinations.o log.o 
cfgfile.o cfg-grammar.o cfg-lex.o  affile.o afsocket.o afunix.o 
afinet.o afinter.o afuser.o  afstreams.o afprogram.o afremctrl.o 
nscache.o utils.o syslog-names.o  macros.o getopt.o getopt1.o -lnsl  -ll
/usr/local/lib/libol.a -lnsl -lxnet
/usr/ccs/bin/ld: (Warning) At least one PA 2.0 object file (main.o) was
detected. The linked output may not run on a PA 1.x system.
Making all in tests
        source='test_nscache.c' object='test_nscache.o' libtool=no \
        depfile='.deps/test_nscache.Po'
tmpdepfile='.deps/test_nscache.TPo' \
        depmode=hp /bin/sh
/root/syslog/syslog-ng-1.6.5+20041124/depcomp \
        cc -DHAVE_CONFIG_H -I.
-I/root/syslog/syslog-ng-1.6.5+20041124/src/tests -I../../src      -g
-Wall -I/usr/local/include/libol -D_GNU_SOURCE -c `test -f
'test_nscache.c' || echo
'/root/syslog/syslog-ng-1.6.5+20041124/src/tests/'`test_nscache.c
        cc  -g -Wall -I/usr/local/include/libol -D_GNU_SOURCE   -o
test_nscache  test_nscache.o ../nscache.o -lnsl  -ll
/usr/local/lib/libol.a -lnsl -lxnet
/usr/ccs/bin/ld: (Warning) At least one PA 2.0 object file
(test_nscache.o) was detected. The linked output may not run on a PA 1.x
system.
Making all in doc
No suffix list.
Making all in sgml
No suffix list.
No suffix list.
Making all in contrib
No suffix list.
No suffix list.
<a class="moz-txt-link-abbreviated" href="mailto:root@asterix:/root/syslog/syslog-ng-1.6.5+20041124">root@asterix:/root/syslog/syslog-ng-1.6.5+20041124</a>&gt;

At the end, the installation process:

<a class="moz-txt-link-abbreviated" href="mailto:root@asterix:/root/syslog/syslog-ng-1.6.5+20041124">root@asterix:/root/syslog/syslog-ng-1.6.5+20041124</a>&gt; make install
No suffix list.
Making install in src
Making install in .
        /bin/sh /root/syslog/syslog-ng-1.6.5+20041124/mkinstalldirs
/usr/local/sbin
  /opt/imake/bin/install -c syslog-ng /usr/local/sbin/syslog-ng
Making install in tests
Making install in doc
No suffix list.
Making install in sgml
No suffix list.
No suffix list.
No suffix list.
No suffix list.
        /bin/sh /root/syslog/syslog-ng-1.6.5+20041124/mkinstalldirs
/usr/local/man/man5
 /opt/imake/bin/install -c -m 644
/root/syslog/syslog-ng-1.6.5+20041124/doc/syslog-ng.conf.5
/usr/local/man/man5/syslog-ng.conf.5
        /bin/sh /root/syslog/syslog-ng-1.6.5+20041124/mkinstalldirs
/usr/local/man/man8
 /opt/imake/bin/install -c -m 644
/root/syslog/syslog-ng-1.6.5+20041124/doc/syslog-ng.8
/usr/local/man/man8/syslog-ng.8
Making install in contrib
No suffix list.
No suffix list.
No suffix list.
No suffix list.
<a class="moz-txt-link-abbreviated" href="mailto:root@asterix:/root/syslog/syslog-ng-1.6.5+20041124">root@asterix:/root/syslog/syslog-ng-1.6.5+20041124</a>&gt;

Anyone have an idea what this coredump is happends and how to solve it?
Thanks for all your help.


_______________________________________________ syslog-ng maillist -
<a class="moz-txt-link-abbreviated" href="mailto:syslog-ng@lists.balabit.hu">syslog-ng@lists.balabit.hu</a>
<a class="moz-txt-link-freetext" href="https://lists.balabit.hu/mailman/listinfo/syslog-ng">https://lists.balabit.hu/mailman/listinfo/syslog-ng</a> Frequently asked
questions at <a class="moz-txt-link-freetext" href="http://www.campin.net/syslog-ng/faq.html">http://www.campin.net/syslog-ng/faq.html</a> 
_______________________________________________
syslog-ng maillist  -  <a class="moz-txt-link-abbreviated" href="mailto:syslog-ng@lists.balabit.hu">syslog-ng@lists.balabit.hu</a>
<a class="moz-txt-link-freetext" href="https://lists.balabit.hu/mailman/listinfo/syslog-ng">https://lists.balabit.hu/mailman/listinfo/syslog-ng</a>
Frequently asked questions at <a class="moz-txt-link-freetext" href="http://www.campin.net/syslog-ng/faq.html">http://www.campin.net/syslog-ng/faq.html</a>


  </pre>
</blockquote>
<br>
<pre class="moz-signature" cols="72">-- 
Jose Javier Sianes Ruiz
Grupo Hispatec - Sistemas
( Telf. 950.18.03.50 - 637.72.72.55
*   <a class="moz-txt-link-abbreviated" href="mailto:jsianes@grupohispatec.com">jsianes@grupohispatec.com</a> 
</pre>
</body>
</html>