I found a mistake  using the:
Open Visualization Data Explorer Executive, version 04.0.0010 (17:07:50, Mar 15 
2000) 
in FreeBSD 3.4 in the module:
        dx/src/uipp/dxui/MacroDefinition.C
There was the lines:
---
#if defined(HAVE_REGCOMP)

            char *net_file = (char *)regcomp(".[.]*\\.net$");
                        ASSERT(net_file != NULL);      
---
To work in FreeBSD is necessary to use the libcompat library, because
the standard regcomp have more parameters (3). The same thing in Linux
RedHat 6.1 the "man regcomp", showed another parameters to this stuff (3),
instead of one. And the error was:
Mar 16 10:13:44 inga /kernel: pid 93043 (dxui), uid 100: exited on signal 11

Solucion: (In FreeBSD) to put in the Makefile:
--
LIBS =  -L/usr/X11R6/lib -L/usr/local/lib -lcompat -lnetcdf -lcdf -ldf -ltiff -l
jpeg -lpng -lbz2 -lz -lm -lSM -lICE -lXm -lXext -lXt -lX11    
--
Passing to -lcompat library. This put this stuff working again... The ideal
is to change this stuff to the "man regcomp" in FreeBSD and Linux.

        Paniago

-- 
Carlos Fernando Assis Paniago          - [EMAIL PROTECTED]
Embrapa - Monitoramento por Satelite   - Campinas, SP, Brasil
http://www.nma.embrapa.br/cur/pan.html - Fone: +55 (19) 252-5977
--

Reply via email to