public inbox for cygwin@cygwin.com
 help / color / mirror / Atom feed
* Re: Cygwin 2.6.0 Fork issue
       [not found] <586F5B5F.1070407@maxrnd.com>
@ 2017-01-06  9:05 ` Mark Geisert
  2017-01-06 20:34   ` René Berber
  0 siblings, 1 reply; 12+ messages in thread
From: Mark Geisert @ 2017-01-06  9:05 UTC (permalink / raw)
  To: cygwin

Rashi Singhal wrote:
  > Hi ,
  >
  > Thanks again for reply.Please find my response.:
  >
  > You're saying that on this same computer, running Win 2012, this
  > sample code ran properly under a previous version of Cygwin? Which
  > version was that?
  >
  > Answer: We were using pretty old version 1.7.0-58

OK.

  > Which source have you downloaded?  Whose source?
  >
  > Answer: I have downloaded Cygwin 2.26 source

That's not a valid version number.  Cygwin is at 2.6.1 now.  Due to the root
cause identified below, Cygwin source is likely to be of no use to you.

  > I have doubt ,.Is there any compilation variable or cygwin varaible
  > set for autoloading all dll's
  >
  > Not sure why you're asking this.
  >
  > Answer: As all the other dll's (windows native and actian pervasive)
  > are not getting loaded automatically with old version of
  > cygwin(1.7.0-58) so I asked if there any variable which say to
  > autoload the dll's.
  > I  know old version is very old to compare the things but I am doing
  > that as I used that as my cygwin version till now.

There is no such flag.  Under Cygwin, DLLs are either loaded as the process
begins execution or they're dynamically loaded by using dlopen().

  > Your sample program is getting exceptions (i.e., is faulting) even
  > before it fork()s the child process. The child is faulting the same
  > way. This looks pretty much like your sample program was built with
  > incorrect assumptions.
  >
  > Answer: Yes I am trying to find why such exceptions has come.
  >   are
  > You can try posting the compilation (and linking) command(s) that you
  > used to build your btrsamp.exe program. Maybe there's something
  > obvious there that somebody here can see. We can't help you debug your
  > program though, and you can't mix Windows-native DLLs that use
  > Microsoft C runtime with Cygwin code.
  >
  > Answer: Please find below compilation and linking code
  >
  > linking varaible
  >
  > export CC=gcc
  > export LEX=flex
  > export CYGWIN=server
  > export PLATFORM=NT4
  > export OS_FLAGS="-Wall -DNT4 -DNW_SUPPORT -DNORELISAM -D_KERNEL -DCYG15"
  > export OS_CIOS=
  > export OS_LIBS="-L/usr/lib -lkernel32 -lcygwin -lmingw32 -L/usr/lib
  > -lkernel32 -L/usr/bin -lgcc -L/usr/local/lib -lcompat -lbtr"

I believe that right there is where you're getting into trouble.  You have both
-lcygwin and -lmingw32.  It looks like you're trying to build a MinGW program on 
Cygwin...

I don't know why you've specified both -lcygwin and -lmingw32.  That may be
standard procedure for building MinGW programs; I don't know about that.  If
you're using MinGW, your support questions should be directed to MinGW mailing
lists as they're off-topic here.

If you want to build on Cygwin, using Cygwin's facilities, then try setting
OS_LIBS="-lbtr" and see if that works better.  I.e., get rid of all the -L and
-l that refer to Windows DLLs and MinGW DLLs.

Be aware that MinGW and Cygwin are separate projects with separate goals and
separate build methods.  If you are unsure about the differences between the two
projects, read the mingw.org front page and the cygwin.com front page.  A big
difference is: MinGW lets you build stand-alone programs that depend on the
Microsoft C runtime, while Cygwin lets you build programs that depend on and
must be accompanied by the Cygwin DLL.  You have to choose one environment or
the other; you can't mix them together.

..mark

--
Problem reports:       http://cygwin.com/problems.html
FAQ:                   http://cygwin.com/faq/
Documentation:         http://cygwin.com/docs.html
Unsubscribe info:      http://cygwin.com/ml/#unsubscribe-simple

^ permalink raw reply	[flat|nested] 12+ messages in thread

* Re: Cygwin 2.6.0 Fork issue
  2017-01-06  9:05 ` Cygwin 2.6.0 Fork issue Mark Geisert
@ 2017-01-06 20:34   ` René Berber
  0 siblings, 0 replies; 12+ messages in thread
From: René Berber @ 2017-01-06 20:34 UTC (permalink / raw)
  To: cygwin

On 1/6/2017 3:05 AM, Mark Geisert wrote:
[snip]
> I don't know why you've specified both -lcygwin and -lmingw32.  That may be
> standard procedure for building MinGW programs; I don't know about
> that.

No, that is not a procedure to build MinGW programs.

Some times mixing libraries does work, by pure luck, but it shouldn't.
-- 
R. Berber


--
Problem reports:       http://cygwin.com/problems.html
FAQ:                   http://cygwin.com/faq/
Documentation:         http://cygwin.com/docs.html
Unsubscribe info:      http://cygwin.com/ml/#unsubscribe-simple

^ permalink raw reply	[flat|nested] 12+ messages in thread

* Re: Cygwin 2.6.0 Fork issue
  2017-01-05  4:04 ` Rashi Singhal
  2017-01-05 10:17   ` Mark Geisert
@ 2017-01-06  2:58   ` Rashi Singhal
  1 sibling, 0 replies; 12+ messages in thread
From: Rashi Singhal @ 2017-01-06  2:58 UTC (permalink / raw)
  To: cygwin

Hi ,

Thanks again for reply.Please find my response.:

You're saying that on this same computer, running Win 2012, this
sample code ran properly under a previous version of Cygwin? Which
version was that?

Answer: We were using pretty old version 1.7.0-58

Which source have you downloaded?  Whose source?

Answer: I have downloaded Cygwin 2.26 source

I have doubt ,.Is there any compilation variable or cygwin varaible
set for autoloading all dll's

Not sure why you're asking this.

Answer: As all the other dll's (windows native and actian pervasive)
are not getting loaded automatically with old version of
cygwin(1.7.0-58) so I asked if there any variable which say to
autoload the dll's.
I  know old version is very old to compare the things but I am doing
that as I used that as my cygwin version till now.

Your sample program is getting exceptions (i.e., is faulting) even
before it fork()s the child process. The child is faulting the same
way. This looks pretty much like your sample program was built with
incorrect assumptions.

Answer: Yes I am trying to find why such exceptions has come.
 are
You can try posting the compilation (and linking) command(s) that you
used to build your btrsamp.exe program. Maybe there's something
obvious there that somebody here can see. We can't help you debug your
program though, and you can't mix Windows-native DLLs that use
Microsoft C runtime with Cygwin code.

Answer: Please find below compilation and linking code

linking varaible

export CC=gcc
export LEX=flex
export CYGWIN=server
export PLATFORM=NT4
export OS_FLAGS="-Wall -DNT4 -DNW_SUPPORT -DNORELISAM -D_KERNEL -DCYG15"
export OS_CIOS=
export OS_LIBS="-L/usr/lib -lkernel32 -lcygwin -lmingw32 -L/usr/lib
-lkernel32 -L/usr/bin -lgcc -L/usr/local/lib -lcompat -lbtr"
export OS_DMS= # OS specific DMS's to be built
export LCFLAGS="$OS_FLAGS"               # Lex CFLAGS
export YCFLAGS="$OS_FLAGS"               # Yacc CFLAGS


makefile:
CC = gcc
LDFLAGS =
CFLAGS = -I../../intf/c

CFLAGS += -DBTI_WIN ----- this is for pervasive----
LDFLAGS += -L$(PVSW_ROOT)/lib
SYSLIBS=-lcurses $(OS_LIBS)

#EXECS = btrsamp
#OBJS = btrsamp.o

default:
@echo --------------------------------------------------------
@echo  PSQL
@echo  Btrieve samples
@echo
@echo  Type \"make all\" to make all executables.
@echo  Type \"make clean\" to remove object files.
@echo  Type \"make cleanall\" to remove all non-source files.
@echo --------------------------------------------------------

# all: $(EXECS)

all: allbins

allbins:
@echo "Compiling sample..."
@$(CC) $(INCLPATH)  btrapi.c -o btrapi btrsamp.c -o btrsamp $(CFLAGS)
$(LDFLAGS) $(SYSLIBS)

btrsamp:

Sample code:
------------ I have put only fork call code-------
iStat = fork();
printf("\nCreating Clients using fork method iStat is %d...\n",iStat);
if ((iStat) == 0 )
        {
printf("\n I am in child \n");
            rd_proc_wr_request();
printf("\n I am in child exit \n");  --- Program never reaches here
            exit(0);
}
    /*when the process client finishes Kill the child */

        else
        {
/*We are the parent so free the memory*/
sleep(15);
printf("start of  Main Process \n");
errWaitPid = waitpid( iStat, &wstatus, WNOHANG | WUNTRACED | WCONTINUED );
printf( "errWaitPid = %d, errno = %d, comment = %s\n", errWaitPid,
errno, strerror( errno ) );
printf ("Parent reads <%s>\n",shm) ;
printf("Exiting Main Process\n");
            exit(0);
        }
------------This child process------------
static void* rd_proc_wr_request()
{


    printf("This is child process...\n");
printf("Btrieve before B_OPEN status with BTRV (sample.btr) = %d\n", status);
status = BTRV(
                B_OPEN,
                posBlock1,
                dataBuf,
                &dataLen,
                keyBuf1,
                keyNum);

    printf("Btrieve B_OPEN status (sample.btr) = %d\n", status);  ----
Program never reaches here----



I hope I have put relevant information. Sorry if some extra infos are provided.

On Thu, Jan 5, 2017 at 9:33 AM, Rashi Singhal <singhal.rashi@gmail.com> wrote:
> Hi ,
>
>
> Thanks for information provided.
>
> I tried putting cygwin/ bin path in first place in environment
> variables. But result remain same.
>
> Yes all other DLL's getting loaded are either pervasive dll or windows
> native dll.
>
> I have doubt ,.Is there any compilation variable or cygwin varaible
> set for autoloading all dll's
>
> As in same windows 2012 system this extra DLL's are not getting loaded
> with previous versions of cywin and Fork is working there.
>
> I have downloaded the source also, I check some varibel there if you can help.
>
> Looks like program just hangs child process after open call and never
> comes back.
>
>   Please suggest what I can check .
>
>
> On Tue, Jan 3, 2017 at 2:23 PM, Rashi Singhal <singhal.rashi@gmail.com> wrote:
>> Hi,
>>
>> I am using cygwin 2.6.0 (32 bit) version with Actian Pervasive version 12.
>>
>> We have a program which will call fork() and in child process Btrieve
>> file is getting opened.
>>
>> While using latest version of cygwin, file open call is not working ,
>> Its not opening file nor displaying any error.
>>
>> Could you please help me on this .
>>
>> I checked all installation also . Still problem exist
>>
>> Regards,
>> Rashi

--
Problem reports:       http://cygwin.com/problems.html
FAQ:                   http://cygwin.com/faq/
Documentation:         http://cygwin.com/docs.html
Unsubscribe info:      http://cygwin.com/ml/#unsubscribe-simple

^ permalink raw reply	[flat|nested] 12+ messages in thread

* Re: Cygwin 2.6.0 Fork issue
  2017-01-05  4:04 ` Rashi Singhal
@ 2017-01-05 10:17   ` Mark Geisert
  2017-01-06  2:58   ` Rashi Singhal
  1 sibling, 0 replies; 12+ messages in thread
From: Mark Geisert @ 2017-01-05 10:17 UTC (permalink / raw)
  To: cygwin

Rashi Singhal wrote:
> Hi ,
> Thanks for information provided.
>
> I tried putting cygwin/ bin path in first place in environment
> variables. But result remain same.

OK.

> Yes all other DLL's getting loaded are either pervasive dll or windows
> native dll.

You might be missing the essential point here.  Windows-native DLLs that make 
use of the Microsoft C runtime are not compatible with Cygwin.  They will not 
work properly.  If Actian Pervasive separately supplies their code as Cygwin 
DLLs, you must use those.

> I have doubt ,.Is there any compilation variable or cygwin varaible
> set for autoloading all dll's

Not sure why you're asking this.

> As in same windows 2012 system this extra DLL's are not getting loaded
> with previous versions of cywin and Fork is working there.

You're saying that on this same computer, running Win 2012, this sample code ran 
properly under a previous version of Cygwin?  Which version was that?

> I have downloaded the source also, I check some varibel there if you can help.

Which source have you downloaded?  Whose source?

> Looks like program just hangs child process after open call and never
> comes back.
>
>    Please suggest what I can check .

Your sample program is getting exceptions (i.e., is faulting) even before it 
fork()s the child process.  The child is faulting the same way.  This looks 
pretty much like your sample program was built with incorrect assumptions.

You can try posting the compilation (and linking) command(s) that you used to 
build your btrsamp.exe program.  Maybe there's something obvious there that 
somebody here can see.  We can't help you debug your program though, and you 
can't mix Windows-native DLLs that use Microsoft C runtime with Cygwin code.

..mark

--
Problem reports:       http://cygwin.com/problems.html
FAQ:                   http://cygwin.com/faq/
Documentation:         http://cygwin.com/docs.html
Unsubscribe info:      http://cygwin.com/ml/#unsubscribe-simple

^ permalink raw reply	[flat|nested] 12+ messages in thread

* Re: Cygwin 2.6.0 Fork issue
  2017-01-03  8:53 Rashi Singhal
@ 2017-01-05  4:04 ` Rashi Singhal
  2017-01-05 10:17   ` Mark Geisert
  2017-01-06  2:58   ` Rashi Singhal
  0 siblings, 2 replies; 12+ messages in thread
From: Rashi Singhal @ 2017-01-05  4:04 UTC (permalink / raw)
  To: cygwin

Hi ,


Thanks for information provided.

I tried putting cygwin/ bin path in first place in environment
variables. But result remain same.

Yes all other DLL's getting loaded are either pervasive dll or windows
native dll.

I have doubt ,.Is there any compilation variable or cygwin varaible
set for autoloading all dll's

As in same windows 2012 system this extra DLL's are not getting loaded
with previous versions of cywin and Fork is working there.

I have downloaded the source also, I check some varibel there if you can help.

Looks like program just hangs child process after open call and never
comes back.

  Please suggest what I can check .


On Tue, Jan 3, 2017 at 2:23 PM, Rashi Singhal <singhal.rashi@gmail.com> wrote:
> Hi,
>
> I am using cygwin 2.6.0 (32 bit) version with Actian Pervasive version 12.
>
> We have a program which will call fork() and in child process Btrieve
> file is getting opened.
>
> While using latest version of cygwin, file open call is not working ,
> Its not opening file nor displaying any error.
>
> Could you please help me on this .
>
> I checked all installation also . Still problem exist
>
> Regards,
> Rashi

--
Problem reports:       http://cygwin.com/problems.html
FAQ:                   http://cygwin.com/faq/
Documentation:         http://cygwin.com/docs.html
Unsubscribe info:      http://cygwin.com/ml/#unsubscribe-simple

^ permalink raw reply	[flat|nested] 12+ messages in thread

* Re: Cygwin 2.6.0 Fork issue
@ 2017-01-03 11:17 Mark Geisert
  0 siblings, 0 replies; 12+ messages in thread
From: Mark Geisert @ 2017-01-03 11:17 UTC (permalink / raw)
  To: cygwin

(Apologies if multiple copies of this show up.  Not getting feedback on what 
the issue is.  This attempt just has my comments on the strace file, 
without the strace itself.)

Rashi Singhal wrote:
> Please help me on this. This is strace output of my sample program
> which is failing to open files after fork in child process.
> 
> I am using 2.26 (32 bit) version of cygwin with Pervasive 12 . Windows
> Os is win-2012.
> 
> My sample program name is btrsamp.exe.
> 
> Please give me some clue on what could be issue here.

I see several unusual things in the strace.  They're noted below...

> --- Process 6704 created
> --- Process 6704 loaded C:\Windows\SysWOW64\ntdll.dll at 771A0000
> --- Process 6704 loaded C:\Windows\SysWOW64\KernelBase.dll at 74C00000
> --- Process 6704 loaded \\blrvswdbm01\bmpc226\misys\bin\cygwin1.dll at 
> 61000000

...

> --- Process 6704 loaded
> C:\Windows\WinSxS\x86_microsoft.vc80.crt_1fc8b3b9a1e18e3b_8.0.50727.6910_none_d089c358442de345\msvcr80.dll
> at 6F2D0000

The main process loaded cygwin1.dll further above, but is here loading the MS C
runtime, which is incompatible with cygwin1.dll.

...

> --- Process 6704 loaded C:\Program Files
> (x86)\Actian\PSQL\bin\w3mif190.dll at 67D00000
> --- Process 6704 loaded C:\Windows\SysWOW64\clusapi.dll at 6FEC0000
> --- Process 6704 loaded C:\Windows\SysWOW64\cryptdll.dll at 70090000
> --- Process 6704 loaded C:\Program Files
> (x86)\Actian\PSQL\bin\clientrb.dll at 02530000
> --- Process 6704, exception 000006d9 at 74C10192

Main process caused an exception in KernelBase.dll

> --- Process 6704 loaded C:\Windows\SysWOW64\NapiNSP.dll at 74260000
> --- Process 6704 loaded C:\Windows\SysWOW64\nlaapi.dll at 74250000
> --- Process 6704 loaded C:\Windows\SysWOW64\mswsock.dll at 74180000
> --- Process 6704 thread 5568 created
> --- Process 6704 loaded C:\Windows\SysWOW64\dnsapi.dll at 74100000
> --- Process 6704 loaded C:\Windows\SysWOW64\winrnr.dll at 740E0000
> --- Process 6704, exception e06d7363 at 74C10192

Main process caused another exception in KernelBase.dll

...

> --- Process 6704, exception e06d7363 at 74C10192

And another exception, either a new one or a second-chance reporting of the
previous one.  Haven't even gotten to the fork() yet...

...

>     58  629941 [main] btrsamp 6704 fork: entering

Main process has just entered fork().

...

> --- Process 5876 created

...

> --- Process 5876 loaded C:\Program Files
> (x86)\Actian\PSQL\bin\clientrb.dll at 02530000
> --- Process 5876, exception 000006d9 at 74C10192

Child process causes an exception in KernelBase.dll just like the parent did at
first...

> --- Process 5876 thread 4956 exited with status 0x6d9
> --- Process 5876 thread 1212 exited with status 0x6d9
> --- Process 5876 thread 3544 exited with status 0x6d9
> --- Process 5876 thread 5868 created
> --- Process 5876 exited with status 0x6d9

But this was enough to kill the child process.  Not sure if relevant but the
first exception reported by both parent and child came just after loading
clientrb.dll.  Is this DLL Cygwin-specific or Windows-native?

> 487729 1281052 [waitproc] btrsamp 6704
> pinfo::maybe_set_exit_code_from_windows: pid 5876, exit value - old
> 0x0, windows 0x6D9, cygwin 0x800D900
>    131 1281183 [waitproc] btrsamp 6704 sig_send: sendsig 0xAC, pid

...

>     44 15806380 [main] btrsamp 6704 normalize_posix_path:
> /cygdrive/l/bmpcunix/etc/gmon.out = normalize_posix_path (gmon.out)
>     51 15806431 [main] btrsamp 6704 mount_info::conv_to_win32_path:
> conv_to_win32_path (/cygdrive/l/bmpcunix/etc/gmon.out)
>     52 15806483 [main] btrsamp 6704 mount_info::cygdrive_win32_path:
> src '/cygdrive/l/bmpcunix/etc/gmon.out', dst
> 'L:\bmpcunix\etc\gmon.out'
>     44 15806527 [main] btrsamp 6704 set_flags: flags: binary (0x2)
>     42 15806569 [main] btrsamp 6704 mount_info::conv_to_win32_path:
> src_path /cygdrive/l/bmpcunix/etc/gmon.out, dst
> L:\bmpcunix\etc\gmon.out, flags 0x4022, rc 0
>    433 15807002 [main] btrsamp 6704 symlink_info::check: 0x0 =
> NtCreateFile (\??\L:\bmpcunix\etc\gmon.out)

Above are several lines mentioning gmon.out.  If you're trying to profile, you
should postpone that until after you get the program working.

In addition to what Brian and Eliot have suggested, you might try moving the
cygwin/bin directory from the end of your PATH to the start of your PATH.  I'm
also wondering if every DLL being associated with your program was built for
Cygwin, or if you might be mistakenly pulling in one or more Windows-native 
DLLs.

..mark

--
Problem reports:       http://cygwin.com/problems.html
FAQ:                   http://cygwin.com/faq/
Documentation:         http://cygwin.com/docs.html
Unsubscribe info:      http://cygwin.com/ml/#unsubscribe-simple

^ permalink raw reply	[flat|nested] 12+ messages in thread

* Cygwin 2.6.0 Fork issue
@ 2017-01-03  8:53 Rashi Singhal
  2017-01-05  4:04 ` Rashi Singhal
  0 siblings, 1 reply; 12+ messages in thread
From: Rashi Singhal @ 2017-01-03  8:53 UTC (permalink / raw)
  To: cygwin

Hi,

I am using cygwin 2.6.0 (32 bit) version with Actian Pervasive version 12.

We have a program which will call fork() and in child process Btrieve
file is getting opened.

While using latest version of cygwin, file open call is not working ,
Its not opening file nor displaying any error.

Could you please help me on this .

I checked all installation also . Still problem exist

Regards,
Rashi

--
Problem reports:       http://cygwin.com/problems.html
FAQ:                   http://cygwin.com/faq/
Documentation:         http://cygwin.com/docs.html
Unsubscribe info:      http://cygwin.com/ml/#unsubscribe-simple

^ permalink raw reply	[flat|nested] 12+ messages in thread

* Re: Cygwin 2.6.0 Fork issue
  2016-12-30  8:25   ` Rashi Singhal
@ 2016-12-30 19:25     ` Eliot Moss
  0 siblings, 0 replies; 12+ messages in thread
From: Eliot Moss @ 2016-12-30 19:25 UTC (permalink / raw)
  To: cygwin

Looking at what you sent I see at least two suspicious
things:

1) SEVERAL orphaned Cygwin installations.  This indicates
you may have multiple installation of Cygwin in different
places, and this can certainly lead to trouble.

2) A number of files missing from certain packages, which
(at a glance) all seemed to be under /opt or /sbin.  Did
you happen to delete those hierarchies?  Or is there some
reason they could not be created?

I am not quite as expert at figuring out this sort of
problem as some others on the list, so I might be barking
up the wrong tree, but these seem worthy of investigation.

One way to fix things is to remove *all* Cygwin installations
(see the installation mentioned in the cygcheck output) and
reinstall Cygwin from scratch, paying attention if any files
could not be created (the /opt and /sbin concern).  There
may be simpler fixes.  And of course this does not rule out
BLODA (badly behaving other programs that interfere with
Cygwin's mechanisms - often anti-virus and similar tools).

Regards - Eliot Moss

--
Problem reports:       http://cygwin.com/problems.html
FAQ:                   http://cygwin.com/faq/
Documentation:         http://cygwin.com/docs.html
Unsubscribe info:      http://cygwin.com/ml/#unsubscribe-simple

^ permalink raw reply	[flat|nested] 12+ messages in thread

* Re: Cygwin 2.6.0 Fork issue
  2016-12-16  9:28 ` Rashi Singhal
@ 2016-12-30  8:25   ` Rashi Singhal
  2016-12-30 19:25     ` Eliot Moss
  0 siblings, 1 reply; 12+ messages in thread
From: Rashi Singhal @ 2016-12-30  8:25 UTC (permalink / raw)
  To: cygwin

Hi,

Please help me on this. This is strace output of my sample program
which is failing to open files after fork in child process.

I am using 2.26 (32 bit) version of cygwin with Pervasive 12 . Windows
Os is win-2012.

My sample program name is btrsamp.exe.

Please give me some clue on what could be issue here.

--- Process 6704 created
--- Process 6704 loaded C:\Windows\SysWOW64\ntdll.dll at 771A0000
--- Process 6704 unloaded DLL at 002C0000
--- Process 6704 unloaded DLL at 76A40000
--- Process 6704 unloaded DLL at 002C0000
--- Process 6704 unloaded DLL at 005E0000
--- Process 6704 loaded C:\Windows\SysWOW64\kernel32.dll at 76A40000
--- Process 6704 loaded C:\Windows\SysWOW64\KernelBase.dll at 74C00000
--- Process 6704 loaded \\blrvswdbm01\bmpc226\misys\bin\cygwin1.dll at 61000000
--- Process 6704 loaded \\blrvswdbm01\bmpc226\misys\bin\cyggcc_s-1.dll
at 6C4E0000
--- Process 6704 loaded C:\Program Files
(x86)\Actian\PSQL\bin\w3btrv7.dll at 10000000
--- Process 6704 loaded C:\Program Files
(x86)\Actian\PSQL\bin\pscore4.dll at 00420000
--- Process 6704 loaded C:\Program Files
(x86)\Actian\PSQL\bin\pscl4.dll at 005E0000
--- Process 6704 loaded C:\Windows\SysWOW64\user32.dll at 76E30000
--- Process 6704 loaded
C:\Windows\WinSxS\x86_microsoft.vc80.crt_1fc8b3b9a1e18e3b_8.0.50727.6910_none_d089c358442de345\msvcr80.dll
at 6F2D0000
--- Process 6704 loaded C:\Windows\SysWOW64\rpcrt4.dll at 76870000
--- Process 6704 loaded C:\Windows\SysWOW64\advapi32.dll at 749C0000
--- Process 6704 loaded C:\Windows\SysWOW64\ole32.dll at 76D10000
--- Process 6704 loaded C:\Windows\SysWOW64\ws2_32.dll at 76CC0000
--- Process 6704 loaded C:\Windows\SysWOW64\wtsapi32.dll at 73C90000
--- Process 6704 loaded C:\Windows\SysWOW64\mpr.dll at 703D0000
--- Process 6704 loaded C:\Windows\SysWOW64\gdi32.dll at 766D0000
--- Process 6704 loaded C:\Windows\SysWOW64\msvcrt.dll at 74D40000
--- Process 6704 loaded C:\Windows\SysWOW64\sspicli.dll at 74780000
--- Process 6704 loaded C:\Windows\SysWOW64\sechost.dll at 74950000
--- Process 6704 loaded C:\Windows\SysWOW64\combase.dll at 747C0000
--- Process 6704 loaded C:\Windows\SysWOW64\nsi.dll at 747B0000
--- Process 6704 loaded C:\Windows\SysWOW64\cryptbase.dll at 74770000
--- Process 6704 loaded C:\Windows\SysWOW64\bcryptprimitives.dll at 74710000
    4       4 [main] btrsamp (6704)
**********************************************
  205     209 [main] btrsamp (6704) Program name:
L:\bmpcunix\etc\btrsamp.exe (windows pid 6704)
   62     271 [main] btrsamp (6704) OS version:   Windows NT-6.2
   51     322 [main] btrsamp (6704)
**********************************************
  126     448 [main] btrsamp (6704) sigprocmask: 0 = sigprocmask (0,
0x0, 0x612B462C)
  599    1047 [main] btrsamp 6704 open_shared: name shared.5, n 5,
shared 0x60FF0000 (wanted 0x60FF0000), h 0x94, *m 6
   90    1137 [main] btrsamp 6704 user_heap_info::init: heap base
0x80000000, heap top 0x80000000, heap size 0x18000000 (402653184)
   78    1215 [main] btrsamp 6704 open_shared: name
S-1-5-21-1914378695-1302515424-3380946746-25551.1, n 1, shared
0x60FE0000 (wanted 0x60FE0000), h 0x90, *m 6
   54    1269 [main] btrsamp 6704 user_info::create: opening user
shared for 'S-1-5-21-1914378695-1302515424-3380946746-25551' at
0x60FE0000
   53    1322 [main] btrsamp 6704 user_info::create: user shared
version AB1FCCE8
  122    1444 [main] btrsamp 6704 fhandler_pipe::create: name
\\.\pipe\cygwin-a10c501e1982f40e-6704-sigwait, size 5412, mode
PIPE_TYPE_MESSAGE
  121    1565 [main] btrsamp 6704 fhandler_pipe::create: pipe read handle 0xA8
   72    1637 [main] btrsamp 6704 fhandler_pipe::create: CreateFile:
name \\.\pipe\cygwin-a10c501e1982f40e-6704-sigwait
   85    1722 [main] btrsamp 6704 fhandler_pipe::create: pipe write handle 0xAC
   63    1785 [main] btrsamp 6704 dll_crt0_0: finished dll_crt0_0 initialization
--- Process 6704 loaded C:\Windows\SysWOW64\imm32.dll at 76850000
--- Process 6704 loaded C:\Windows\SysWOW64\msctf.dll at 76960000
--- Process 6704 thread 2568 created
58724   60509 [sig] btrsamp 6704 wait_sig: entering ReadFile loop,
my_readsig 0xA8, my_sendsig 0xAC
 9197   69706 [main] btrsamp 6704 time: 1483077515 = time(0x0)
16712   86418 [main] btrsamp 6704 mount_info::conv_to_posix_path:
conv_to_posix_path (L:\bmpcunix\etc, 0x0, no-add-slash)
   91   86509 [main] btrsamp 6704 normalize_win32_path:
L:\bmpcunix\etc = normalize_win32_path (L:\bmpcunix\etc)
  184   86693 [main] btrsamp 6704 mount_info::conv_to_posix_path:
/cygdrive/l/bmpcunix/etc = conv_to_posix_path (L:\bmpcunix\etc)
  111   86804 [main] btrsamp 6704 sigprocmask: 0 = sigprocmask (0,
0x0, 0x800180AC)
  202   87006 [main] btrsamp 6704 _cygwin_istext_for_stdio: fd 0: not open
 3129   90135 [main] btrsamp 6704 _cygwin_istext_for_stdio: fd 1: not open
   50   90185 [main] btrsamp 6704 _cygwin_istext_for_stdio: fd 2: not open
  169   90354 [main] btrsamp (6704) open_shared: name cygpid.6704, n
6704, shared 0x60FD0000 (wanted 0x60FD0000), h 0x158, *m 2
   62   90416 [main] btrsamp (6704) time: 1483077515 = time(0x0)
   66   90482 [main] btrsamp 6704 pinfo::thisproc: myself dwProcessId 6704
  154   90636 [main] btrsamp 6704 environ_init: GetEnvironmentStrings
returned 0x731770
   97   90733 [main] btrsamp 6704 environ_init: 0x80028298:
ALLUSERSPROFILE=C:\ProgramData
   77   90810 [main] btrsamp 6704 environ_init: 0x800282C0:
APPDATA=C:\Users\rashi\AppData\Roaming
  138   90948 [main] btrsamp 6704 environ_init: 0x800282F0:
CLASSPATH=.;C:\jdk1.7.0_71\jre\lib;C:\jdk1.7.0_71;C:\EssenceData\tobedelivered\SQLWorkbench\Driver_jars\;C:\PROGRA~1\IBM\SQLLIB\java\db2java.zip;C:\PROGRA~1\IBM\SQLLIB\java\db2jcc.jar;C:\PROGRA~1\IBM\SQLLIB\java\sqlj.zip;C:\PROGRA~1\IBM\SQLLIB\java\db2jcc_license_cu.jar;C:\PROGRA~1\IBM\SQLLIB\bin;C:\PROGRA~1\IBM\SQLLIB\java\common.jar;C:\Program
Files\Java\jdk1.7.0_71\jre\lib
   83   91031 [main] btrsamp 6704 environ_init: 0x80028470:
CLIENTNAME=BLRBMLAN027
   77   91108 [main] btrsamp 6704 environ_init: 0x80028490:
COMMONPROGRAMFILES=C:\Program Files (x86)\Common Files
   75   91183 [main] btrsamp 6704 environ_init: 0x800284D0:
COMPUTERNAME=BLRVSWDBM01
   76   91259 [main] btrsamp 6704 environ_init: 0x800284F0:
COMSPEC=C:\Windows\system32\cmd.exe
   80   91339 [main] btrsamp 6704 parse_options: glob (called func)
   78   91417 [main] btrsamp 6704 parse_options: proc_retry (called func)
   74   91491 [main] btrsamp 6704 parse_options: returning
   42   91533 [main] btrsamp 6704 environ_init: 0x80028518:
CYGWIN=noglob proc_retry:3
   96   91629 [main] btrsamp 6704 environ_init: 0x80028560:
CommonProgramFiles(x86)=C:\Program Files (x86)\Common Files
   92   91721 [main] btrsamp 6704 environ_init: 0x800285A0:
CommonProgramW6432=C:\Program Files\Common Files
   75   91796 [main] btrsamp 6704 environ_init: 0x800285D8: DB2INSTANCE=DB2
   75   91871 [main] btrsamp 6704 environ_init: 0x800285F0: EXECIGNORE=*.dll
   74   91945 [main] btrsamp 6704 environ_init: 0x80028608: FP_NO_HOST_CHECK=NO
   75   92020 [main] btrsamp 6704 getwinenv: can't set native for
HOME= since no environ yet
   47   92067 [main] btrsamp 6704 mount_info::conv_to_posix_path:
conv_to_posix_path (L:\misys\home\rashi, 0x10000000, no-add-slash)
   48   92115 [main] btrsamp 6704 normalize_win32_path:
L:\misys\home\rashi = normalize_win32_path (L:\misys\home\rashi)
   47   92162 [main] btrsamp 6704 mount_info::conv_to_posix_path:
/home/rashi = conv_to_posix_path (L:\misys\home\rashi)
  108   92270 [main] btrsamp 6704 win_env::add_cache: posix /home/rashi
   43   92313 [main] btrsamp 6704 win_env::add_cache: native
HOME=L:\misys\home\rashi
   99   92412 [main] btrsamp 6704 posify_maybe: env var converted to
HOME=/home/rashi
  108   92520 [main] btrsamp 6704 environ_init: 0x80028670: HOME=/home/rashi
   84   92604 [main] btrsamp 6704 environ_init: 0x80028620: HOMEDRIVE=G:
   97   92701 [main] btrsamp 6704 environ_init: 0x80028688: HOMEPATH=\
   76   92777 [main] btrsamp 6704 environ_init: 0x80028698:
HOMESHARE=\\misys.global.ad\bangalore\HomeDirs\Rashi
   76   92853 [main] btrsamp 6704 environ_init: 0x800286D8:
INCLUDE=C:\PROGRA~1\IBM\SQLLIB\INCLUDE;C:\PROGRA~1\IBM\SQLLIB\LIB
   75   92928 [main] btrsamp 6704 environ_init: 0x80028720:
JAVA_HOME=C:\Program Files\Java\jdk1.7.0_71;C:\jdk1.7.0_71
   76   93004 [main] btrsamp 6704 environ_init: 0x80028760:
LIB=;C:\PROGRA~1\IBM\SQLLIB\LIB;C:\Program
Files\Java\jdk1.7.0_71\jre\lib;C:\jdk1.7.0_71\jre\lib
   75   93079 [main] btrsamp 6704 environ_init: 0x800287C8:
LOCALAPPDATA=C:\Users\rashi\AppData\Local
   80   93159 [main] btrsamp 6704 environ_init: 0x800287F8:
LOGONSERVER=\\BLR2VSWMISYSDC2
   79   93238 [main] btrsamp 6704 environ_init: 0x80028820:
NUMBER_OF_PROCESSORS=1
   74   93312 [main] btrsamp 6704 environ_init: 0x80028840: OS=Windows_NT
   83   93395 [main] btrsamp 6704 getwinenv: can't set native for
PATH= since no environ yet
  100   93495 [main] btrsamp 6704 mount_info::conv_to_posix_path:
conv_to_posix_path (C:\Program Files (x86)\Actian\PSQL\bin,
0x10000100, no-add-slash)
   47   93542 [main] btrsamp 6704 normalize_win32_path: C:\Program
Files (x86)\Actian\PSQL\bin = normalize_win32_path (C:\Program Files
(x86)\Actian\PSQL\bin)
   52   93594 [main] btrsamp 6704 mount_info::conv_to_posix_path:
/cygdrive/c/Program Files (x86)/Actian/PSQL/bin = conv_to_posix_path
(C:\Program Files (x86)\Actian\PSQL\bin)
   73   93667 [main] btrsamp 6704 mount_info::conv_to_posix_path:
conv_to_posix_path (C:\Program Files\Actian\PSQL\bin, 0x10000100,
no-add-slash)
   51   93718 [main] btrsamp 6704 normalize_win32_path: C:\Program
Files\Actian\PSQL\bin = normalize_win32_path (C:\Program
Files\Actian\PSQL\bin)
   48   93766 [main] btrsamp 6704 mount_info::conv_to_posix_path:
/cygdrive/c/Program Files/Actian/PSQL/bin = conv_to_posix_path
(C:\Program Files\Actian\PSQL\bin)
   48   93814 [main] btrsamp 6704 mount_info::conv_to_posix_path:
conv_to_posix_path (C:\Windows\system32, 0x10000100, no-add-slash)
   46   93860 [main] btrsamp 6704 normalize_win32_path:
C:\Windows\system32 = normalize_win32_path (C:\Windows\system32)
   47   93907 [main] btrsamp 6704 mount_info::conv_to_posix_path:
/cygdrive/c/Windows/system32 = conv_to_posix_path
(C:\Windows\system32)
   47   93954 [main] btrsamp 6704 mount_info::conv_to_posix_path:
conv_to_posix_path (C:\Windows, 0x10000100, no-add-slash)
   46   94000 [main] btrsamp 6704 normalize_win32_path: C:\Windows =
normalize_win32_path (C:\Windows)
   47   94047 [main] btrsamp 6704 mount_info::conv_to_posix_path:
/cygdrive/c/Windows = conv_to_posix_path (C:\Windows)
   47   94094 [main] btrsamp 6704 mount_info::conv_to_posix_path:
conv_to_posix_path (C:\Windows\System32\Wbem, 0x10000100,
no-add-slash)
   46   94140 [main] btrsamp 6704 normalize_win32_path:
C:\Windows\System32\Wbem = normalize_win32_path
(C:\Windows\System32\Wbem)
   47   94187 [main] btrsamp 6704 mount_info::conv_to_posix_path:
/cygdrive/c/Windows/System32/Wbem = conv_to_posix_path
(C:\Windows\System32\Wbem)
   46   94233 [main] btrsamp 6704 mount_info::conv_to_posix_path:
conv_to_posix_path (C:\Windows\System32\WindowsPowerShell\v1.0,
0x10000100, no-add-slash)
   47   94280 [main] btrsamp 6704 normalize_win32_path:
C:\Windows\System32\WindowsPowerShell\v1.0 = normalize_win32_path
(C:\Windows\System32\WindowsPowerShell\v1.0)
   47   94327 [main] btrsamp 6704 mount_info::conv_to_posix_path:
/cygdrive/c/Windows/System32/WindowsPowerShell/v1.0 =
conv_to_posix_path (C:\Windows\System32\WindowsPowerShell\v1.0)
   47   94374 [main] btrsamp 6704 mount_info::conv_to_posix_path:
conv_to_posix_path (C:\Program Files\ibm\gsk8\lib64, 0x10000100,
no-add-slash)
   47   94421 [main] btrsamp 6704 normalize_win32_path: C:\Program
Files\ibm\gsk8\lib64 = normalize_win32_path (C:\Program
Files\ibm\gsk8\lib64)
   47   94468 [main] btrsamp 6704 mount_info::conv_to_posix_path:
/cygdrive/c/Program Files/ibm/gsk8/lib64 = conv_to_posix_path
(C:\Program Files\ibm\gsk8\lib64)
   46   94514 [main] btrsamp 6704 mount_info::conv_to_posix_path:
conv_to_posix_path (C:\Program Files (x86)\ibm\gsk8\lib, 0x10000100,
no-add-slash)
   47   94561 [main] btrsamp 6704 normalize_win32_path: C:\Program
Files (x86)\ibm\gsk8\lib = normalize_win32_path (C:\Program Files
(x86)\ibm\gsk8\lib)
   66   94627 [main] btrsamp 6704 mount_info::conv_to_posix_path:
/cygdrive/c/Program Files (x86)/ibm/gsk8/lib = conv_to_posix_path
(C:\Program Files (x86)\ibm\gsk8\lib)
   55   94682 [main] btrsamp 6704 mount_info::conv_to_posix_path:
conv_to_posix_path (C:\Program Files\Java\jre7\bin, 0x10000100,
no-add-slash)
   48   94730 [main] btrsamp 6704 normalize_win32_path: C:\Program
Files\Java\jre7\bin = normalize_win32_path (C:\Program
Files\Java\jre7\bin)
   49   94779 [main] btrsamp 6704 mount_info::conv_to_posix_path:
/cygdrive/c/Program Files/Java/jre7/bin = conv_to_posix_path
(C:\Program Files\Java\jre7\bin)
   50   94829 [main] btrsamp 6704 mount_info::conv_to_posix_path:
conv_to_posix_path (C:\PROGRA~1\IBM\SQLLIB\BIN, 0x10000100,
no-add-slash)
   47   94876 [main] btrsamp 6704 normalize_win32_path:
C:\PROGRA~1\IBM\SQLLIB\BIN = normalize_win32_path
(C:\PROGRA~1\IBM\SQLLIB\BIN)
   47   94923 [main] btrsamp 6704 mount_info::conv_to_posix_path:
/cygdrive/c/PROGRA~1/IBM/SQLLIB/BIN = conv_to_posix_path
(C:\PROGRA~1\IBM\SQLLIB\BIN)
   47   94970 [main] btrsamp 6704 mount_info::conv_to_posix_path:
conv_to_posix_path (C:\PROGRA~1\IBM\SQLLIB\FUNCTION, 0x10000100,
no-add-slash)
   46   95016 [main] btrsamp 6704 normalize_win32_path:
C:\PROGRA~1\IBM\SQLLIB\FUNCTION = normalize_win32_path
(C:\PROGRA~1\IBM\SQLLIB\FUNCTION)
   48   95064 [main] btrsamp 6704 mount_info::conv_to_posix_path:
/cygdrive/c/PROGRA~1/IBM/SQLLIB/FUNCTION = conv_to_posix_path
(C:\PROGRA~1\IBM\SQLLIB\FUNCTION)
   47   95111 [main] btrsamp 6704 mount_info::conv_to_posix_path:
conv_to_posix_path (C:\PROGRA~1\IBM\SQLLIB\SAMPLES\REPL, 0x10000100,
no-add-slash)
   47   95158 [main] btrsamp 6704 normalize_win32_path:
C:\PROGRA~1\IBM\SQLLIB\SAMPLES\REPL = normalize_win32_path
(C:\PROGRA~1\IBM\SQLLIB\SAMPLES\REPL)
   46   95204 [main] btrsamp 6704 mount_info::conv_to_posix_path:
/cygdrive/c/PROGRA~1/IBM/SQLLIB/SAMPLES/REPL = conv_to_posix_path
(C:\PROGRA~1\IBM\SQLLIB\SAMPLES\REPL)
   47   95251 [main] btrsamp 6704 mount_info::conv_to_posix_path:
conv_to_posix_path (C:\Program Files\Java\jdk1.7.0_71\bin, 0x10000100,
no-add-slash)
   47   95298 [main] btrsamp 6704 normalize_win32_path: C:\Program
Files\Java\jdk1.7.0_71\bin = normalize_win32_path (C:\Program
Files\Java\jdk1.7.0_71\bin)
   47   95345 [main] btrsamp 6704 mount_info::conv_to_posix_path:
/cygdrive/c/Program Files/Java/jdk1.7.0_71/bin = conv_to_posix_path
(C:\Program Files\Java\jdk1.7.0_71\bin)
   47   95392 [main] btrsamp 6704 mount_info::conv_to_posix_path:
conv_to_posix_path (C:\jdk1.7.0_71\bin, 0x10000100, no-add-slash)
   46   95438 [main] btrsamp 6704 normalize_win32_path:
C:\jdk1.7.0_71\bin = normalize_win32_path (C:\jdk1.7.0_71\bin)
   46   95484 [main] btrsamp 6704 mount_info::conv_to_posix_path:
/cygdrive/c/jdk1.7.0_71/bin = conv_to_posix_path (C:\jdk1.7.0_71\bin)
   47   95531 [main] btrsamp 6704 mount_info::conv_to_posix_path:
conv_to_posix_path (l:\misys\bin, 0x10000100, no-add-slash)
   47   95578 [main] btrsamp 6704 normalize_win32_path: L:\misys\bin =
normalize_win32_path (l:\misys\bin)
   71   95649 [main] btrsamp 6704 mount_info::conv_to_posix_path:
/usr/bin = conv_to_posix_path (l:\misys\bin)
  112   95761 [main] btrsamp 6704 win_env::add_cache: posix
/cygdrive/c/Program Files (x86)/Actian/PSQL/bin:/cygdrive/c/Program
Files/Actian/PSQL/bin:/cygdrive/c/Windows/system32:/cygdrive/c/Windows:/cygdrive/c/Windows/System32/Wbem:/cygdrive/c/Windows/System32/WindowsPowerShell/v1.0:/cygdrive/c/Program
Files/ibm/gsk8/lib64:/cygdrive/c/Program Files
(x86)/ibm/gsk8/lib:/cygdrive/c/Program
Files/Java/jre7/bin:/cygdrive/c/PROGRA~1/IBM/SQLLIB/BIN:/cygdrive/c/PROGRA~1/IBM/SQLLIB/FUNCTION:/cygdrive/c/PROGRA~1/IBM/SQLLIB/SAMPLES/REPL:/cygdrive/c/Program
Files/Java/jdk1.7.0_71/bin:/cygdrive/c/jdk1.7.0_71/bin:/usr/bin
   49   95810 [main] btrsamp 6704 win_env::add_cache: native
PATH=C:\Program Files (x86)\Actian\PSQL\bin\;C:\Program
Files\Actian\PSQL\bin\;C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\Windows\System32\WindowsPowerShell\v1.0\;C:\Program
Files\ibm\gsk8\lib64;C:\Program Files (x86)\ibm\gsk8\lib;C:\Program
Files\Java\jre7\bin;C:\PROGRA~1\IBM\SQLLIB\BIN;C:\PROGRA~1\IBM\SQLLIB\FUNCTION;C:\PROGRA~1\IBM\SQLLIB\SAMPLES\REPL;C:\Program
Files\Java\jdk1.7.0_71\bin;C:\jdk1.7.0_71\bin;l:\misys\bin
   48   95858 [main] btrsamp 6704 posify_maybe: env var converted to
PATH=/cygdrive/c/Program Files
(x86)/Actian/PSQL/bin:/cygdrive/c/Program
Files/Actian/PSQL/bin:/cygdrive/c/Windows/system32:/cygdrive/c/Windows:/cygdrive/c/Windows/System32/Wbem:/cygdrive/c/Windows/System32/WindowsPowerShell/v1.0:/cygdrive/c/Program
Files/ibm/gsk8/lib64:/cygdrive/c/Program Files
(x86)/ibm/gsk8/lib:/cygdrive/c/Program
Files/Java/jre7/bin:/cygdrive/c/PROGRA~1/IBM/SQLLIB/BIN:/cygdrive/c/PROGRA~1/IBM/SQLLIB/FUNCTION:/cygdrive/c/PROGRA~1/IBM/SQLLIB/SAMPLES/REPL:/cygdrive/c/Program
Files/Java/jdk1.7.0_71/bin:/cygdrive/c/jdk1.7.0_71/bin:/usr/bin
  216   96074 [main] btrsamp 6704 environ_init: 0x80038E18:
PATH=/cygdrive/c/Program Files
(x86)/Actian/PSQL/bin:/cygdrive/c/Program
Files/Actian/PSQL/bin:/cygdrive/c/Windows/system32:/cygdrive/c/Windows:/cygdrive/c/Windows/System32/Wbem:/cygdrive/c/Windows/System32/WindowsPowerShell/v1.0:/cygdrive/c/Program
Files/ibm/gsk8/lib64:/cygdrive/c/Program Files
(x86)/ibm/gsk8/lib:/cygdrive/c/Program
Files/Java/jre7/bin:/cygdrive/c/PROGRA~1/IBM/SQLLIB/BIN:/cygdrive/c/PROGRA~1/IBM/SQLLIB/FUNCTION:/cygdrive/c/PROGRA~1/IBM/SQLLIB/SAMPLES/REPL:/cygdrive/c/Program
Files/Java/jdk1.7.0_71/bin:/cygdrive/c/jdk1.7.0_71/bin:/usr/bin
   91   96165 [main] btrsamp 6704 environ_init: 0x80028858:
PATHEXT=.COM;.EXE;.BAT;.CMD;.VBS;.VBE;.JS;.JSE;.WSF;.WSH;.MSC
   77   96242 [main] btrsamp 6704 environ_init: 0x800288A0:
PROCESSOR_ARCHITECTURE=x86
   77   96319 [main] btrsamp 6704 environ_init: 0x800288C0:
PROCESSOR_ARCHITEW6432=AMD64
   76   96395 [main] btrsamp 6704 environ_init: 0x800288E8:
PROCESSOR_IDENTIFIER=Intel64 Family 6 Model 26 Stepping 4,
GenuineIntel
   76   96471 [main] btrsamp 6704 environ_init: 0x80028938: PROCESSOR_LEVEL=6
   75   96546 [main] btrsamp 6704 environ_init: 0x80028950:
PROCESSOR_REVISION=1a04
  100   96646 [main] btrsamp 6704 environ_init: 0x80028970:
PROGRAMFILES=C:\Program Files (x86)
   84   96730 [main] btrsamp 6704 environ_init: 0x80028998:
PSModulePath=C:\Windows\system32\WindowsPowerShell\v1.0\Modules\
   76   96806 [main] btrsamp 6704 environ_init: 0x800289E0:
PUBLIC=C:\Users\Public
   76   96882 [main] btrsamp 6704 environ_init: 0x80039050:
PWD=/cygdrive/l/bmpcunix/etc
   76   96958 [main] btrsamp 6704 environ_init: 0x80039078:
ProgramData=C:\ProgramData
   75   97033 [main] btrsamp 6704 environ_init: 0x80039098:
ProgramFiles(x86)=C:\Program Files (x86)
   77   97110 [main] btrsamp 6704 environ_init: 0x800390C8:
ProgramW6432=C:\Program Files
   75   97185 [main] btrsamp 6704 environ_init: 0x800390F0:
SESSIONNAME=RDP-Tcp#0
   76   97261 [main] btrsamp 6704 environ_init: 0x80039110:
SHELLOPTS=braceexpand:emacs:hashall:histexpand:history:igncr:interactive-comments:monitor
   76   97337 [main] btrsamp 6704 environ_init: 0x80028A00: SHLVL=1
   75   97412 [main] btrsamp 6704 environ_init: 0x80039170: SYSTEMDRIVE=C:
   75   97487 [main] btrsamp 6704 environ_init: 0x80039188:
SYSTEMROOT=C:\Windows
   75   97562 [main] btrsamp 6704 getwinenv: can't set native for
TEMP= since no environ yet
  135   97697 [main] btrsamp 6704 mount_info::conv_to_posix_path:
conv_to_posix_path (C:\Users\rashi\AppData\Local\Temp\3, 0x10000000,
no-add-slash)
   75   97772 [main] btrsamp 6704 normalize_win32_path:
C:\Users\rashi\AppData\Local\Temp\3 = normalize_win32_path
(C:\Users\rashi\AppData\Local\Temp\3)
   55   97827 [main] btrsamp 6704 mount_info::conv_to_posix_path:
/cygdrive/c/Users/rashi/AppData/Local/Temp/3 = conv_to_posix_path
(C:\Users\rashi\AppData\Local\Temp\3)
  106   97933 [main] btrsamp 6704 win_env::add_cache: posix
/cygdrive/c/Users/rashi/AppData/Local/Temp/3
   43   97976 [main] btrsamp 6704 win_env::add_cache: native
TEMP=C:\Users\rashi\AppData\Local\Temp\3
   45   98021 [main] btrsamp 6704 posify_maybe: env var converted to
TEMP=/cygdrive/c/Users/rashi/AppData/Local/Temp/3
  104   98125 [main] btrsamp 6704 environ_init: 0x80039240:
TEMP=/cygdrive/c/Users/rashi/AppData/Local/Temp/3
   75   98200 [main] btrsamp 6704 environ_init: 0x800391A8: TERM=cygwin
   76   98276 [main] btrsamp 6704 getwinenv: can't set native for TMP=
since no environ yet
   44   98320 [main] btrsamp 6704 mount_info::conv_to_posix_path:
conv_to_posix_path (C:\Users\rashi\AppData\Local\Temp\3, 0x10000000,
no-add-slash)
   52   98372 [main] btrsamp 6704 normalize_win32_path:
C:\Users\rashi\AppData\Local\Temp\3 = normalize_win32_path
(C:\Users\rashi\AppData\Local\Temp\3)
   50   98422 [main] btrsamp 6704 mount_info::conv_to_posix_path:
/cygdrive/c/Users/rashi/AppData/Local/Temp/3 = conv_to_posix_path
(C:\Users\rashi\AppData\Local\Temp\3)
  106   98528 [main] btrsamp 6704 win_env::add_cache: posix
/cygdrive/c/Users/rashi/AppData/Local/Temp/3
   42   98570 [main] btrsamp 6704 win_env::add_cache: native
TMP=C:\Users\rashi\AppData\Local\Temp\3
   68   98638 [main] btrsamp 6704 posify_maybe: env var converted to
TMP=/cygdrive/c/Users/rashi/AppData/Local/Temp/3
  109   98747 [main] btrsamp 6704 environ_init: 0x80039310:
TMP=/cygdrive/c/Users/rashi/AppData/Local/Temp/3
   75   98822 [main] btrsamp 6704 environ_init: 0x80039278:
USERDNSDOMAIN=MISYS.GLOBAL.AD
   75   98897 [main] btrsamp 6704 environ_init: 0x800391B8: USERDOMAIN=MISYSROOT
   81   98978 [main] btrsamp 6704 environ_init: 0x80039348:
USERDOMAIN_ROAMINGPROFILE=MISYSROOT
   93   99071 [main] btrsamp 6704 environ_init: 0x80039370: USERNAME=rashi
   80   99151 [main] btrsamp 6704 environ_init: 0x80039388:
USERPROFILE=C:\Users\rashi
   76   99227 [main] btrsamp 6704 environ_init: 0x800393A8: WINDIR=C:\Windows
   74   99301 [main] btrsamp 6704 environ_init: 0x800393C0: _=/usr/bin/strace
   56   99357 [main] btrsamp 6704 pinfo_init: Set nice to 0
   47   99404 [main] btrsamp 6704 pinfo_init: pid 6704, pgid 6704,
process_state 0x41
   46   99450 [main] btrsamp 6704 App version:  2006.0, api: 0.304
   45   99495 [main] btrsamp 6704 DLL version:  2006.0, api: 0.304
   45   99540 [main] btrsamp 6704 DLL build:    2016-08-31 14:27
   65   99605 [main] btrsamp 6704 dtable::extend: size 32, fds 0x612EE9B8
30350  129955 [main] btrsamp 6704 transport_layer_pipes::connect: Try
to connect to named pipe: \\.\pipe\cygwin-a10c501e1982f40e-lpc
13435  143390 [main] btrsamp 6704 transport_layer_pipes::connect: Try
to connect to named pipe: \\.\pipe\cygwin-a10c501e1982f40e-lpc
35219  178609 [main] btrsamp 6704 transport_layer_pipes::connect: Try
to connect to named pipe: \\.\pipe\cygwin-a10c501e1982f40e-lpc
 3822  182431 [main] btrsamp 6704 cygheap_user::ontherange: what 2, pw
0x612EEB08
   95  182526 [main] btrsamp 6704 cygheap_user::ontherange: HOME is
already in the environment /home/rashi
  158  182684 [main] btrsamp 6704 build_argv: argv[0] = 'btrsamp.exe'
   61  182745 [main] btrsamp 6704 build_argv: argc 1
  265  183010 [main] btrsamp 6704 open_shared: name
a10c501e1982f40e-cons0x402E4.0, n 0, shared 0x60FC0000 (wanted
0x60FC0000), h 0xE0, *m 6
   99  183109 [main] btrsamp 6704 build_fh_pc: created an archetype
(0x612EF818) for /dev/cons1(3/1)
   66  183175 [main] btrsamp 6704 build_fh_pc: fh 0x612EF5C8, dev 00030001
  179  183354 [main] btrsamp 6704 fhandler_console::open: opened
conin$ 0x160, conout$ 0x164
   77  183431 [main] btrsamp 6704 fhandler_base::open_with_arch: line
473:  /dev/cons1<0x612EF818> usecount + 1 = 1
   78  183509 [main] btrsamp 6704 fhandler_base::set_flags: flags
0x10002, supplied_bin 0x0
   60  183569 [main] btrsamp 6704 fhandler_base::set_flags:
O_TEXT/O_BINARY set in flags 0x10000
   62  183631 [main] btrsamp 6704 fhandler_base::set_flags: filemode
set to binary
   55  183686 [main] btrsamp 6704 _pinfo::set_ctty: old no ctty, ctty
device number 0xFFFFFFFF, tc.ntty device number 0x30001 flags &
O_NOCTTY 0x0
   63  183749 [main] btrsamp 6704 _pinfo::set_ctty: cygheap->ctty 0x0,
archetype 0x612EF818
   45  183794 [main] btrsamp 6704 _pinfo::set_ctty: ctty was NULL
   61  183855 [main] btrsamp 6704 _pinfo::set_ctty: line 479:
/dev/cons1<0x612EF818> usecount + 1 = 2
   47  183902 [main] btrsamp 6704 _pinfo::set_ctty: /dev/cons1 ctty, usecount 2
   72  183974 [main] btrsamp 6704 _pinfo::set_ctty: attaching ctty
/dev/cons1 sid 6704, pid 6704, pgid 6704, tty->pgid 6356, tty->sid
6040
   56  184030 [main] btrsamp 6704 _pinfo::set_ctty: cygheap->ctty now
0x612EF818, archetype 0x612EF818
   93  184123 [main] btrsamp 6704 fhandler_console::output_tcsetattr:
0 = tcsetattr(,0x60FC001C) (ENABLE FLAGS 0x3) (lflag 0x107 oflag 0x9)
   97  184220 [main] btrsamp 6704 fhandler_console::input_tcsetattr:
this 0x612EF5C8, get_ttyp () 0x60FC0000, t 0x60FC001C
   73  184293 [main] btrsamp 6704 fhandler_base::set_flags: flags
0x10002, supplied_bin 0x0
   53  184346 [main] btrsamp 6704 fhandler_base::set_flags:
O_TEXT/O_BINARY set in flags 0x10000
   51  184397 [main] btrsamp 6704 fhandler_base::set_flags: filemode
set to binary
   50  184447 [main] btrsamp 6704 _pinfo::set_ctty: old ctty
/dev/cons1, ctty device number 0x30001, tc.ntty device number 0x30001
flags & O_NOCTTY 0x0
  141  184588 [main] btrsamp 6704 _pinfo::set_ctty: attaching ctty
/dev/cons1 sid 6040, pid 6704, pgid 6356, tty->pgid 6356, tty->sid
6040
   64  184652 [main] btrsamp 6704 _pinfo::set_ctty: cygheap->ctty now
0x612EF818, archetype 0x612EF818
  129  184781 [main] btrsamp 6704 build_fh_pc: found an archetype for
(null)(3/1) io_handle 0x160
   61  184842 [main] btrsamp 6704 build_fh_pc: fh 0x612EFA98, dev 00030001
   55  184897 [main] btrsamp 6704 fhandler_base::open_with_arch: line
493:  /dev/cons1<0x612EF818> usecount + 1 = 3
   60  184957 [main] btrsamp 6704 fhandler_base::set_flags: flags
0x10002, supplied_bin 0x0
   53  185010 [main] btrsamp 6704 fhandler_base::set_flags:
O_TEXT/O_BINARY set in flags 0x10000
   49  185059 [main] btrsamp 6704 fhandler_base::set_flags: filemode
set to binary
   57  185116 [main] btrsamp 6704 _pinfo::set_ctty: old ctty
/dev/cons1, ctty device number 0x30001, tc.ntty device number 0x30001
flags & O_NOCTTY 0x0
   47  185163 [main] btrsamp 6704 _pinfo::set_ctty: attaching ctty
/dev/cons1 sid 6040, pid 6704, pgid 6356, tty->pgid 6356, tty->sid
6040
   62  185225 [main] btrsamp 6704 _pinfo::set_ctty: cygheap->ctty now
0x612EF818, archetype 0x612EF818
   70  185295 [main] btrsamp 6704 fhandler_console::output_tcsetattr:
0 = tcsetattr(,0x60FC001C) (ENABLE FLAGS 0x3) (lflag 0x107 oflag 0x9)
   78  185373 [main] btrsamp 6704 fhandler_console::input_tcsetattr:
this 0x612EFA98, get_ttyp () 0x60FC0000, t 0x60FC001C
   53  185426 [main] btrsamp 6704 fhandler_base::set_flags: flags
0x10002, supplied_bin 0x0
   63  185489 [main] btrsamp 6704 fhandler_base::set_flags:
O_TEXT/O_BINARY set in flags 0x10000
   60  185549 [main] btrsamp 6704 fhandler_base::set_flags: filemode
set to binary
   56  185605 [main] btrsamp 6704 _pinfo::set_ctty: old ctty
/dev/cons1, ctty device number 0x30001, tc.ntty device number 0x30001
flags & O_NOCTTY 0x0
   66  185671 [main] btrsamp 6704 _pinfo::set_ctty: attaching ctty
/dev/cons1 sid 6040, pid 6704, pgid 6356, tty->pgid 6356, tty->sid
6040
   47  185718 [main] btrsamp 6704 _pinfo::set_ctty: cygheap->ctty now
0x612EF818, archetype 0x612EF818
  122  185840 [main] btrsamp 6704 build_fh_pc: found an archetype for
(null)(3/1) io_handle 0x160
   59  185899 [main] btrsamp 6704 build_fh_pc: fh 0x612EFCE8, dev 00030001
   59  185958 [main] btrsamp 6704 fhandler_base::open_with_arch: line
493:  /dev/cons1<0x612EF818> usecount + 1 = 4
   53  186011 [main] btrsamp 6704 fhandler_base::set_flags: flags
0x10002, supplied_bin 0x0
   55  186066 [main] btrsamp 6704 fhandler_base::set_flags:
O_TEXT/O_BINARY set in flags 0x10000
   43  186109 [main] btrsamp 6704 fhandler_base::set_flags: filemode
set to binary
   66  186175 [main] btrsamp 6704 _pinfo::set_ctty: old ctty
/dev/cons1, ctty device number 0x30001, tc.ntty device number 0x30001
flags & O_NOCTTY 0x0
   48  186223 [main] btrsamp 6704 _pinfo::set_ctty: attaching ctty
/dev/cons1 sid 6040, pid 6704, pgid 6356, tty->pgid 6356, tty->sid
6040
   59  186282 [main] btrsamp 6704 _pinfo::set_ctty: cygheap->ctty now
0x612EF818, archetype 0x612EF818
   71  186353 [main] btrsamp 6704 fhandler_console::output_tcsetattr:
0 = tcsetattr(,0x60FC001C) (ENABLE FLAGS 0x3) (lflag 0x107 oflag 0x9)
   81  186434 [main] btrsamp 6704 fhandler_console::input_tcsetattr:
this 0x612EFCE8, get_ttyp () 0x60FC0000, t 0x60FC001C
   50  186484 [main] btrsamp 6704 fhandler_base::set_flags: flags
0x10002, supplied_bin 0x0
   64  186548 [main] btrsamp 6704 fhandler_base::set_flags:
O_TEXT/O_BINARY set in flags 0x10000
   63  186611 [main] btrsamp 6704 fhandler_base::set_flags: filemode
set to binary
   70  186681 [main] btrsamp 6704 _pinfo::set_ctty: old ctty
/dev/cons1, ctty device number 0x30001, tc.ntty device number 0x30001
flags & O_NOCTTY 0x0
   64  186745 [main] btrsamp 6704 _pinfo::set_ctty: attaching ctty
/dev/cons1 sid 6040, pid 6704, pgid 6356, tty->pgid 6356, tty->sid
6040
   59  186804 [main] btrsamp 6704 _pinfo::set_ctty: cygheap->ctty now
0x612EF818, archetype 0x612EF818
  418  187222 [main] btrsamp 6704 __set_errno: void
dll_crt0_1(void*):979 setting errno 0
--- Process 6704 thread 4556 created
 2035  189257 [main] btrsamp 6704 time: 1483077515 = time(0x0)
   75  189332 [main] btrsamp 6704 stat64: entering
   69  189401 [main] btrsamp 6704 normalize_posix_path: src /dev
   69  189470 [main] btrsamp 6704 normalize_posix_path: /dev =
normalize_posix_path (/dev)
   66  189536 [main] btrsamp 6704 mount_info::conv_to_win32_path:
conv_to_win32_path (/dev)
   84  189620 [main] btrsamp 6704 set_flags: flags: binary (0x2)
   69  189689 [main] btrsamp 6704 mount_info::conv_to_win32_path:
src_path /dev, dst L:\misys\dev, flags 0x3000A, rc 0
  511  190200 [main] btrsamp 6704 symlink_info::check: 0x0 =
NtCreateFile (\??\L:\misys\dev)
  376  190576 [main] btrsamp 6704 symlink_info::check: not a symlink
   89  190665 [main] btrsamp 6704 symlink_info::check: 0 =
symlink.check(L:\misys\dev, 0x289418) (0x43000A)
   86  190751 [main] btrsamp 6704 build_fh_pc: fh 0x612EFF50, dev 000000C1
   60  190811 [main] btrsamp 6704 stat_worker: (\??\L:\misys\dev,
0x612B4520, 0x612EFF50), file_attributes 16
  329  191140 [main] btrsamp 6704 transport_layer_pipes::connect: Try
to connect to named pipe: \\.\pipe\cygwin-a10c501e1982f40e-lpc
 4225  195365 [main] btrsamp 6704 transport_layer_pipes::connect: Try
to connect to named pipe: \\.\pipe\cygwin-a10c501e1982f40e-lpc
 3351  198716 [main] btrsamp 6704 fhandler_base::fstat_helper: 0 =
fstat (\??\L:\misys\dev, 0x612B4520) st_size=0, st_mode=040700,
st_ino=1125899907170939st_atim=58256E08.23411BBC
st_ctim=5825746B.253224C0 st_mtim=58256E08.23411BBC
st_birthtim=58256E08.23411BBC
 4860  203576 [main] btrsamp 6704 stat_worker: 0 = (\??\L:\misys\dev,0x612B4520)
  280  203856 [main] btrsamp 6704 fstat64: 0 = fstat(1, 0x28A640)
  130  203986 [main] btrsamp 6704 isatty: 1 = isatty(1)
  168  204154 [main] btrsamp 6704 fhandler_console::write: 0x8003B7B8, 63
  848  205002 [main] btrsamp 6704 fhandler_console::write: 63 =
fhandler_console::write(...)
   68  205070 [main] btrsamp 6704 write: 63 = write(1, 0x8003B7B8, 63)
  233  205303 [main] btrsamp 6704 fhandler_console::write: 0x8003B7B8, 1
  619  205922 [main] btrsamp 6704 fhandler_console::write: 1 =
fhandler_console::write(...)
   73  205995 [main] btrsamp 6704 write: 1 = write(1, 0x8003B7B8, 1)
--- Process 6704 loaded C:\Program Files
(x86)\Actian\PSQL\bin\w3mif190.dll at 67D00000
--- Process 6704 loaded C:\Windows\SysWOW64\clusapi.dll at 6FEC0000
--- Process 6704 loaded C:\Windows\SysWOW64\cryptdll.dll at 70090000
--- Process 6704 loaded C:\Program Files
(x86)\Actian\PSQL\bin\clientrb.dll at 02530000
--- Process 6704, exception 000006d9 at 74C10192
--- Process 6704 loaded C:\Windows\SysWOW64\NapiNSP.dll at 74260000
--- Process 6704 loaded C:\Windows\SysWOW64\nlaapi.dll at 74250000
--- Process 6704 loaded C:\Windows\SysWOW64\mswsock.dll at 74180000
--- Process 6704 thread 5568 created
--- Process 6704 loaded C:\Windows\SysWOW64\dnsapi.dll at 74100000
--- Process 6704 loaded C:\Windows\SysWOW64\winrnr.dll at 740E0000
--- Process 6704, exception e06d7363 at 74C10192
296306  502301 [main] btrsamp 6704 fhandler_console::write: 0x8003B7B8, 32
  944  503245 [main] btrsamp 6704 fhandler_console::write: 32 =
fhandler_console::write(...)
   69  503314 [main] btrsamp 6704 write: 32 = write(1, 0x8003B7B8, 32)
  377  503691 [main] btrsamp 6704 fhandler_console::write: 0x8003B7B8, 10
  734  504425 [main] btrsamp 6704 fhandler_console::write: 10 =
fhandler_console::write(...)
   69  504494 [main] btrsamp 6704 write: 10 = write(1, 0x8003B7B8, 10)
  446  504940 [main] btrsamp 6704 fhandler_console::write: 0x8003B7B8, 1
  590  505530 [main] btrsamp 6704 fhandler_console::write: 1 =
fhandler_console::write(...)
   67  505597 [main] btrsamp 6704 write: 1 = write(1, 0x8003B7B8, 1)
--- Process 6704, exception e06d7363 at 74C10192
--- Process 6704 loaded C:\Windows\SysWOW64\rasadhlp.dll at 73F00000
--- Process 6704 loaded C:\Windows\SysWOW64\FWPUCLNT.DLL at 74040000
122062  627659 [main] btrsamp 6704 fhandler_console::write: 0x8003B7B8, 39
  897  628556 [main] btrsamp 6704 fhandler_console::write: 39 =
fhandler_console::write(...)
   78  628634 [main] btrsamp 6704 write: 39 = write(1, 0x8003B7B8, 39)
  350  628984 [main] btrsamp 6704 fhandler_console::write: 0x8003B7B8, 38
  615  629599 [main] btrsamp 6704 fhandler_console::write: 38 =
fhandler_console::write(...)
   81  629680 [main] btrsamp 6704 write: 38 = write(1, 0x8003B7B8, 38)
  203  629883 [main] btrsamp 6704 child_info::child_info: subproc_ready 0x28C
   58  629941 [main] btrsamp 6704 fork: entering
  499  630440 [main] btrsamp 6704 sig_send: sendsig 0xAC, pid 6704,
signal -40, its_me 1
   52  630492 [main] btrsamp 6704 sig_send: wakeup 0x2A0
   64  630556 [sig] btrsamp 6704 wait_sig: signalling pack.wakeup 0x2A0
   75  630631 [main] btrsamp 6704 sig_send: Waiting for pack.wakeup 0x2A0
   71  630702 [main] btrsamp 6704 sig_send: returning 0x0 from sending
signal -40
   62  630764 [main] btrsamp 6704 frok::parent: priority class 32
  116  630880 [main] btrsamp 6704 frok::parent: stack - bottom
0x290000, top 0x28A610, addr 0x90000, guardsize 0x2000
   57  630937 [main] btrsamp 6704 frok::parent: CreateProcessW
(L:\bmpcunix\etc\btrsamp.exe, L:\bmpcunix\etc\btrsamp.exe, 0, 0, 1,
0x420, 0, 0, 0x28A5AC, 0x28A580)
--- Process 6704 loaded C:\Windows\SysWOW64\apphelp.dll at 700D0000
--- Process 6704 loaded \\blrvswdbm01\bmpc226\bmpcunix\etc\btrsamp.exe
at 02C10000
--- Process 6704 unloaded DLL at 02C10000
69593  700530 [main] btrsamp 6704 frok::parent: forked pid 5876
  127  700657 [main] btrsamp 6704 child_info::sync: n 2, waiting for
subproc_ready(0x28C) and child process(0x2B4)
--- Process 5876 created
--- Process 5876 loaded C:\Windows\SysWOW64\ntdll.dll at 771A0000
--- Process 5876 unloaded DLL at 00420000
--- Process 5876 unloaded DLL at 76A40000
--- Process 5876 unloaded DLL at 00420000
--- Process 5876 unloaded DLL at 00420000
--- Process 5876 loaded C:\Windows\SysWOW64\kernel32.dll at 76A40000
--- Process 5876 loaded C:\Windows\SysWOW64\KernelBase.dll at 74C00000
--- Process 5876 loaded \\blrvswdbm01\bmpc226\misys\bin\cygwin1.dll at 61000000
--- Process 5876 loaded \\blrvswdbm01\bmpc226\misys\bin\cyggcc_s-1.dll
at 6C4E0000
--- Process 5876 loaded C:\Program Files
(x86)\Actian\PSQL\bin\w3btrv7.dll at 10000000
--- Process 5876 loaded C:\Program Files
(x86)\Actian\PSQL\bin\pscore4.dll at 00550000
--- Process 5876 loaded C:\Program Files
(x86)\Actian\PSQL\bin\pscl4.dll at 00670000
--- Process 5876 loaded C:\Windows\SysWOW64\user32.dll at 76E30000
--- Process 5876 loaded
C:\Windows\WinSxS\x86_microsoft.vc80.crt_1fc8b3b9a1e18e3b_8.0.50727.6910_none_d089c358442de345\msvcr80.dll
at 6F2D0000
--- Process 5876 loaded C:\Windows\SysWOW64\rpcrt4.dll at 76870000
--- Process 5876 loaded C:\Windows\SysWOW64\advapi32.dll at 749C0000
--- Process 5876 loaded C:\Windows\SysWOW64\ole32.dll at 76D10000
--- Process 5876 loaded C:\Windows\SysWOW64\ws2_32.dll at 76CC0000
--- Process 5876 loaded C:\Windows\SysWOW64\wtsapi32.dll at 73C90000
--- Process 5876 loaded C:\Windows\SysWOW64\mpr.dll at 703D0000
--- Process 5876 loaded C:\Windows\SysWOW64\gdi32.dll at 766D0000
--- Process 5876 loaded C:\Windows\SysWOW64\msvcrt.dll at 74D40000
--- Process 5876 loaded C:\Windows\SysWOW64\sspicli.dll at 74780000
--- Process 5876 loaded C:\Windows\SysWOW64\sechost.dll at 74950000
--- Process 5876 loaded C:\Windows\SysWOW64\combase.dll at 747C0000
--- Process 5876 loaded C:\Windows\SysWOW64\nsi.dll at 747B0000
--- Process 5876 loaded C:\Windows\SysWOW64\cryptbase.dll at 74770000
--- Process 5876 loaded C:\Windows\SysWOW64\bcryptprimitives.dll at 74710000
    5       5 [main] btrsamp (5876)
**********************************************
  122     127 [main] btrsamp (5876) Program name:
L:\bmpcunix\etc\btrsamp.exe (windows pid 5876)
   58     185 [main] btrsamp (5876) OS version:   Windows NT-6.2
   50     235 [main] btrsamp (5876)
**********************************************
  120     355 [main] btrsamp (5876) sigprocmask: 0 = sigprocmask (0,
0x0, 0x612B462C)
  234     589 [main] btrsamp 5876 child_copy: cygheap - hp 0x290 low
0x612E9408, high 0x612F0250, res 1
   58     647 [main] btrsamp 5876 child_copy: done
  114     761 [main] btrsamp 5876 open_shared: name shared.5, n 5,
shared 0x60FF0000 (wanted 0x60FF0000), h 0x8C, *m 6
   89     850 [main] btrsamp 5876 user_heap_info::init: heap base
0x80000000, heap top 0x80050000, heap size 0x18000000 (402653184)
   60     910 [main] btrsamp 5876 open_shared: name (null), n 1,
shared 0x60FE0000 (wanted 0x60FE0000), h 0x90, *m 6
   48     958 [main] btrsamp 5876 user_info::create: opening user
shared for '' at 0x60FE0000
   51    1009 [main] btrsamp 5876 user_info::create: user shared
version AB1FCCE8
   96    1105 [main] btrsamp (5876) open_shared: name cygpid.5876, n
5876, shared 0x60FD0000 (wanted 0x60FD0000), h 0x98, *m 2
   97    1202 [main] btrsamp (5876) time: 1483077515 = time(0x0)
   60    1262 [main] btrsamp 5876 pinfo::thisproc: myself dwProcessId 5876
  127    1389 [main] btrsamp 5876 child_copy: dll data - hp 0x290 low
0x611B9000, high 0x611C2490, res 1
  350    1739 [main] btrsamp 5876 child_copy: dll bss - hp 0x290 low
0x6126E000, high 0x612B6C78, res 1
  324    2063 [main] btrsamp 5876 child_copy: user heap - hp 0x290 low
0x80000000, high 0x80050000, res 1
   54    2117 [main] btrsamp 5876 child_copy: done
   60    2177 [main] btrsamp 5876 child_copy: data - hp 0x290 low
0x403000, high 0x403084, res 1
   57    2234 [main] btrsamp 5876 child_copy: bss - hp 0x290 low
0x407000, high 0x40757C, res 1
   46    2280 [main] btrsamp 5876 child_copy: done
   56    2336 [main] btrsamp 5876 fixup_mmaps_after_fork: succeeded
   69    2405 [main] btrsamp 5876 fhandler_pipe::create: name
\\.\pipe\cygwin-a10c501e1982f40e-5876-sigwait, size 5412, mode
PIPE_TYPE_MESSAGE
  108    2513 [main] btrsamp 5876 fhandler_pipe::create: pipe read handle 0xA8
   53    2566 [main] btrsamp 5876 fhandler_pipe::create: CreateFile:
name \\.\pipe\cygwin-a10c501e1982f40e-5876-sigwait
   81    2647 [main] btrsamp 5876 fhandler_pipe::create: pipe write handle 0xAC
   61    2708 [main] btrsamp 5876 dll_crt0_0: finished dll_crt0_0 initialization
--- Process 5876 loaded C:\Windows\SysWOW64\imm32.dll at 76850000
--- Process 5876 loaded C:\Windows\SysWOW64\msctf.dll at 76960000
--- Process 5876 thread 1212 created
 6757    9465 [main] btrsamp 5876 sync_with_parent: signalling parent:
after longjmp
79229  779886 [main] btrsamp 6704 child_info::sync: pid 5876, WFMO
returned 0, exit_code 0x103, res 1
  123  780009 [main] btrsamp 6704 open_shared: name cygpid.5876, n
5876, shared 0x2C10000 (wanted 0x0), h 0x2B0, *m 6
   73  780082 [main] btrsamp 6704 time: 1483077515 = time(0x0)
   64  780146 [main] btrsamp 6704 proc_subproc: args: 1, 2663824
  215  780361 [main] btrsamp 6704 pinfo::wait: created tracking thread
for pid 5876, winpid 0x16F4, rd_proc_pipe 0x2A8
   56  780417 [main] btrsamp 6704 proc_subproc: added pid 5876 to proc
table, slot 0
   54  780471 [main] btrsamp 6704 proc_subproc: returning 1
   54  780525 [main] btrsamp 6704 frok::parent: child is alive (but stopped)
   79  780604 [main] btrsamp 6704 child_copy: stack - hp 0x2B4 low
0x28A610, high 0x290000, res 1
   64  780668 [main] btrsamp 6704 child_copy: done
   58  780726 [main] btrsamp 6704 frok::parent: copying data/bss of a linked dll
   65  780791 [main] btrsamp 6704 child_copy: linked dll data - hp
0x2B4 low 0x6C4F6000, high 0x6C4F6044, res 1
   65  780856 [main] btrsamp 6704 child_copy: linked dll bss - hp
0x2B4 low 0x6C4FD000, high 0x6C4FD14C, res 1
   56  780912 [main] btrsamp 6704 child_copy: done
   57  780969 [main] btrsamp 6704 resume_child: signalled child
   54  781023 [main] btrsamp 6704 child_info::sync: n 2, waiting for
subproc_ready(0x28C) and child process(0x2B4)
 1291   10756 [main] btrsamp 5876 child_info::ready: signalled 0x28C
that I was ready
   53   10809 [main] btrsamp 5876 sync_with_parent: awake
   47   10856 [main] btrsamp 5876 sync_with_parent: no problems
   46   10902 [main] btrsamp 5876 frok::child: child is running.  pid
5876, ppid 6704, stack here 0x28A608
   46   10948 [main] btrsamp 5876 frok::child: hParent 0x290, load_dlls 0
   57   11005 [main] btrsamp 5876 dtable::fixup_after_fork: fd 0 (/dev/cons1)
 1173   12178 [sig] btrsamp 5876 wait_sig: entering ReadFile loop,
my_readsig 0xA8, my_sendsig 0xAC
  110   12288 [main] btrsamp 5876 open_shared: name (null), n 0,
shared 0x60FC0000 (wanted 0x60FC0000), h 0xE0, *m 6
   73   12361 [main] btrsamp 5876 dtable::fixup_after_fork: fd 1 (/dev/cons1)
   57   12418 [main] btrsamp 5876 dtable::fixup_after_fork: fd 2 (/dev/cons1)
   51   12469 [main] btrsamp 5876 sync_with_parent: signalling parent:
performed fork fixup
 1829  782852 [main] btrsamp 6704 child_info::sync: pid 5876, WFMO
returned 0, exit_code 0x103, res 1
   60  782912 [main] btrsamp 6704 sig_send: sendsig 0xAC, pid 6704,
signal -41, its_me 1
   58  782970 [main] btrsamp 6704 sig_send: wakeup 0x2A0
   66  783036 [sig] btrsamp 6704 wait_sig: signalling pack.wakeup 0x2A0
   63  783099 [main] btrsamp 6704 sig_send: Waiting for pack.wakeup 0x2A0
   57  783156 [main] btrsamp 6704 sig_send: returning 0x0 from sending
signal -41
  327  783483 [main] btrsamp 6704 fork: 5876 = fork()
  242  783725 [main] btrsamp 6704 fhandler_console::write: 0x8003B7B8, 1
 1030   13499 [main] btrsamp 5876 child_info::ready: signalled 0x28C
that I was ready
--- Process 5876 thread 3544 created
  708   14207 [main] btrsamp 5876 fork: 0 = fork()
  274   14481 [main] btrsamp 5876 fhandler_console::write: 0x8003B7B8, 1
--- Process 6704 thread 7004 created
 3349  787074 [waitproc] btrsamp 6704 cygthread::stub: thread
'waitproc', id 0x1B5C, stack_ptr 0x2E5CD60
 2092  789166 [main] btrsamp 6704 fhandler_console::write: 1 =
fhandler_console::write(...)
   80  789246 [main] btrsamp 6704 write: 1 = write(1, 0x8003B7B8, 1)
  243  789489 [main] btrsamp 6704 fhandler_console::write: 0x8003B7B8, 52
 5347   19828 [main] btrsamp 5876 fhandler_console::write: 1 =
fhandler_console::write(...)
   77   19905 [main] btrsamp 5876 write: 1 = write(1, 0x8003B7B8, 1)
  235   20140 [main] btrsamp 5876 fhandler_console::write: 0x8003B7B8, 49
 3547  793036 [main] btrsamp 6704 fhandler_console::write: 52 =
fhandler_console::write(...)
   82  793118 [main] btrsamp 6704 write: 52 = write(1, 0x8003B7B8, 52)
  205  793323 [main] btrsamp 6704 clock_nanosleep: clock_nanosleep
(15.000000000)
 3247   23387 [main] btrsamp 5876 fhandler_console::write: 49 =
fhandler_console::write(...)
   69   23456 [main] btrsamp 5876 write: 49 = write(1, 0x8003B7B8, 49)
  373   23829 [main] btrsamp 5876 fhandler_console::write: 0x8003B7B8, 1
  918   24747 [main] btrsamp 5876 fhandler_console::write: 1 =
fhandler_console::write(...)
   73   24820 [main] btrsamp 5876 write: 1 = write(1, 0x8003B7B8, 1)
  278   25098 [main] btrsamp 5876 fhandler_console::write: 0x8003B7B8, 16
 2607   27705 [main] btrsamp 5876 fhandler_console::write: 16 =
fhandler_console::write(...)
   81   27786 [main] btrsamp 5876 write: 16 = write(1, 0x8003B7B8, 16)
  376   28162 [main] btrsamp 5876 fhandler_console::write: 0x8003B7B8, 25
  918   29080 [main] btrsamp 5876 fhandler_console::write: 25 =
fhandler_console::write(...)
   70   29150 [main] btrsamp 5876 write: 25 = write(1, 0x8003B7B8, 25)
  373   29523 [main] btrsamp 5876 fhandler_console::write: 0x8003B7B8, 57
  895   30418 [main] btrsamp 5876 fhandler_console::write: 57 =
fhandler_console::write(...)
   71   30489 [main] btrsamp 5876 write: 57 = write(1, 0x8003B7B8, 57)
--- Process 5876 loaded C:\Program Files
(x86)\Actian\PSQL\bin\w3mif190.dll at 67D00000
--- Process 5876 loaded C:\Windows\SysWOW64\clusapi.dll at 6FEC0000
--- Process 5876 loaded C:\Windows\SysWOW64\cryptdll.dll at 70090000
--- Process 5876 loaded C:\Program Files
(x86)\Actian\PSQL\bin\clientrb.dll at 02530000
--- Process 5876, exception 000006d9 at 74C10192
--- Process 5876 thread 4956 exited with status 0x6d9
--- Process 5876 thread 1212 exited with status 0x6d9
--- Process 5876 thread 3544 exited with status 0x6d9
--- Process 5876 thread 5868 created
--- Process 5876 exited with status 0x6d9
487729 1281052 [waitproc] btrsamp 6704
pinfo::maybe_set_exit_code_from_windows: pid 5876, exit value - old
0x0, windows 0x6D9, cygwin 0x800D900
  131 1281183 [waitproc] btrsamp 6704 sig_send: sendsig 0xAC, pid
6704, signal 20, its_me 1
  100 1281283 [sig] btrsamp 6704 sigpacket::process: signal 20 processing
   60 1281343 [sig] btrsamp 6704 init_cygheap::find_tls: sig 20
   57 1281400 [sig] btrsamp 6704 sigpacket::process: using tls 0x28CE64
   66 1281466 [waitproc] btrsamp 6704 sig_send: Not waiting for
sigcomplete.  its_me 1 signal 20
   58 1281524 [waitproc] btrsamp 6704 sig_send: returning 0x0 from
sending signal 20
   57 1281581 [waitproc] btrsamp 6704 proc_waiter: exiting wait thread
for pid 5876
  153 1281734 [sig] btrsamp 6704 sigpacket::process: signal 20 default
is currently ignore
   58 1281792 [sig] btrsamp 6704 sigpacket::process: returning 1
   50 1281842 [sig] btrsamp 6704 proc_subproc: args: 5, 0
   50 1281892 [sig] btrsamp 6704 proc_subproc: looking for processes
to reap, nprocs 1
   50 1281942 [sig] btrsamp 6704 proc_subproc: finished processing
terminated/stopped child
   49 1281991 [sig] btrsamp 6704 proc_subproc: returning 1
14518456 15800447 [main] btrsamp 6704 clock_nanosleep: 0 =
clock_nanosleep(1, 0, 15.000000000, 0.d)
  346 15800793 [main] btrsamp 6704 fhandler_console::write: 0x8003B7B8, 24
  998 15801791 [main] btrsamp 6704 fhandler_console::write: 24 =
fhandler_console::write(...)
   69 15801860 [main] btrsamp 6704 write: 24 = write(1, 0x8003B7B8, 24)
  184 15802044 [main] btrsamp 6704 wait4: calling proc_subproc, pid
5876, options 11
   48 15802092 [main] btrsamp 6704 proc_subproc: args: 6, 2678056
   51 15802143 [main] btrsamp 6704 proc_subproc: wval->pid 5876,
wval->options 11
   56 15802199 [main] btrsamp 6704 checkstate: nprocs 1
   50 15802249 [main] btrsamp 6704 stopped_or_terminated: considering
pid 5876, pgid 6356, w->pid 5876
   52 15802301 [main] btrsamp 6704 remove_proc: removing procs[0], pid
5876, nprocs 1
  123 15802424 [main] btrsamp 6704 checkstate: returning 1
   56 15802480 [main] btrsamp 6704 proc_subproc: released waiting thread
   51 15802531 [main] btrsamp 6704 proc_subproc: finished processing
terminated/stopped child
   49 15802580 [main] btrsamp 6704 proc_subproc: returning 1
   52 15802632 [main] btrsamp 6704 wait4: 0 = cygwait (...)
   66 15802698 [main] btrsamp 6704 wait4: 5876 = wait4(5876, 0xD900, 11, 0x0)
  273 15802971 [main] btrsamp 6704 fhandler_console::write: 0x8003B7B8, 49
  619 15803590 [main] btrsamp 6704 fhandler_console::write: 49 =
fhandler_console::write(...)
   66 15803656 [main] btrsamp 6704 write: 49 = write(1, 0x8003B7B8, 49)
  334 15803990 [main] btrsamp 6704 fhandler_console::write: 0x8003B7B8, 22
  597 15804587 [main] btrsamp 6704 fhandler_console::write: 22 =
fhandler_console::write(...)
   65 15804652 [main] btrsamp 6704 write: 22 = write(1, 0x8003B7B8, 22)
  332 15804984 [main] btrsamp 6704 fhandler_console::write: 0x8003B7B8, 21
  595 15805579 [main] btrsamp 6704 fhandler_console::write: 21 =
fhandler_console::write(...)
   64 15805643 [main] btrsamp 6704 write: 21 = write(1, 0x8003B7B8, 21)
  319 15805962 [unknown (0x11CC)] btrsamp 6704 _cygtls::remove: wait 4294967295
--- Process 6704 thread 4556 exited with status 0x0
  231 15806193 [main] btrsamp 6704 open: open(gmon.out, 0x10601)
   54 15806247 [main] btrsamp 6704 normalize_posix_path: src gmon.out
   46 15806293 [main] btrsamp 6704 cwdstuff::get: posix /cygdrive/l/bmpcunix/etc
   43 15806336 [main] btrsamp 6704 cwdstuff::get:
(/cygdrive/l/bmpcunix/etc) = cwdstuff::get (0x80000008, 32768, 1, 0),
errno 0
   44 15806380 [main] btrsamp 6704 normalize_posix_path:
/cygdrive/l/bmpcunix/etc/gmon.out = normalize_posix_path (gmon.out)
   51 15806431 [main] btrsamp 6704 mount_info::conv_to_win32_path:
conv_to_win32_path (/cygdrive/l/bmpcunix/etc/gmon.out)
   52 15806483 [main] btrsamp 6704 mount_info::cygdrive_win32_path:
src '/cygdrive/l/bmpcunix/etc/gmon.out', dst
'L:\bmpcunix\etc\gmon.out'
   44 15806527 [main] btrsamp 6704 set_flags: flags: binary (0x2)
   42 15806569 [main] btrsamp 6704 mount_info::conv_to_win32_path:
src_path /cygdrive/l/bmpcunix/etc/gmon.out, dst
L:\bmpcunix\etc\gmon.out, flags 0x4022, rc 0
  433 15807002 [main] btrsamp 6704 symlink_info::check: 0x0 =
NtCreateFile (\??\L:\bmpcunix\etc\gmon.out)
  347 15807349 [main] btrsamp 6704 symlink_info::check: not a symlink
  180 15807529 [main] btrsamp 6704 symlink_info::check: 0 =
symlink.check(L:\bmpcunix\etc\gmon.out, 0x2893F8) (0x4022)
   58 15807587 [main] btrsamp 6704 path_conv::check:
this->path(L:\bmpcunix\etc\gmon.out), has_acls(1)
   58 15807645 [main] btrsamp 6704 build_fh_pc: fh 0x612EFF50, dev 000000C3
   49 15807694 [main] btrsamp 6704 fhandler_base::open:
(\??\L:\bmpcunix\etc\gmon.out, 0x118601)
16880 15824574 [main] btrsamp 6704 fhandler_base::set_flags: flags
0x118601, supplied_bin 0x10000
  114 15824688 [main] btrsamp 6704 fhandler_base::set_flags:
O_TEXT/O_BINARY set in flags 0x10000
   52 15824740 [main] btrsamp 6704 fhandler_base::set_flags: filemode
set to binary
   46 15824786 [main] btrsamp 6704 fhandler_base::open: 0x0 =
NtCreateFile (0x174, 0x40120080, \??\L:\bmpcunix\etc\gmon.out, io,
NULL, 0x80, 0x7, 0x3, 0x4020, NULL, 0)
   47 15824833 [main] btrsamp 6704 fhandler_base::open: 1 =
fhandler_base::open(\??\L:\bmpcunix\etc\gmon.out, 0x118601)
   44 15824877 [main] btrsamp 6704 fhandler_base::open_fs: 1 =
fhandler_disk_file::open(\??\L:\bmpcunix\etc\gmon.out, 0x18601)
   46 15824923 [main] btrsamp 6704 open: 3 = open(gmon.out, 0x18601)
   47 15824970 [main] btrsamp 6704 write: write(3, 0x28A6F0, 32)
  104 15825074 [main] btrsamp 6704 write: 32 = write(3, 0x28A6F0, 32)
   54 15825128 [main] btrsamp 6704 write: write(3, 0x80039B28, 3620)
   58 15825186 [main] btrsamp 6704 write: 3620 = write(3, 0x80039B28, 3620)
   47 15825233 [main] btrsamp 6704 write: write(3, 0x28A6E4, 12)
   52 15825285 [main] btrsamp 6704 write: 12 = write(3, 0x28A6E4, 12)
   45 15825330 [main] btrsamp 6704 write: write(3, 0x28A6E4, 12)
   53 15825383 [main] btrsamp 6704 write: 12 = write(3, 0x28A6E4, 12)
   48 15825431 [main] btrsamp 6704 close: close(3)
   70 15825501 [main] btrsamp 6704 fhandler_base::close: closing
'/cygdrive/l/bmpcunix/etc/gmon.out' handle 0x174
  470 15825971 [main] btrsamp 6704 close: 0 = close(3)
  173 15826144 [main] btrsamp 6704 do_exit: do_exit (0), exit_state 1
   41 15826185 [main] btrsamp 6704 void: 0x0 = signal (20, 0x1)
   44 15826229 [main] btrsamp 6704 void: 0x0 = signal (1, 0x1)
   42 15826271 [main] btrsamp 6704 void: 0x0 = signal (2, 0x1)
   43 15826314 [main] btrsamp 6704 void: 0x0 = signal (3, 0x1)
   45 15826359 [main] btrsamp 6704 fhandler_base::close_with_arch:
line 1140:  /dev/cons1<0x612EF818> usecount + -1 = 3
   44 15826403 [main] btrsamp 6704 fhandler_base::close_with_arch: not
closing archetype
   45 15826448 [main] btrsamp 6704 fhandler_base::close_with_arch:
line 1140:  /dev/cons1<0x612EF818> usecount + -1 = 2
   42 15826490 [main] btrsamp 6704 fhandler_base::close_with_arch: not
closing archetype
   48 15826538 [main] btrsamp 6704 fhandler_base::close_with_arch:
line 1140:  /dev/cons1<0x612EF818> usecount + -1 = 1
   44 15826582 [main] btrsamp 6704 fhandler_base::close_with_arch: not
closing archetype
   43 15826625 [main] btrsamp 6704 init_cygheap::close_ctty: closing
cygheap->ctty 0x612EF818
   43 15826668 [main] btrsamp 6704 fhandler_base::close_with_arch:
closing passed in archetype 0x0, usecount 0
   94 15826762 [main] btrsamp 6704 fhandler_console::free_console:
freed console, res 1
   97 15826859 [main] btrsamp 6704 dtable::delete_archetype: deleting
element 0 for /dev/cons1(3/1)
   49 15826908 [main] btrsamp 6704 getpid: 6704 = getpid()
   45 15826953 [main] btrsamp 6704 proc_terminate: nprocs 0
   43 15826996 [main] btrsamp 6704 proc_terminate: leaving
   53 15827049 [main] btrsamp 6704 pinfo::exit: Calling ExitProcess n
0x0, exitcode 0x0
--- Process 6704 thread 2568 exited with status 0x0
--- Process 6704 thread 7000 exited with status 0x0
--- Process 6704 thread 7004 exited with status 0x0
--- Process 6704 exited with status 0x0

On Fri, Dec 16, 2016 at 2:57 PM, Rashi Singhal <singhal.rashi@gmail.com> wrote:
> Hello,
>
> I have a sample program for the same , But I am not sure how I can
> upload it , as to compile that program btrieve(pervasive) library and
> header files are also required.
>
> Can I attach source code here ?
> Problem is always getting recreated if I open Btrieve file in child
> process after fork()
>
> ---in main process fork is called-----
>
> iStat = fork();
> printf("\nCreating Clients using fork method iStat is %d...\n",iStat);
> if ((iStat) == 0 )
>         {
> printf("\n I am in child \n");
>             rd_proc_wr_request();
> printf("\n I am in child exit \n");
>             exit(0);
> }
>     /*when the process client finishes Kill the child */
>
>         else
>         {
> /*We are the parent so free the memory*/
> sleep(15);
> printf("start of  Main Process \n");
> //wait(NULL);
> errWaitPid = waitpid( iStat, &wstatus, WNOHANG | WUNTRACED | WCONTINUED );
> printf( "errWaitPid = %d, errno = %d, comment = %s\n", errWaitPid,
> errno, strerror( errno ) );
> printf ("Parent reads <%s>\n",shm) ;
> printf("Exiting Main Process\n");
>             exit(0);
>         }
> ----this is child process code---
>
> static void* rd_proc_wr_request()
> {
>
>   /* Btrieve function parameters */
>   BTI_BYTE posBlock1[128];
>   BTI_BYTE posBlock2[128];
>   BTI_BYTE dataBuf[255];
>   BTI_WORD dataLen;
>   BTI_BYTE keyBuf1[255];
>   BTI_BYTE keyBuf2[255];
>   BTI_WORD keyNum = 0;
>
>   BTI_BYTE btrieveLoaded = FALSE;
>   BTI_LONG personID;
>   BTI_BYTE file1Open = FALSE;
>   BTI_BYTE file2Open = FALSE;
>   BTI_SINT status;
>   BTI_SINT getStatus = -1;
>   BTI_SINT i;
>   BTI_SINT posCtr;
>
>   CLIENT_ID       clientID;
>   VERSION_STRUCT  versionBuffer[3];
>   FILE_CREATE_BUF fileCreateBuf;
>   GNE_BUFFER_PTR  gneBuffer;
>   PERSON_STRUCT   personRecord;
>
>     printf("This is child process...\n");
> printf("Btrieve before B_OPEN status with BTRV (sample.btr) = %d\n", status);
>     memset(dataBuf, 0, sizeof(dataBuf));
>     memset(keyBuf1, 0, sizeof(keyBuf1));
>     memset(keyBuf2, 0, sizeof(keyBuf2));
>     strcpy((BTI_CHAR *)keyBuf1, FILE1_NAME);
>     strcpy((BTI_CHAR *)keyBuf2, FILE2_NAME);
>
>
> status = BTRV(
>                 B_OPEN,
>                 posBlock1,
>                 dataBuf,
>                 &dataLen,
>                 keyBuf1,
>                 keyNum);
>
>     printf("Btrieve B_OPEN status (sample.btr) = %d\n", status);
>
> ---end-------------
>
> Please find cygcheck.out
>
> Cygwin Configuration Diagnostics
> Current System Time: Thu Dec 08 14:20:46 2016
>
> Windows 2012 Server Standard Ver 6.2 Build 9200
>
> Running under WOW64 on AMD64
>
> Running in Terminal Service session
>
> Path: C:\Program Files (x86)\Actian\PSQL\bin\
> C:\Program Files\Actian\PSQL\bin\
> C:\Windows\system32
> C:\Windows
> C:\Windows\System32\Wbem
> C:\Windows\System32\WindowsPowerShell\v1.0\
> C:\Program Files\ibm\gsk8\lib64
> C:\Program Files (x86)\ibm\gsk8\lib
> C:\Program Files\Java\jre7\bin
> C:\PROGRA~1\IBM\SQLLIB\BIN
> C:\PROGRA~1\IBM\SQLLIB\FUNCTION
> C:\PROGRA~1\IBM\SQLLIB\SAMPLES\REPL
> C:\Program Files\Java\jdk1.7.0_71\bin
> C:\jdk1.7.0_71\bin
> l:\misys\bin
>
> Output from L:\misys\bin\id.exe
> UID: 1074127(rashi)
> GID: 1049089(Domain Users)
> 1049089(Domain Users)
> 545(Users)
> 14(REMOTE INTERACTIVE LOGON)
> 4(INTERACTIVE)
> 11(Authenticated Users)
> 15(This Organization)
> 4095(CurrentSession)
> 66048(LOCAL)
> 1073640(clearuser)
> 1172632(BLRCUSIFM Distribution Group)
> 1075982(scmbmdev)
> 1188451(RFS-DAT-RO-DocShare)
> 1212325(Token Authentication)
> 1188519(RFS-DAT-RO-SophisBuildDevArchive)
> 1076018(scmbmrlse)
> 1180352(BLR- DFS BMPLUS Transition Modify Access)
> 1172617(LANTSTNT-READ-WRITE-ACCESS)
> 1174051(LANTSTNT-READ-ACCESS)
> 1131517(Global Remote Access)
> 1075146(BLR - All Emp Reject)
> 1150696(BLR-DFS BMPlusDev RW)
> 1142083(All Emp - Bangalore)
> 1151970(SMB-Summit-Enhancements-ACL-RO)
> 1152002(PFM-TI-Resource-Calendar-ACL-RO)
> 1195039(HU1VSWFS01 Labs Read Only Access)
> 1151982(PFM-Opics-Enhancements-ACL-RO)
> 1136031(BLR-BMLAN L3 DEVELOPMENT QUEUE)
> 1165883(BLR-Bankmaster&BMPlus)
> 1160576(SMB-Opics-Enhancements-WHP-ACL-RO)
> 1151956(PFM-PC-Requests-ACL-RO)
> 1187844(TrustedSendersAndDomains)
> 1151972(PFM-Summit-Project-Folders-ACL-RO)
> 1084824(NYCOR-WWSTAFF)
> 1151980(PFM-SMB-Everyone)
> 1195050(HU1VSWFS01 Install Read Only Access)
> 1180378(PFM-Customer-Support-ACL-RO)
> 1177268(PFM-Business-Center-Support-ACL-RW)
> 1190917(Kulu-AllMisys-ViewerOnly)
> 1180374(PFM-Summit-Clients-BDB-ACL-RO)
> 1160651(PFM-GCC-Sydney-ACL-RO)
> 1122116(NY1180-Shared Modify Access)
> 1191425(websense-Bangalore)
> 1149450(BLR-DFS BMLAN RW)
> 1118763(AllCorestaff)
> 1182716(BLR-PRINTUSERS)
> 1118741(AllStaff)
> 1090058(BLR-BM LAN)
> 1180372(PFM-Training-Summit-Clients-ACL-RO)
> 1089790(Core Bangalore)
> 1122267(Misys Queens - Blr)
> 1195102(HU1VSWFS01 PD-PREF Integration Read Only Access)
> 1143055(ALM Tools User-All)
> 1180380(PFM-AP-Summit-CS-ACL-RO)
> 1063073(NYCOR-WWSTAFF)
> 70145(Authentication authority asserted identity)
> 401408(Medium Mandatory Level)
>
> SysDir: C:\Windows\system32
> WinDir: C:\Windows
>
> PWD = '/cygdrive/l/bmpcunix/etc'
> CYGWIN = 'server'
> HOME = '/home/rashi'
>
> USERDOMAIN_ROAMINGPROFILE = 'MISYSROOT'
> HOMEPATH = '\'
> DB2INSTANCE = 'DB2'
> APPDATA = 'C:\Users\rashi\AppData\Roaming'
> ProgramW6432 = 'C:\Program Files'
> TERM = 'cygwin'
> PROCESSOR_IDENTIFIER = 'Intel64 Family 6 Model 26 Stepping 4, GenuineIntel'
> WINDIR = 'C:\Windows'
> PUBLIC = 'C:\Users\Public'
> USERDOMAIN = 'MISYSROOT'
> CommonProgramFiles(x86) = 'C:\Program Files (x86)\Common Files'
> OS = 'Windows_NT'
> ALLUSERSPROFILE = 'C:\ProgramData'
> TEMP = '/cygdrive/c/Users/rashi/AppData/Local/Temp/7'
> COMMONPROGRAMFILES = 'C:\Program Files (x86)\Common Files'
> LIB = ';C:\PROGRA~1\IBM\SQLLIB\LIB;C:\Program
> Files\Java\jdk1.7.0_71\jre\lib;C:\jdk1.7.0_71\jre\lib'
> USERNAME = 'rashi'
> PROCESSOR_LEVEL = '6'
> ProgramFiles(x86) = 'C:\Program Files (x86)'
> PSModulePath = 'C:\Windows\system32\WindowsPowerShell\v1.0\Modules\'
> SHELLOPTS = 'braceexpand:emacs:hashall:histexpand:history:igncr:interactive-comments:monitor'
> FP_NO_HOST_CHECK = 'NO'
> SYSTEMDRIVE = 'C:'
> PROCESSOR_ARCHITEW6432 = 'AMD64'
> JAVA_HOME = 'C:\Program Files\Java\jdk1.7.0_71;C:\jdk1.7.0_71'
> USERPROFILE = 'C:\Users\rashi'
> CLIENTNAME = 'BLRBMLAN027'
> LOGONSERVER = '\\BLR2VSWMISYSDC2'
> CommonProgramW6432 = 'C:\Program Files\Common Files'
> PROCESSOR_ARCHITECTURE = 'x86'
> LOCALAPPDATA = 'C:\Users\rashi\AppData\Local'
> ProgramData = 'C:\ProgramData'
> EXECIGNORE = '*.dll'
> SHLVL = '1'
> USERDNSDOMAIN = 'MISYS.GLOBAL.AD'
> PATHEXT = '.COM;.EXE;.BAT;.CMD;.VBS;.VBE;.JS;.JSE;.WSF;.WSH;.MSC'
> HOMEDRIVE = 'G:'
> COMSPEC = 'C:\Windows\system32\cmd.exe'
> TMP = '/cygdrive/c/Users/rashi/AppData/Local/Temp/7'
> SYSTEMROOT = 'C:\Windows'
> PROCESSOR_REVISION = '1a04'
> CLASSPATH = '.;C:\jdk1.7.0_71\jre\lib;C:\jdk1.7.0_71;C:\EssenceData\tobedelivered\SQLWorkbench\Driver_jars\;C:\PROGRA~1\IBM\SQLLIB\java\db2java.zip;C:\PROGRA~1\IBM\SQLLIB\java\db2jcc.jar;C:\PROGRA~1\IBM\SQLLIB\java\sqlj.zip;C:\PROGRA~1\IBM\SQLLIB\java\db2jcc_license_cu.jar;C:\PROGRA~1\IBM\SQLLIB\bin;C:\PROGRA~1\IBM\SQLLIB\java\common.jar;C:\Program
> Files\Java\jdk1.7.0_71\jre\lib'
> PROGRAMFILES = 'C:\Program Files (x86)'
> HOMESHARE = '\\misys.global.ad\bangalore\HomeDirs\Rashi'
> NUMBER_OF_PROCESSORS = '1'
> INCLUDE = 'C:\PROGRA~1\IBM\SQLLIB\INCLUDE;C:\PROGRA~1\IBM\SQLLIB\LIB'
> SESSIONNAME = 'RDP-Tcp#0'
> COMPUTERNAME = 'BLRVSWDBM01'
> _ = '/usr/bin/cygcheck'
>
> HKEY_CURRENT_USER\Software\Cygwin
> HKEY_CURRENT_USER\Software\Cygwin\Installations
>   (default) = '\??\M:\misys'
>   c5e39b7a9d22bafb = '\??\C:\cygwin'
>   c07f6044b9539815 = '\??\C:\Winbmpc\misys'
>   bb93c89809c4e0a0 = '\??\M:\bmpcunix'
>   a10c501e1982f40e = '\??\L:\misys'
> HKEY_CURRENT_USER\Software\Cygwin\Program Options
> HKEY_LOCAL_MACHINE\SOFTWARE\Cygwin
> HKEY_LOCAL_MACHINE\SOFTWARE\Cygwin\Installations
>   (default) = '\??\C:\cygwin'
> HKEY_LOCAL_MACHINE\SOFTWARE\Cygwin\Program Options
> HKEY_LOCAL_MACHINE\SOFTWARE\Cygwin\setup
>   (default) = 'C:\cygwin'
>
> obcaseinsensitive set to 1
>
> Cygwin installations found in the registry:
>   System: Key: c5e39b7a9d22bafb Path: C:\cygwin (ORPHANED)
>   User:   Key: 79027bc66fb629cd Path: M:\misys (ORPHANED)
>   User:   Key: c5e39b7a9d22bafb Path: C:\cygwin (ORPHANED)
>   User:   Key: c07f6044b9539815 Path: C:\Winbmpc\misys
>   User:   Key: bb93c89809c4e0a0 Path: M:\bmpcunix (ORPHANED)
>   User:   Key: a10c501e1982f40e Path: L:\misys
>
> a:  fd             N/A    N/A
> c:  hd  NTFS    409246Mb  78% CP CS UN PA FC
> g:  net NTFS       500Mb  66% CP CS UN PA FC     Data
> i:  net NTFS     51096Mb  65% CP CS UN PA FC     OS
> l:  net NTFS    409246Mb  78% CP CS UN PA FC
>
> L:\misys         /          system  binary,auto
> L:\misys\bin     /usr/bin   system  binary,auto
> L:\misys\lib     /usr/lib   system  binary,auto
> cygdrive prefix  /cygdrive  user    binary,posix=0,auto
>
> Found: l:\misys\bin\awk
>  -> L:\misys\bin\gawk.exe
> Found: l:\misys\bin\bash.exe
> Found: l:\misys\bin\cat.exe
> Found: l:\misys\bin\cp.exe
> Found: l:\misys\bin\cpp.exe
> Not Found: crontab
> Found: C:\Windows\system32\find.exe
> Found: l:\misys\bin\find.exe
> Warning: C:\Windows\system32\find.exe hides l:\misys\bin\find.exe
> Found: l:\misys\bin\gcc.exe
> Not Found: gdb
> Found: l:\misys\bin\grep.exe
> Found: l:\misys\bin\kill.exe
> Found: l:\misys\bin\ld.exe
> Found: l:\misys\bin\ls.exe
> Found: l:\misys\bin\make.exe
> Found: l:\misys\bin\mv.exe
> Not Found: patch
> Found: l:\misys\bin\perl.exe
> Found: l:\misys\bin\rm.exe
> Found: l:\misys\bin\sed.exe
> Not Found: ssh
> Found: l:\misys\bin\sh.exe
> Found: l:\misys\bin\tar.exe
> Found: l:\misys\bin\test.exe
> Found: l:\misys\bin\vi.exe
> Not Found: vim
>
>   640k 2016/07/05 l:\misys\bin\cygarchive-13.dll - os=4.0 img=1.0 sys=4.0
>                   "cygarchive-13.dll" v0.0 ts=2016-07-05 11:47
>    39k 2016/09/19 l:\misys\bin\cygargp-0.dll - os=4.0 img=1.0 sys=4.0
>                   "cygargp-0.dll" v0.0 ts=2016-09-19 06:55
>   125k 2015/11/06 l:\misys\bin\cygatk-1.0-0.dll - os=4.0 img=1.0 sys=4.0
>                   "cygatk-1.0-0.dll" v0.0 ts=2015-11-06 07:48
>    87k 2016/06/14 l:\misys\bin\cygatomic-1.dll - os=4.0 img=1.0 sys=4.0
>                   "cygatomic-1.dll" v0.0 ts=2016-06-14 11:14
>    14k 2012/05/04 l:\misys\bin\cygattr-1.dll - os=4.0 img=1.0 sys=4.0
>                   "cygattr-1.dll" v0.0 ts=2012-05-04 17:05
>   203k 2015/03/23 l:\misys\bin\cygblkid-1.dll - os=4.0 img=1.0 sys=4.0
>                   "cygblkid-1.dll" v0.0 ts=2015-03-23 14:25
>    62k 2011/05/21 l:\misys\bin\cygbz2-1.dll - os=4.0 img=1.0 sys=4.0
>                   "cygbz2-1.dll" v0.0 ts=2011-05-22 00:46
>  1219k 2015/11/23 l:\misys\bin\cygcairo-2.dll - os=4.0 img=1.0 sys=4.0
>                   "cygcairo-2.dll" v0.0 ts=2015-11-24 02:14
>    25k 2015/11/23 l:\misys\bin\cygcairo-gobject-2.dll - os=4.0 img=1.0 sys=4.0
>                   "cygcairo-gobject-2.dll" v0.0 ts=2015-11-24 02:15
>   121k 2015/11/23 l:\misys\bin\cygcairo-script-interpreter-2.dll -
> os=4.0 img=1.0 sys=4.0
>                   "cygcairo-script-interpreter-2.dll" v0.0 ts=2015-11-24 02:16
>   115k 2016/06/14 l:\misys\bin\cygcilkrts-5.dll - os=4.0 img=1.0 sys=4.0
>                   "cygcilkrts-5.dll" v0.0 ts=2016-06-14 11:17
>    13k 2015/03/19 l:\misys\bin\cygcom_err-2.dll - os=4.0 img=1.0 sys=4.0
>                   "cygcom_err-2.dll" v0.0 ts=2015-03-19 07:15
>    10k 2016/06/09 l:\misys\bin\cygcrypt-0.dll - os=4.0 img=1.0 sys=4.0
>                   "cygcrypt-0.dll" v0.0 ts=2016-06-09 20:32
>  2010k 2016/09/26 l:\misys\bin\cygcrypto-1.0.0.dll - os=4.0 img=1.0 sys=4.0
>                   "cygcrypto-1.0.0.dll" v0.0 ts=2016-09-26 19:34
>   503k 2016/09/15 l:\misys\bin\cygcurl-4.dll - os=4.0 img=1.0 sys=4.0
>                   "cygcurl-4.dll" v0.0 ts=2016-09-15 11:51
>    27k 2014/11/12 l:\misys\bin\cygdatrie-1.dll - os=4.0 img=1.0 sys=4.0
>                   "cygdatrie-1.dll" v0.0 ts=2014-11-12 10:44
>  1284k 2011/11/10 l:\misys\bin\cygdb-4.8.dll - os=4.0 img=1.0 sys=4.0
>                   "cygdb-4.8.dll" v0.0 ts=2011-11-11 00:15
>   299k 2016/10/10 l:\misys\bin\cygdbus-1-3.dll - os=4.0 img=1.0 sys=4.0
>                   "cygdbus-1-3.dll" v0.0 ts=2016-10-11 00:07
>   105k 2011/11/10 l:\misys\bin\cygdb_cxx-4.8.dll - os=4.0 img=1.0 sys=4.0
>                   "cygdb_cxx-4.8.dll" v0.0 ts=2011-11-11 00:16
>   159k 2013/10/20 l:\misys\bin\cygedit-0.dll - os=4.0 img=1.0 sys=4.0
>                   "cygedit-0.dll" v0.0 ts=2013-10-21 02:39
>   124k 2016/09/05 l:\misys\bin\cygEGL-1.dll - os=4.0 img=1.0 sys=4.0
>                   "cygEGL-1.dll" v0.0 ts=2016-09-06 00:05
>   157k 2016/06/21 l:\misys\bin\cygexpat-1.dll - os=4.0 img=1.0 sys=4.0
>                   "cygexpat-1.dll" v0.0 ts=2016-06-22 03:52
>    32k 2014/10/14 l:\misys\bin\cygfam-0.dll - os=4.0 img=1.0 sys=4.0
>                   "cygfam-0.dll" v0.0 ts=2014-10-15 01:51
>    27k 2015/01/02 l:\misys\bin\cygffi-6.dll - os=4.0 img=1.0 sys=4.0
>                   "cygffi-6.dll" v0.0 ts=2015-01-02 06:41
>   252k 2016/08/11 l:\misys\bin\cygfontconfig-1.dll - os=4.0 img=1.0 sys=4.0
>                   "cygfontconfig-1.dll" v0.0 ts=2016-08-11 10:42
>    60k 2016/09/19 l:\misys\bin\cygformw-10.dll - os=4.0 img=1.0 sys=4.0
>                   "cygformw-10.dll" v0.0 ts=2016-09-19 11:35
>   615k 2016/07/28 l:\misys\bin\cygfreetype-6.dll - os=4.0 img=1.0 sys=4.0
>                   "cygfreetype-6.dll" v0.0 ts=2016-07-28 22:54
>   108k 2016/06/14 l:\misys\bin\cyggcc_s-1.dll - os=4.0 img=1.0 sys=4.0
>                   "cyggcc_s-1.dll" v0.0 ts=2016-06-14 10:14
> 18555k 2016/06/14 l:\misys\bin\cyggcj-16.dll - os=4.0 img=1.0 sys=4.0
>                   "cyggcj-16.dll" v0.0 ts=2016-06-14 12:13
> 13043k 2016/06/14 l:\misys\bin\cyggcj-noncore-16.dll - os=4.0 img=1.0 sys=4.0
>                   "cyggcj-noncore-16.dll" v0.0 ts=2016-06-14 12:17
>  3730k 2016/06/14 l:\misys\bin\cyggcj-tools-16.dll - os=4.0 img=1.0 sys=4.0
>                   "cyggcj-tools-16.dll" v0.0 ts=2016-06-14 12:18
>    44k 2016/10/10 l:\misys\bin\cyggdbm-4.dll - os=4.0 img=1.0 sys=4.0
>                   "cyggdbm-4.dll" v0.0 ts=2016-10-10 22:43
>    14k 2016/10/10 l:\misys\bin\cyggdbm_compat-4.dll - os=4.0 img=1.0 sys=4.0
>                   "cyggdbm_compat-4.dll" v0.0 ts=2016-10-10 22:43
>   648k 2016/05/31 l:\misys\bin\cyggdk-x11-2.0-0.dll - os=4.0 img=1.0 sys=4.0
>                   "cyggdk-x11-2.0-0.dll" v0.0 ts=2016-05-31 13:27
>   152k 2016/05/31 l:\misys\bin\cyggdk_pixbuf-2.0-0.dll - os=4.0 img=1.0 sys=4.0
>                   "cyggdk_pixbuf-2.0-0.dll" v0.0 ts=2016-05-31 22:42
>  1031k 2016/06/14 l:\misys\bin\cyggfortran-3.dll - os=4.0 img=1.0 sys=4.0
>                   "cyggfortran-3.dll" v0.0 ts=2016-06-14 11:47
>    14k 2016/06/14 l:\misys\bin\cyggij-16.dll - os=4.0 img=1.0 sys=4.0
>                   "cyggij-16.dll" v0.0 ts=2016-06-14 12:18
>  1443k 2016/06/02 l:\misys\bin\cyggio-2.0-0.dll - os=4.0 img=1.0 sys=4.0
>                   "cyggio-2.0-0.dll" v0.0 ts=2016-06-03 01:48
>   517k 2016/09/05 l:\misys\bin\cygGL-1.dll - os=4.0 img=1.0 sys=4.0
>                   "cygGL-1.dll" v0.0 ts=2016-09-06 00:05
>   284k 2016/09/05 l:\misys\bin\cygglapi-0.dll - os=4.0 img=1.0 sys=4.0
>                   "cygglapi-0.dll" v0.0 ts=2016-09-05 23:50
>  1039k 2016/06/02 l:\misys\bin\cygglib-2.0-0.dll - os=4.0 img=1.0 sys=4.0
>                   "cygglib-2.0-0.dll" v0.0 ts=2016-06-03 01:46
>    16k 2016/06/02 l:\misys\bin\cyggmodule-2.0-0.dll - os=4.0 img=1.0 sys=4.0
>                   "cyggmodule-2.0-0.dll" v0.0 ts=2016-06-03 01:46
>   506k 2016/08/28 l:\misys\bin\cyggmp-10.dll - os=4.0 img=1.0 sys=4.0
>                   "cyggmp-10.dll" v0.0 ts=2016-08-28 14:41
>   317k 2016/06/02 l:\misys\bin\cyggobject-2.0-0.dll - os=4.0 img=1.0 sys=4.0
>                   "cyggobject-2.0-0.dll" v0.0 ts=2016-06-03 01:46
>   113k 2016/06/14 l:\misys\bin\cyggomp-1.dll - os=4.0 img=1.0 sys=4.0
>                   "cyggomp-1.dll" v0.0 ts=2016-06-14 10:19
>    11k 2016/06/14 l:\misys\bin\cyggomp-plugin-host_nonshm-1.dll -
> os=4.0 img=1.0 sys=4.0
>                   "cyggomp-plugin-host_nonshm-1.dll" v0.0 ts=2016-06-14 10:20
>   184k 2016/10/30 l:\misys\bin\cyggraphite2-3.dll - os=4.0 img=3.0 sys=4.0
>                   "cyggraphite2-3.dll" v0.0 ts=2016-10-31 01:46
>   279k 2016/09/26 l:\misys\bin\cyggssapi_krb5-2.dll - os=4.0 img=1.0 sys=4.0
>                   "cyggssapi_krb5-2.dll" v0.0 ts=2016-09-26 11:21
>     9k 2016/06/02 l:\misys\bin\cyggthread-2.0-0.dll - os=4.0 img=1.0 sys=4.0
>                   "cyggthread-2.0-0.dll" v0.0 ts=2016-06-03 01:46
>  4380k 2016/05/31 l:\misys\bin\cyggtk-x11-2.0-0.dll - os=4.0 img=1.0 sys=4.0
>                   "cyggtk-x11-2.0-0.dll" v0.0 ts=2016-05-31 13:46
>   812k 2015/02/20 l:\misys\bin\cygguile-17.dll - os=4.0 img=1.0 sys=4.0
>                   "cygguile-17.dll" v0.0 ts=2015-02-20 22:04
>   410k 2016/10/31 l:\misys\bin\cygharfbuzz-0.dll - os=4.0 img=1.0 sys=4.0
>                   "cygharfbuzz-0.dll" v0.0 ts=2016-10-31 02:32
>    31k 2015/01/27 l:\misys\bin\cyghistory7.dll - os=4.0 img=1.0 sys=4.0
>                   "cyghistory7.dll" v0.0 ts=2015-01-28 05:13
>    80k 2014/08/10 l:\misys\bin\cygICE-6.dll - os=4.0 img=1.0 sys=4.0
>                   "cygICE-6.dll" v0.0 ts=1970-01-01 05:30
>  1010k 2015/02/20 l:\misys\bin\cygiconv-2.dll - os=4.0 img=1.0 sys=4.0
>                   "cygiconv-2.dll" v0.0 ts=2015-02-20 22:22
> 25076k 2016/04/08 l:\misys\bin\cygicudata57.dll - os=4.0 img=1.0 sys=4.0
>                   "cygicudata57.dll" v0.0 ts=2016-04-09 00:35
> 25605k 2016/10/21 l:\misys\bin\cygicudata58.dll - os=4.0 img=1.0 sys=4.0
>                   "cygicudata58.dll" v0.0 ts=2016-10-22 03:34
>  2307k 2016/04/08 l:\misys\bin\cygicui18n57.dll - os=4.0 img=1.0 sys=4.0
>                   "cygicui18n57.dll" v0.0 ts=2016-04-09 00:32
>  2317k 2016/10/21 l:\misys\bin\cygicui18n58.dll - os=4.0 img=1.0 sys=4.0
>                   "cygicui18n58.dll" v0.0 ts=2016-10-22 03:32
>    46k 2016/04/08 l:\misys\bin\cygicuio57.dll - os=4.0 img=1.0 sys=4.0
>                   "cygicuio57.dll" v0.0 ts=2016-04-09 00:32
>    46k 2016/10/21 l:\misys\bin\cygicuio58.dll - os=4.0 img=1.0 sys=4.0
>                   "cygicuio58.dll" v0.0 ts=2016-10-22 03:33
>   310k 2016/04/08 l:\misys\bin\cygicule57.dll - os=4.0 img=1.0 sys=4.0
>                   "cygicule57.dll" v0.0 ts=2016-04-09 00:32
>    39k 2016/04/08 l:\misys\bin\cygiculx57.dll - os=4.0 img=1.0 sys=4.0
>                   "cygiculx57.dll" v0.0 ts=2016-04-09 00:32
>  1488k 2016/04/08 l:\misys\bin\cygicuuc57.dll - os=4.0 img=1.0 sys=4.0
>                   "cygicuuc57.dll" v0.0 ts=2016-04-09 00:31
>  1510k 2016/10/21 l:\misys\bin\cygicuuc58.dll - os=4.0 img=1.0 sys=4.0
>                   "cygicuuc58.dll" v0.0 ts=2016-10-22 03:31
>   198k 2014/12/06 l:\misys\bin\cygidn-11.dll - os=4.0 img=1.0 sys=4.0
>                   "cygidn-11.dll" v0.0 ts=2014-12-06 18:26
>    42k 2016/10/23 l:\misys\bin\cygintl-8.dll - os=4.0 img=1.0 sys=4.0
>                   "cygintl-8.dll" v0.0 ts=2016-10-23 11:49
>  1191k 2015/09/20 l:\misys\bin\cygisl-13.dll - os=4.0 img=1.0 sys=4.0
>                   "cygisl-13.dll" v0.0 ts=2015-09-20 17:09
>   277k 2015/01/23 l:\misys\bin\cygjasper-1.dll - os=4.0 img=1.0 sys=4.0
>                   "cygjasper-1.dll" v0.0 ts=2015-01-23 17:33
>    47k 2014/06/17 l:\misys\bin\cygjbig-2.dll - os=4.0 img=1.0 sys=4.0
>                   "cygjbig-2.dll" v0.0 ts=1970-01-01 05:30
>    20k 2014/06/17 l:\misys\bin\cygjbig85-2.dll - os=4.0 img=1.0 sys=4.0
>                   "cygjbig85-2.dll" v0.0 ts=1970-01-01 05:30
>   429k 2016/08/07 l:\misys\bin\cygjpeg-8.dll - os=4.0 img=1.0 sys=4.0
>                   "cygjpeg-8.dll" v0.0 ts=2016-08-08 01:00
>     9k 2016/06/14 l:\misys\bin\cygjvm.dll - os=4.0 img=1.0 sys=4.0
>                   "cygjvm.dll" v0.0 ts=2016-06-14 12:18
>   189k 2016/09/26 l:\misys\bin\cygk5crypto-3.dll - os=4.0 img=1.0 sys=4.0
>                   "cygk5crypto-3.dll" v0.0 ts=2016-09-26 11:20
>   745k 2016/09/26 l:\misys\bin\cygkrb5-3.dll - os=4.0 img=1.0 sys=4.0
>                   "cygkrb5-3.dll" v0.0 ts=2016-09-26 11:21
>    39k 2016/09/26 l:\misys\bin\cygkrb5support-0.dll - os=4.0 img=1.0 sys=4.0
>                   "cygkrb5support-0.dll" v0.0 ts=2016-09-26 11:20
>    49k 2015/11/19 l:\misys\bin\cyglber-2-4-2.dll - os=4.0 img=1.0 sys=4.0
>                   "cyglber-2-4-2.dll" v0.0 ts=2015-11-19 13:54
>   271k 2015/11/19 l:\misys\bin\cygldap-2-4-2.dll - os=4.0 img=1.0 sys=4.0
>                   "cygldap-2-4-2.dll" v0.0 ts=2015-11-19 13:55
>   287k 2015/11/19 l:\misys\bin\cygldap_r-2-4-2.dll - os=4.0 img=1.0 sys=4.0
>                   "cygldap_r-2-4-2.dll" v0.0 ts=2015-11-19 13:56
> 27501k 2016/07/21 l:\misys\bin\cygLLVM-3.8.dll - os=4.0 img=0.0 sys=4.0
>                   "cygLLVM-3.8.dll" v0.0 ts=2016-07-21 08:40
>     5k 2016/08/31 l:\misys\bin\cyglsa.dll - os=4.0 img=1.0 sys=4.0
>                   "cyglsa.dll" v0.0 ts=2016-08-31 17:57
>     6k 2016/08/31 l:\misys\bin\cyglsa64.dll (not x86 dll)
>    36k 2016/06/28 l:\misys\bin\cygltdl-7.dll - os=4.0 img=1.0 sys=4.0
>                   "cygltdl-7.dll" v0.0 ts=2016-06-28 23:27
>   159k 2015/11/09 l:\misys\bin\cyglzma-5.dll - os=4.0 img=1.0 sys=4.0
>                   "cyglzma-5.dll" v0.0 ts=2015-11-09 11:43
>   127k 2014/11/17 l:\misys\bin\cyglzo2-2.dll - os=4.0 img=1.0 sys=4.0
>                   "cyglzo2-2.dll" v0.0 ts=2014-11-17 14:48
>   124k 2016/01/11 l:\misys\bin\cygmagic-1.dll - os=4.0 img=1.0 sys=4.0
>                   "cygmagic-1.dll" v0.0 ts=2016-01-12 04:06
>   173k 2016/10/10 l:\misys\bin\cygman-2-7-5.dll - os=4.0 img=1.0 sys=4.0
>                   "cygman-2-7-5.dll" v0.0 ts=2016-10-11 02:37
>    21k 2016/10/10 l:\misys\bin\cygmandb-2-7-5.dll - os=4.0 img=1.0 sys=4.0
>                   "cygmandb-2-7-5.dll" v0.0 ts=2016-10-11 02:38
>    30k 2016/09/19 l:\misys\bin\cygmenuw-10.dll - os=4.0 img=1.0 sys=4.0
>                   "cygmenuw-10.dll" v0.0 ts=2016-09-19 11:34
>    98k 2015/03/01 l:\misys\bin\cygmpc-3.dll - os=4.0 img=1.0 sys=4.0
>                   "cygmpc-3.dll" v0.0 ts=2015-03-02 01:54
>   374k 2016/09/27 l:\misys\bin\cygmpfr-4.dll - os=4.0 img=1.0 sys=4.0
>                   "cygmpfr-4.dll" v0.0 ts=2016-09-28 00:55
>    56k 2016/09/19 l:\misys\bin\cygncurses++w-10.dll - os=4.0 img=1.0 sys=4.0
>                   "cygncurses++w-10.dll" v0.0 ts=2016-09-19 11:40
>   306k 2016/09/19 l:\misys\bin\cygncursesw-10.dll - os=4.0 img=1.0 sys=4.0
>                   "cygncursesw-10.dll" v0.0 ts=2016-09-19 11:33
>   193k 2016/03/13 l:\misys\bin\cygnettle-4.dll - os=4.0 img=1.0 sys=4.0
>                   "cygnettle-4.dll" v0.0 ts=2016-03-13 18:52
>   146k 2016/09/08 l:\misys\bin\cygnghttp2-14.dll - os=4.0 img=1.0 sys=4.0
>                   "cygnghttp2-14.dll" v0.0 ts=2016-09-08 07:18
>   100k 2016/06/14 l:\misys\bin\cygobjc-4.dll - os=4.0 img=1.0 sys=4.0
>                   "cygobjc-4.dll" v0.0 ts=2016-06-14 11:20
>   326k 2015/06/01 l:\misys\bin\cygp11-kit-0.dll - os=4.0 img=1.0 sys=4.0
>                   "cygp11-kit-0.dll" v0.0 ts=2015-06-02 00:47
>    15k 2016/09/19 l:\misys\bin\cygpanelw-10.dll - os=4.0 img=1.0 sys=4.0
>                   "cygpanelw-10.dll" v0.0 ts=2016-09-19 11:34
>   272k 2015/11/06 l:\misys\bin\cygpango-1.0-0.dll - os=4.0 img=1.0 sys=4.0
>                   "cygpango-1.0-0.dll" v0.0 ts=2015-11-06 08:29
>    44k 2015/11/06 l:\misys\bin\cygpangocairo-1.0-0.dll - os=4.0 img=1.0 sys=4.0
>                   "cygpangocairo-1.0-0.dll" v0.0 ts=2015-11-06 08:29
>    75k 2015/11/06 l:\misys\bin\cygpangoft2-1.0-0.dll - os=4.0 img=1.0 sys=4.0
>                   "cygpangoft2-1.0-0.dll" v0.0 ts=2015-11-06 08:29
>    29k 2015/11/06 l:\misys\bin\cygpangoxft-1.0-0.dll - os=4.0 img=1.0 sys=4.0
>                   "cygpangoxft-1.0-0.dll" v0.0 ts=2015-11-06 08:29
>   470k 2016/08/11 l:\misys\bin\cygpcre-1.dll - os=4.0 img=1.0 sys=4.0
>                   "cygpcre-1.dll" v0.0 ts=2016-08-12 01:45
>   437k 2016/08/11 l:\misys\bin\cygpcre16-0.dll - os=4.0 img=1.0 sys=4.0
>                   "cygpcre16-0.dll" v0.0 ts=2016-08-12 01:45
>  2164k 2016/04/30 l:\misys\bin\cygperl5_22.dll - os=4.0 img=1.0 sys=4.0
>                   "cygperl5_22.dll" v0.0 ts=2016-04-30 19:36
>    41k 2015/04/09 l:\misys\bin\cygpipeline-1.dll - os=4.0 img=1.0 sys=4.0
>                   "cygpipeline-1.dll" v0.0 ts=2015-04-10 01:28
>   645k 2016/08/08 l:\misys\bin\cygpixman-1-0.dll - os=4.0 img=1.0 sys=4.0
>                   "cygpixman-1-0.dll" v0.0 ts=2016-08-08 07:25
>   195k 2016/08/07 l:\misys\bin\cygpng16-16.dll - os=4.0 img=1.0 sys=4.0
>                   "cygpng16-16.dll" v0.0 ts=2016-08-07 23:09
>    43k 2016/07/13 l:\misys\bin\cygpopt-0.dll - os=4.0 img=1.0 sys=4.0
>                   "cygpopt-0.dll" v0.0 ts=2016-07-13 10:47
>   122k 2015/06/29 l:\misys\bin\cygproxy-1.dll - os=4.0 img=1.0 sys=4.0
>                   "cygproxy-1.dll" v0.0 ts=2015-06-30 03:05
>    49k 2016/09/08 l:\misys\bin\cygpsl-5.dll - os=4.0 img=1.0 sys=4.0
>                   "cygpsl-5.dll" v0.0 ts=2016-09-08 07:40
>    22k 2016/11/01 l:\misys\bin\cygQt5Concurrent-5.dll - os=4.0 img=1.0 sys=4.0
>                   "cygQt5Concurrent-5.dll" v0.0 ts=2016-11-01 07:43
>  4185k 2016/11/01 l:\misys\bin\cygQt5Core-5.dll - os=4.0 img=1.0 sys=4.0
>                   "cygQt5Core-5.dll" v0.0 ts=2016-11-01 07:42
>   541k 2016/11/01 l:\misys\bin\cygQt5DBus-5.dll - os=4.0 img=1.0 sys=4.0
>                   "cygQt5DBus-5.dll" v0.0 ts=2016-11-01 07:45
>  4802k 2016/11/01 l:\misys\bin\cygQt5Gui-5.dll - os=4.0 img=1.0 sys=4.0
>                   "cygQt5Gui-5.dll" v0.0 ts=2016-11-01 07:49
>  1423k 2016/11/01 l:\misys\bin\cygQt5Network-5.dll - os=4.0 img=1.0 sys=4.0
>                   "cygQt5Network-5.dll" v0.0 ts=2016-11-01 07:47
>   312k 2016/11/01 l:\misys\bin\cygQt5OpenGL-5.dll - os=4.0 img=1.0 sys=4.0
>                   "cygQt5OpenGL-5.dll" v0.0 ts=2016-11-01 08:04
>   356k 2016/11/01 l:\misys\bin\cygQt5PrintSupport-5.dll - os=4.0 img=1.0 sys=4.0
>                   "cygQt5PrintSupport-5.dll" v0.0 ts=2016-11-01 08:04
>   158k 2016/11/01 l:\misys\bin\cygQt5Test-5.dll - os=4.0 img=1.0 sys=4.0
>                   "cygQt5Test-5.dll" v0.0 ts=2016-11-01 08:04
>  6118k 2016/11/01 l:\misys\bin\cygQt5Widgets-5.dll - os=4.0 img=1.0 sys=4.0
>                   "cygQt5Widgets-5.dll" v0.0 ts=2016-11-01 08:02
>   945k 2016/11/01 l:\misys\bin\cygQt5XcbQpa-5.dll - os=4.0 img=1.0 sys=4.0
>                   "cygQt5XcbQpa-5.dll" v0.0 ts=2016-11-01 08:06
>   205k 2016/11/01 l:\misys\bin\cygQt5Xml-5.dll - os=4.0 img=1.0 sys=4.0
>                   "cygQt5Xml-5.dll" v0.0 ts=2016-11-01 07:43
>   500k 2016/06/14 l:\misys\bin\cygquadmath-0.dll - os=4.0 img=1.0 sys=4.0
>                   "cygquadmath-0.dll" v0.0 ts=2016-06-14 11:20
>   208k 2015/01/27 l:\misys\bin\cygreadline7.dll - os=4.0 img=1.0 sys=4.0
>                   "cygreadline7.dll" v0.0 ts=2015-01-28 05:13
>   102k 2014/11/24 l:\misys\bin\cygsasl2-3.dll - os=4.0 img=1.0 sys=4.0
>                   "cygsasl2-3.dll" v0.0 ts=2014-11-25 00:05
>    11k 2015/07/17 l:\misys\bin\cygsigsegv-2.dll - os=4.0 img=1.0 sys=4.0
>                   "cygsigsegv-2.dll" v0.0 ts=2015-07-18 03:03
>    28k 2014/01/14 l:\misys\bin\cygSM-6.dll - os=4.0 img=1.0 sys=4.0
>                   "cygSM-6.dll" v0.0 ts=2014-01-15 05:24
>    98k 2015/03/23 l:\misys\bin\cygsmartcols-1.dll - os=4.0 img=1.0 sys=4.0
>                   "cygsmartcols-1.dll" v0.0 ts=2015-03-23 14:25
>   168k 2016/03/02 l:\misys\bin\cygssh2-1.dll - os=4.0 img=1.0 sys=4.0
>                   "cygssh2-1.dll" v0.0 ts=2016-03-02 23:37
>   423k 2016/09/26 l:\misys\bin\cygssl-1.0.0.dll - os=4.0 img=1.0 sys=4.0
>                   "cygssl-1.0.0.dll" v0.0 ts=2016-09-26 19:34
>    13k 2016/06/14 l:\misys\bin\cygssp-0.dll - os=4.0 img=1.0 sys=4.0
>                   "cygssp-0.dll" v0.0 ts=2016-06-14 11:12
>  1439k 2016/06/14 l:\misys\bin\cygstdc++-6.dll - os=4.0 img=1.0 sys=4.0
>                   "cygstdc++-6.dll" v0.0 ts=2016-06-14 10:36
>    70k 2016/08/22 l:\misys\bin\cygtasn1-6.dll - os=4.0 img=1.0 sys=4.0
>                   "cygtasn1-6.dll" v0.0 ts=2016-08-22 22:22
>    34k 2014/11/12 l:\misys\bin\cygthai-0.dll - os=4.0 img=1.0 sys=4.0
>                   "cygthai-0.dll" v0.0 ts=2014-11-12 10:46
>    55k 2016/09/19 l:\misys\bin\cygticw-10.dll - os=4.0 img=1.0 sys=4.0
>                   "cygticw-10.dll" v0.0 ts=2016-09-19 11:33
>   444k 2015/10/28 l:\misys\bin\cygtiff-6.dll - os=4.0 img=1.0 sys=4.0
>                   "cygtiff-6.dll" v0.0 ts=2015-10-29 02:00
>    12k 2015/10/28 l:\misys\bin\cygtiffxx-6.dll - os=4.0 img=1.0 sys=4.0
>                   "cygtiffxx-6.dll" v0.0 ts=2015-10-29 02:00
>   221k 2016/05/10 l:\misys\bin\cygtxc_dxtn.dll - os=4.0 img=1.0 sys=4.0
>                   "cygtxc_dxtn.dll" v0.0 ts=2016-05-10 11:02
>  1570k 2015/10/16 l:\misys\bin\cygunistring-2.dll - os=4.0 img=1.0 sys=4.0
>                   "cygunistring-2.dll" v0.0 ts=2015-10-17 02:09
>    16k 2015/03/23 l:\misys\bin\cyguuid-1.dll - os=4.0 img=1.0 sys=4.0
>                   "cyguuid-1.dll" v0.0 ts=2015-03-23 14:25
>     8k 2016/06/14 l:\misys\bin\cygvtv-0.dll - os=4.0 img=1.0 sys=4.0
>                   "cygvtv-0.dll" v0.0 ts=2016-06-14 11:12
>     8k 2016/06/14 l:\misys\bin\cygvtv_stubs-0.dll - os=4.0 img=1.0 sys=4.0
>                   "cygvtv_stubs-0.dll" v0.0 ts=2016-06-14 11:12
>  1168k 2016/10/09 l:\misys\bin\cygX11-6.dll - os=4.0 img=1.0 sys=4.0
>                   "cygX11-6.dll" v0.0 ts=2016-10-09 22:18
>     8k 2016/10/09 l:\misys\bin\cygX11-xcb-1.dll - os=4.0 img=1.0 sys=4.0
>                   "cygX11-xcb-1.dll" v0.0 ts=2016-10-09 22:17
>    10k 2013/06/06 l:\misys\bin\cygXau-6.dll - os=4.0 img=1.0 sys=4.0
>                   "cygXau-6.dll" v0.0 ts=2013-06-06 10:59
>   124k 2016/08/09 l:\misys\bin\cygxcb-1.dll - os=4.0 img=1.0 sys=4.0
>                   "cygxcb-1.dll" v0.0 ts=2016-08-10 02:38
>    78k 2016/08/09 l:\misys\bin\cygxcb-glx-0.dll - os=4.0 img=1.0 sys=4.0
>                   "cygxcb-glx-0.dll" v0.0 ts=2016-08-10 02:38
>    19k 2014/08/10 l:\misys\bin\cygxcb-icccm-4.dll - os=4.0 img=1.0 sys=4.0
>                   "cygxcb-icccm-4.dll" v0.0 ts=1970-01-01 05:30
>    14k 2012/09/28 l:\misys\bin\cygxcb-image-0.dll - os=4.0 img=1.0 sys=4.0
>                   "cygxcb-image-0.dll" v0.0 ts=2012-09-28 22:29
>     9k 2012/09/28 l:\misys\bin\cygxcb-keysyms-1.dll - os=4.0 img=1.0 sys=4.0
>                   "cygxcb-keysyms-1.dll" v0.0 ts=2012-09-28 22:35
>    47k 2016/08/09 l:\misys\bin\cygxcb-randr-0.dll - os=4.0 img=1.0 sys=4.0
>                   "cygxcb-randr-0.dll" v0.0 ts=2016-08-10 02:38
>    42k 2016/08/09 l:\misys\bin\cygxcb-render-0.dll - os=4.0 img=1.0 sys=4.0
>                   "cygxcb-render-0.dll" v0.0 ts=2016-08-10 02:38
>    14k 2014/08/10 l:\misys\bin\cygxcb-render-util-0.dll - os=4.0 img=1.0 sys=4.0
>                   "cygxcb-render-util-0.dll" v0.0 ts=1970-01-01 05:30
>    13k 2016/08/09 l:\misys\bin\cygxcb-shape-0.dll - os=4.0 img=1.0 sys=4.0
>                   "cygxcb-shape-0.dll" v0.0 ts=2016-08-10 02:38
>    12k 2016/08/09 l:\misys\bin\cygxcb-shm-0.dll - os=4.0 img=1.0 sys=4.0
>                   "cygxcb-shm-0.dll" v0.0 ts=2016-08-10 02:38
>    22k 2016/08/09 l:\misys\bin\cygxcb-sync-1.dll - os=4.0 img=1.0 sys=4.0
>                   "cygxcb-sync-1.dll" v0.0 ts=2016-08-10 02:38
>    14k 2012/09/28 l:\misys\bin\cygxcb-util-1.dll - os=4.0 img=1.0 sys=4.0
>                   "cygxcb-util-1.dll" v0.0 ts=2012-09-28 22:21
>    25k 2016/08/09 l:\misys\bin\cygxcb-xfixes-0.dll - os=4.0 img=1.0 sys=4.0
>                   "cygxcb-xfixes-0.dll" v0.0 ts=2016-08-10 02:38
>    12k 2016/08/09 l:\misys\bin\cygxcb-xinerama-0.dll - os=4.0 img=1.0 sys=4.0
>                   "cygxcb-xinerama-0.dll" v0.0 ts=2016-08-10 02:38
>    90k 2016/08/09 l:\misys\bin\cygxcb-xkb-1.dll - os=4.0 img=1.0 sys=4.0
>                   "cygxcb-xkb-1.dll" v0.0 ts=2016-08-10 02:38
>    10k 2010/11/01 l:\misys\bin\cygXcomposite-1.dll - os=4.0 img=1.0 sys=4.0
>                   "cygXcomposite-1.dll" v0.0 ts=2010-11-01 06:29
>    35k 2013/06/06 l:\misys\bin\cygXcursor-1.dll - os=4.0 img=1.0 sys=4.0
>                   "cygXcursor-1.dll" v0.0 ts=2013-06-07 02:03
>     9k 2013/04/08 l:\misys\bin\cygXdamage-1.dll - os=4.0 img=1.0 sys=4.0
>                   "cygXdamage-1.dll" v0.0 ts=2013-04-09 03:07
>    22k 2015/03/26 l:\misys\bin\cygXdmcp-6.dll - os=4.0 img=1.0 sys=4.0
>                   "cygXdmcp-6.dll" v0.0 ts=2015-03-26 20:08
>    62k 2014/08/10 l:\misys\bin\cygXext-6.dll - os=4.0 img=1.0 sys=4.0
>                   "cygXext-6.dll" v0.0 ts=1970-01-01 05:30
>    21k 2016/10/09 l:\misys\bin\cygXfixes-3.dll - os=4.0 img=1.0 sys=4.0
>                   "cygXfixes-3.dll" v0.0 ts=2016-10-09 23:07
>    77k 2014/08/10 l:\misys\bin\cygXft-2.dll - os=4.0 img=1.0 sys=4.0
>                   "cygXft-2.dll" v0.0 ts=1970-01-01 05:30
>    60k 2016/10/26 l:\misys\bin\cygXi-6.dll - os=4.0 img=1.0 sys=4.0
>                   "cygXi-6.dll" v0.0 ts=2016-10-26 07:08
>     9k 2013/06/06 l:\misys\bin\cygXinerama-1.dll - os=4.0 img=1.0 sys=4.0
>                   "cygXinerama-1.dll" v0.0 ts=2013-06-07 02:08
>   233k 2015/07/16 l:\misys\bin\cygxkbcommon-0.dll - os=4.0 img=1.0 sys=4.0
>                   "cygxkbcommon-0.dll" v0.0 ts=2015-07-17 03:43
>    29k 2015/07/16 l:\misys\bin\cygxkbcommon-x11-0.dll - os=4.0 img=1.0 sys=4.0
>                   "cygxkbcommon-x11-0.dll" v0.0 ts=2015-07-17 03:43
>  1289k 2016/08/26 l:\misys\bin\cygxml2-2.dll - os=4.0 img=1.0 sys=4.0
>                   "cygxml2-2.dll" v0.0 ts=2016-08-27 00:40
>    39k 2016/10/09 l:\misys\bin\cygXrandr-2.dll - os=4.0 img=1.0 sys=4.0
>                   "cygXrandr-2.dll" v0.0 ts=2016-10-09 23:15
>    37k 2016/01/29 l:\misys\bin\cygXrender-1.dll - os=4.0 img=1.0 sys=4.0
>                   "cygXrender-1.dll" v0.0 ts=2016-01-30 01:54
>    83k 2014/11/19 l:\misys\bin\cygz.dll - os=4.0 img=1.0 sys=4.0
>                   "cygz.dll" v0.0 ts=2014-11-20 04:27
>  3364k 2016/08/31 l:\misys\bin\cygwin1.dll - os=4.0 img=1.0 sys=4.0
>                   "cygwin1.dll" v0.0 ts=2016-08-31 17:57
>     Cygwin DLL version info:
>         DLL version: 2.6.0
>         DLL epoch: 19
>         DLL old termios: 5
>         DLL malloc env: 28
>         Cygwin conv: 181
>         API major: 0
>         API minor: 304
>         Shared data: 5
>         DLL identifier: cygwin1
>         Mount registry: 3
>         Cygwin registry name: Cygwin
>         Installations name: Installations
>         Cygdrive default prefix:
>         Build date:
>         Shared id: cygwin1S5
>
>
> Can't find the cygrunsrv utility, skipping services check.
>
>
> Cygwin Package Information
> Last downloaded files to: C:\cyglocal
> Last downloaded files from: http://cygwin.mirror.constant.com/
>
> Package                                 Version                      Status
> _autorebase                             001004-1                     OK
> adwaita-icon-theme                      3.18.0-1                     OK
> alternatives                            1.3.30c-10                   OK
> autoconf                                13-1                         OK
> autoconf2.1                             2.13-12                      OK
> autoconf2.5                             2.69-3                       OK
> automake                                9-1                          OK
> automake1.10                            1.10.3-2                     OK
> automake1.11                            1.11.6-2                     OK
> automake1.12                            1.12.6-2                     OK
> automake1.13                            1.13.4-1                     OK
> automake1.14                            1.14.1-2                     OK
> automake1.15                            1.15-1                       OK
> automake1.4                             1.4p6-11                     OK
> automake1.5                             1.5-11                       OK
> automake1.6                             1.6.3-12                     OK
> automake1.7                             1.7.9-11                     OK
> automake1.8                             1.8.5-11                     OK
> automake1.9                             1.9.6-11                     OK
> base-cygwin                             3.8-1                        OK
> base-files                              4.2-4                        OK
> bash                                    4.3.46-7                     OK
> binutils                                2.25-4                       OK
> bison                                   3.0.4-1                      OK
> bzip2                                   1.0.6-2                      OK
> ca-certificates                         2.10-1                       OK
> cmake                                   3.6.2-1                      OK
> cmake-debuginfo                         3.6.2-1                      OK
> cmake-doc                               3.6.2-1                      OK
> cmake-gui                               3.6.2-1                      OK
> colorgcc                                1.3.2-2                      OK
> coreutils                               8.25-3                       OK
> cygutils                                1.4.15-2                     OK
> cygwin                                  2.6.0-1                      OK
> cygwin-debuginfo                        2.6.0-1                      OK
> cygwin-devel                            2.6.0-1                      OK
> cygwin64                                2.6.0-1                      OK
> cygwin64-binutils                       2.25-1                       OK
> cygwin64-default-manifest               6.4-1                        OK
> cygwin64-gcc-ada                        5.4.0-1                      OK
> cygwin64-gcc-cilkplus                   5.4.0-1                      OK
> cygwin64-gcc-core                       5.4.0-1                      OK
> cygwin64-gcc-fortran                    5.4.0-1                      OK
> cygwin64-gcc-g++                        5.4.0-1                      OK
> cygwin64-gcc-objc                       5.4.0-1                      OK
> cygwin64-gcc-objc++                     5.4.0-1                      OK
> cygwin64-w32api-headers                 4.0.4-1                      OK
> cygwin64-w32api-runtime                 4.0.4-1                      OK
> dash                                    0.5.8-3                      OK
> dejavu-fonts                            2.37-1                       OK
> desktop-file-utils                      0.23-1                       OK
> djgpp-binutils                          2.25-2                       OK
> djgpp-gcc-ada                           5.4.0-1                      OK
> djgpp-gcc-core                          5.4.0-1                      OK
> djgpp-gcc-fortran                       5.4.0-1                      OK
> djgpp-gcc-g++                           5.4.0-1                      OK
> djgpp-gcc-objc                          5.4.0-1                      OK
> djgpp-gcc-objc++                        5.4.0-1                      OK
> djgpp-runtime                           2.05-1                       OK
> dri-drivers                             12.0.2-1                     OK
> editrights                              1.03-1                       OK
> extra-cmake-modules                     5.27.0-1                     OK
> file                                    5.25-1                       OK
> findutils                               4.6.0-1                      OK
> gamin                                   0.1.10-15                    OK
> gawk                                    4.1.4-1                      OK
> gcc-ada                                 5.4.0-1                      OK
> gcc-cilkplus                            5.4.0-1                      OK
> gcc-core                                5.4.0-1                      OK
> gcc-fortran                             5.4.0-1                      OK
> gcc-g++                                 5.4.0-1                      OK
> gcc-java                                5.4.0-1                      OK
> gcc-objc                                5.4.0-1                      OK
> gcc-objc++                              5.4.0-1                      OK
> Missing directory: /opt/ from package gcc-tools-epoch1-autoconf
> Missing directory: /opt/gcc-tools/ from package gcc-tools-epoch1-autoconf
> Missing directory: /opt/gcc-tools/bin/ from package gcc-tools-epoch1-autoconf
> Missing file: /opt/gcc-tools/bin/autoconf-2.59 from package
> gcc-tools-epoch1-autoconf
> Missing file: /opt/gcc-tools/bin/autoheader-2.59 from package
> gcc-tools-epoch1-autoconf
> Missing file: /opt/gcc-tools/bin/autom4te-2.59 from package
> gcc-tools-epoch1-autoconf
> Missing file: /opt/gcc-tools/bin/autoreconf-2.59 from package
> gcc-tools-epoch1-autoconf
> Missing file: /opt/gcc-tools/bin/autoscan-2.59 from package
> gcc-tools-epoch1-autoconf
> Missing file: /opt/gcc-tools/bin/autoupdate-2.59 from package
> gcc-tools-epoch1-autoconf
> Missing file: /opt/gcc-tools/bin/ifnames-2.59 from package
> gcc-tools-epoch1-autoconf
> Missing directory: /opt/gcc-tools/epoch1/ from package gcc-tools-epoch1-autoconf
> Missing directory: /opt/gcc-tools/epoch1/bin/ from package
> gcc-tools-epoch1-autoconf
> Missing file: /opt/gcc-tools/epoch1/bin/autoconf from package
> gcc-tools-epoch1-autoconf
> Missing file: /opt/gcc-tools/epoch1/bin/autoconf-2.59 from package
> gcc-tools-epoch1-autoconf
> Missing file: /opt/gcc-tools/epoch1/bin/autoheader from package
> gcc-tools-epoch1-autoconf
> Missing file: /opt/gcc-tools/epoch1/bin/autoheader-2.59 from package
> gcc-tools-epoch1-autoconf
> Missing file: /opt/gcc-tools/epoch1/bin/autom4te from package
> gcc-tools-epoch1-autoconf
> Missing file: /opt/gcc-tools/epoch1/bin/autom4te-2.59 from package
> gcc-tools-epoch1-autoconf
> Missing file: /opt/gcc-tools/epoch1/bin/autoreconf from package
> gcc-tools-epoch1-autoconf
> Missing file: /opt/gcc-tools/epoch1/bin/autoreconf-2.59 from package
> gcc-tools-epoch1-autoconf
> Missing file: /opt/gcc-tools/epoch1/bin/autoscan from package
> gcc-tools-epoch1-autoconf
> Missing file: /opt/gcc-tools/epoch1/bin/autoscan-2.59 from package
> gcc-tools-epoch1-autoconf
> Missing file: /opt/gcc-tools/epoch1/bin/autoupdate from package
> gcc-tools-epoch1-autoconf
> Missing file: /opt/gcc-tools/epoch1/bin/autoupdate-2.59 from package
> gcc-tools-epoch1-autoconf
> Missing file: /opt/gcc-tools/epoch1/bin/ifnames from package
> gcc-tools-epoch1-autoconf
> Missing file: /opt/gcc-tools/epoch1/bin/ifnames-2.59 from package
> gcc-tools-epoch1-autoconf
> Missing directory: /opt/gcc-tools/epoch1/share/ from package
> gcc-tools-epoch1-autoconf
> Missing directory: /opt/gcc-tools/epoch1/share/autoconf/ from package
> gcc-tools-epoch1-autoconf
> Missing directory: /opt/gcc-tools/epoch1/share/autoconf/autoconf/ from
> package gcc-tools-epoch1-autoconf
> Missing file: /opt/gcc-tools/epoch1/share/autoconf/autoconf/autoconf.m4
> from package gcc-tools-epoch1-autoconf
> Missing file: /opt/gcc-tools/epoch1/share/autoconf/autoconf/autoconf.m4f
> from package gcc-tools-epoch1-autoconf
> Missing file: /opt/gcc-tools/epoch1/share/autoconf/autoconf/autoheader.m4
> from package gcc-tools-epoch1-autoconf
> Missing file: /opt/gcc-tools/epoch1/share/autoconf/autoconf/autoscan.m4
> from package gcc-tools-epoch1-autoconf
> Missing file: /opt/gcc-tools/epoch1/share/autoconf/autoconf/autotest.m4
> from package gcc-tools-epoch1-autoconf
> Missing file: /opt/gcc-tools/epoch1/share/autoconf/autoconf/autoupdate.m4
> from package gcc-tools-epoch1-autoconf
> Missing file: /opt/gcc-tools/epoch1/share/autoconf/autoconf/c.m4 from
> package gcc-tools-epoch1-autoconf
> Missing file: /opt/gcc-tools/epoch1/share/autoconf/autoconf/fortran.m4
> from package gcc-tools-epoch1-autoconf
> Missing file: /opt/gcc-tools/epoch1/share/autoconf/autoconf/functions.m4
> from package gcc-tools-epoch1-autoconf
> Missing file: /opt/gcc-tools/epoch1/share/autoconf/autoconf/general.m4
> from package gcc-tools-epoch1-autoconf
> Missing file: /opt/gcc-tools/epoch1/share/autoconf/autoconf/headers.m4
> from package gcc-tools-epoch1-autoconf
> Missing file: /opt/gcc-tools/epoch1/share/autoconf/autoconf/lang.m4
> from package gcc-tools-epoch1-autoconf
> Missing file: /opt/gcc-tools/epoch1/share/autoconf/autoconf/libs.m4
> from package gcc-tools-epoch1-autoconf
> Missing file: /opt/gcc-tools/epoch1/share/autoconf/autoconf/oldnames.m4
> from package gcc-tools-epoch1-autoconf
> Missing file: /opt/gcc-tools/epoch1/share/autoconf/autoconf/programs.m4
> from package gcc-tools-epoch1-autoconf
> Missing file: /opt/gcc-tools/epoch1/share/autoconf/autoconf/specific.m4
> from package gcc-tools-epoch1-autoconf
> Missing file: /opt/gcc-tools/epoch1/share/autoconf/autoconf/status.m4
> from package gcc-tools-epoch1-autoconf
> Missing file: /opt/gcc-tools/epoch1/share/autoconf/autoconf/types.m4
> from package gcc-tools-epoch1-autoconf
> Missing directory: /opt/gcc-tools/epoch1/share/autoconf/Autom4te/ from
> package gcc-tools-epoch1-autoconf
> Missing file: /opt/gcc-tools/epoch1/share/autoconf/Autom4te/C4che.pm
> from package gcc-tools-epoch1-autoconf
> Missing file: /opt/gcc-tools/epoch1/share/autoconf/Autom4te/ChannelDefs.pm
> from package gcc-tools-epoch1-autoconf
> Missing file: /opt/gcc-tools/epoch1/share/autoconf/Autom4te/Channels.pm
> from package gcc-tools-epoch1-autoconf
> Missing file: /opt/gcc-tools/epoch1/share/autoconf/Autom4te/Configure_ac.pm
> from package gcc-tools-epoch1-autoconf
> Missing file: /opt/gcc-tools/epoch1/share/autoconf/Autom4te/FileUtils.pm
> from package gcc-tools-epoch1-autoconf
> Missing file: /opt/gcc-tools/epoch1/share/autoconf/Autom4te/General.pm
> from package gcc-tools-epoch1-autoconf
> Missing file: /opt/gcc-tools/epoch1/share/autoconf/Autom4te/Request.pm
> from package gcc-tools-epoch1-autoconf
> Missing file: /opt/gcc-tools/epoch1/share/autoconf/Autom4te/Struct.pm
> from package gcc-tools-epoch1-autoconf
> Missing file: /opt/gcc-tools/epoch1/share/autoconf/Autom4te/XFile.pm
> from package gcc-tools-epoch1-autoconf
> Missing file: /opt/gcc-tools/epoch1/share/autoconf/autom4te.cfg from
> package gcc-tools-epoch1-autoconf
> Missing directory: /opt/gcc-tools/epoch1/share/autoconf/autoscan/ from
> package gcc-tools-epoch1-autoconf
> Missing file: /opt/gcc-tools/epoch1/share/autoconf/autoscan/autoscan.list
> from package gcc-tools-epoch1-autoconf
> Missing directory: /opt/gcc-tools/epoch1/share/autoconf/autotest/ from
> package gcc-tools-epoch1-autoconf
> Missing file: /opt/gcc-tools/epoch1/share/autoconf/autotest/autotest.m4
> from package gcc-tools-epoch1-autoconf
> Missing file: /opt/gcc-tools/epoch1/share/autoconf/autotest/autotest.m4f
> from package gcc-tools-epoch1-autoconf
> Missing file: /opt/gcc-tools/epoch1/share/autoconf/autotest/general.m4
> from package gcc-tools-epoch1-autoconf
> Missing file: /opt/gcc-tools/epoch1/share/autoconf/INSTALL from
> package gcc-tools-epoch1-autoconf
> Missing directory: /opt/gcc-tools/epoch1/share/autoconf/m4sugar/ from
> package gcc-tools-epoch1-autoconf
> Missing file: /opt/gcc-tools/epoch1/share/autoconf/m4sugar/m4sh.m4
> from package gcc-tools-epoch1-autoconf
> Missing file: /opt/gcc-tools/epoch1/share/autoconf/m4sugar/m4sh.m4f
> from package gcc-tools-epoch1-autoconf
> Missing file: /opt/gcc-tools/epoch1/share/autoconf/m4sugar/m4sugar.m4
> from package gcc-tools-epoch1-autoconf
> Missing file: /opt/gcc-tools/epoch1/share/autoconf/m4sugar/m4sugar.m4f
> from package gcc-tools-epoch1-autoconf
> Missing file: /opt/gcc-tools/epoch1/share/autoconf/m4sugar/version.m4
> from package gcc-tools-epoch1-autoconf
> Missing directory: /opt/gcc-tools/epoch1/share/info/ from package
> gcc-tools-epoch1-autoconf
> Missing file: /opt/gcc-tools/epoch1/share/info/autoconf2.59.info from
> package gcc-tools-epoch1-autoconf
> Missing directory: /opt/gcc-tools/epoch1/share/man/ from package
> gcc-tools-epoch1-autoconf
> Missing directory: /opt/gcc-tools/epoch1/share/man/man1/ from package
> gcc-tools-epoch1-autoconf
> Missing file: /opt/gcc-tools/epoch1/share/man/man1/autoconf-2.59.1
> from package gcc-tools-epoch1-autoconf
> Missing file: /opt/gcc-tools/epoch1/share/man/man1/autoheader-2.59.1
> from package gcc-tools-epoch1-autoconf
> Missing file: /opt/gcc-tools/epoch1/share/man/man1/autom4te-2.59.1
> from package gcc-tools-epoch1-autoconf
> Missing file: /opt/gcc-tools/epoch1/share/man/man1/autoreconf-2.59.1
> from package gcc-tools-epoch1-autoconf
> Missing file: /opt/gcc-tools/epoch1/share/man/man1/autoscan-2.59.1
> from package gcc-tools-epoch1-autoconf
> Missing file: /opt/gcc-tools/epoch1/share/man/man1/autoupdate-2.59.1
> from package gcc-tools-epoch1-autoconf
> Missing file: /opt/gcc-tools/epoch1/share/man/man1/config.guess-2.59.1
> from package gcc-tools-epoch1-autoconf
> Missing file: /opt/gcc-tools/epoch1/share/man/man1/config.sub-2.59.1
> from package gcc-tools-epoch1-autoconf
> Missing file: /opt/gcc-tools/epoch1/share/man/man1/ifnames-2.59.1 from
> package gcc-tools-epoch1-autoconf
> gcc-tools-epoch1-autoconf               2.59-2                       Incomplete
> Missing directory: /opt/ from package gcc-tools-epoch1-automake
> Missing directory: /opt/gcc-tools/ from package gcc-tools-epoch1-automake
> Missing directory: /opt/gcc-tools/bin/ from package gcc-tools-epoch1-automake
> Missing file: /opt/gcc-tools/bin/aclocal-1.9 from package
> gcc-tools-epoch1-automake
> Missing file: /opt/gcc-tools/bin/automake-1.9 from package
> gcc-tools-epoch1-automake
> Missing directory: /opt/gcc-tools/epoch1/ from package gcc-tools-epoch1-automake
> Missing directory: /opt/gcc-tools/epoch1/bin/ from package
> gcc-tools-epoch1-automake
> Missing file: /opt/gcc-tools/epoch1/bin/aclocal from package
> gcc-tools-epoch1-automake
> Missing file: /opt/gcc-tools/epoch1/bin/aclocal-1.9 from package
> gcc-tools-epoch1-automake
> Missing file: /opt/gcc-tools/epoch1/bin/automake from package
> gcc-tools-epoch1-automake
> Missing file: /opt/gcc-tools/epoch1/bin/automake-1.9 from package
> gcc-tools-epoch1-automake
> Missing directory: /opt/gcc-tools/epoch1/share/ from package
> gcc-tools-epoch1-automake
> Missing directory: /opt/gcc-tools/epoch1/share/aclocal/ from package
> gcc-tools-epoch1-automake
> Missing file: /opt/gcc-tools/epoch1/share/aclocal/.keep-gcc-tools-epoch1-automake
> from package gcc-tools-epoch1-automake
> Missing file: /opt/gcc-tools/epoch1/share/aclocal/dirlist from package
> gcc-tools-epoch1-automake
> Missing directory: /opt/gcc-tools/epoch1/share/aclocal-1.9/ from
> package gcc-tools-epoch1-automake
> Missing file: /opt/gcc-tools/epoch1/share/aclocal-1.9/amversion.m4
> from package gcc-tools-epoch1-automake
> Missing file: /opt/gcc-tools/epoch1/share/aclocal-1.9/as.m4 from
> package gcc-tools-epoch1-automake
> Missing file: /opt/gcc-tools/epoch1/share/aclocal-1.9/auxdir.m4 from
> package gcc-tools-epoch1-automake
> Missing file: /opt/gcc-tools/epoch1/share/aclocal-1.9/ccstdc.m4 from
> package gcc-tools-epoch1-automake
> Missing file: /opt/gcc-tools/epoch1/share/aclocal-1.9/cond.m4 from
> package gcc-tools-epoch1-automake
> Missing file: /opt/gcc-tools/epoch1/share/aclocal-1.9/depend.m4 from
> package gcc-tools-epoch1-automake
> Missing file: /opt/gcc-tools/epoch1/share/aclocal-1.9/depout.m4 from
> package gcc-tools-epoch1-automake
> Missing file: /opt/gcc-tools/epoch1/share/aclocal-1.9/dmalloc.m4 from
> package gcc-tools-epoch1-automake
> Missing file: /opt/gcc-tools/epoch1/share/aclocal-1.9/gcj.m4 from
> package gcc-tools-epoch1-automake
> Missing file: /opt/gcc-tools/epoch1/share/aclocal-1.9/header.m4 from
> package gcc-tools-epoch1-automake
> Missing file: /opt/gcc-tools/epoch1/share/aclocal-1.9/init.m4 from
> package gcc-tools-epoch1-automake
> Missing file: /opt/gcc-tools/epoch1/share/aclocal-1.9/install-sh.m4
> from package gcc-tools-epoch1-automake
> Missing file: /opt/gcc-tools/epoch1/share/aclocal-1.9/lead-dot.m4 from
> package gcc-tools-epoch1-automake
> Missing file: /opt/gcc-tools/epoch1/share/aclocal-1.9/lex.m4 from
> package gcc-tools-epoch1-automake
> Missing file: /opt/gcc-tools/epoch1/share/aclocal-1.9/lispdir.m4 from
> package gcc-tools-epoch1-automake
> Missing file: /opt/gcc-tools/epoch1/share/aclocal-1.9/maintainer.m4
> from package gcc-tools-epoch1-automake
> Missing file: /opt/gcc-tools/epoch1/share/aclocal-1.9/make.m4 from
> package gcc-tools-epoch1-automake
> Missing file: /opt/gcc-tools/epoch1/share/aclocal-1.9/minuso.m4 from
> package gcc-tools-epoch1-automake
> Missing file: /opt/gcc-tools/epoch1/share/aclocal-1.9/missing.m4 from
> package gcc-tools-epoch1-automake
> Missing file: /opt/gcc-tools/epoch1/share/aclocal-1.9/mkdirp.m4 from
> package gcc-tools-epoch1-automake
> Missing file: /opt/gcc-tools/epoch1/share/aclocal-1.9/multi.m4 from
> package gcc-tools-epoch1-automake
> Missing file: /opt/gcc-tools/epoch1/share/aclocal-1.9/obsol-gt.m4 from
> package gcc-tools-epoch1-automake
> Missing file: /opt/gcc-tools/epoch1/share/aclocal-1.9/obsol-lt.m4 from
> package gcc-tools-epoch1-automake
> Missing file: /opt/gcc-tools/epoch1/share/aclocal-1.9/obsolete.m4 from
> package gcc-tools-epoch1-automake
> Missing file: /opt/gcc-tools/epoch1/share/aclocal-1.9/options.m4 from
> package gcc-tools-epoch1-automake
> Missing file: /opt/gcc-tools/epoch1/share/aclocal-1.9/protos.m4 from
> package gcc-tools-epoch1-automake
> Missing file: /opt/gcc-tools/epoch1/share/aclocal-1.9/python.m4 from
> package gcc-tools-epoch1-automake
> Missing file: /opt/gcc-tools/epoch1/share/aclocal-1.9/regex.m4 from
> package gcc-tools-epoch1-automake
> Missing file: /opt/gcc-tools/epoch1/share/aclocal-1.9/runlog.m4 from
> package gcc-tools-epoch1-automake
> Missing file: /opt/gcc-tools/epoch1/share/aclocal-1.9/sanity.m4 from
> package gcc-tools-epoch1-automake
> Missing file: /opt/gcc-tools/epoch1/share/aclocal-1.9/strip.m4 from
> package gcc-tools-epoch1-automake
> Missing file: /opt/gcc-tools/epoch1/share/aclocal-1.9/tar.m4 from
> package gcc-tools-epoch1-automake
> Missing directory: /opt/gcc-tools/epoch1/share/automake-1.9/ from
> package gcc-tools-epoch1-automake
> Missing file: /opt/gcc-tools/epoch1/share/automake-1.9/acinstall from
> package gcc-tools-epoch1-automake
> Missing directory: /opt/gcc-tools/epoch1/share/automake-1.9/am/ from
> package gcc-tools-epoch1-automake
> Missing file: /opt/gcc-tools/epoch1/share/automake-1.9/am/ansi2knr.am
> from package gcc-tools-epoch1-automake
> Missing file: /opt/gcc-tools/epoch1/share/automake-1.9/am/check.am
> from package gcc-tools-epoch1-automake
> Missing file: /opt/gcc-tools/epoch1/share/automake-1.9/am/clean-hdr.am
> from package gcc-tools-epoch1-automake
> Missing file: /opt/gcc-tools/epoch1/share/automake-1.9/am/clean.am
> from package gcc-tools-epoch1-automake
> Missing file: /opt/gcc-tools/epoch1/share/automake-1.9/am/compile.am
> from package gcc-tools-epoch1-automake
> Missing file: /opt/gcc-tools/epoch1/share/automake-1.9/am/configure.am
> from package gcc-tools-epoch1-automake
> Missing file: /opt/gcc-tools/epoch1/share/automake-1.9/am/data.am from
> package gcc-tools-epoch1-automake
> Missing file: /opt/gcc-tools/epoch1/share/automake-1.9/am/dejagnu.am
> from package gcc-tools-epoch1-automake
> Missing file: /opt/gcc-tools/epoch1/share/automake-1.9/am/depend.am
> from package gcc-tools-epoch1-automake
> Missing file: /opt/gcc-tools/epoch1/share/automake-1.9/am/depend2.am
> from package gcc-tools-epoch1-automake
> Missing file: /opt/gcc-tools/epoch1/share/automake-1.9/am/distdir.am
> from package gcc-tools-epoch1-automake
> Missing file: /opt/gcc-tools/epoch1/share/automake-1.9/am/footer.am
> from package gcc-tools-epoch1-automake
> Missing file: /opt/gcc-tools/epoch1/share/automake-1.9/am/header-vars.am
> from package gcc-tools-epoch1-automake
> Missing file: /opt/gcc-tools/epoch1/share/automake-1.9/am/header.am
> from package gcc-tools-epoch1-automake
> Missing file: /opt/gcc-tools/epoch1/share/automake-1.9/am/inst-vars.am
> from package gcc-tools-epoch1-automake
> Missing file: /opt/gcc-tools/epoch1/share/automake-1.9/am/install.am
> from package gcc-tools-epoch1-automake
> Missing file: /opt/gcc-tools/epoch1/share/automake-1.9/am/java.am from
> package gcc-tools-epoch1-automake
> Missing file: /opt/gcc-tools/epoch1/share/automake-1.9/am/lang-compile.am
> from package gcc-tools-epoch1-automake
> Missing file: /opt/gcc-tools/epoch1/share/automake-1.9/am/lex.am from
> package gcc-tools-epoch1-automake
> Missing file: /opt/gcc-tools/epoch1/share/automake-1.9/am/library.am
> from package gcc-tools-epoch1-automake
> Missing file: /opt/gcc-tools/epoch1/share/automake-1.9/am/libs.am from
> package gcc-tools-epoch1-automake
> Missing file: /opt/gcc-tools/epoch1/share/automake-1.9/am/libtool.am
> from package gcc-tools-epoch1-automake
> Missing file: /opt/gcc-tools/epoch1/share/automake-1.9/am/lisp.am from
> package gcc-tools-epoch1-automake
> Missing file: /opt/gcc-tools/epoch1/share/automake-1.9/am/ltlib.am
> from package gcc-tools-epoch1-automake
> Missing file: /opt/gcc-tools/epoch1/share/automake-1.9/am/ltlibrary.am
> from package gcc-tools-epoch1-automake
> Missing file: /opt/gcc-tools/epoch1/share/automake-1.9/am/mans-vars.am
> from package gcc-tools-epoch1-automake
> Missing file: /opt/gcc-tools/epoch1/share/automake-1.9/am/mans.am from
> package gcc-tools-epoch1-automake
> Missing file: /opt/gcc-tools/epoch1/share/automake-1.9/am/multilib.am
> from package gcc-tools-epoch1-automake
> Missing file: /opt/gcc-tools/epoch1/share/automake-1.9/am/program.am
> from package gcc-tools-epoch1-automake
> Missing file: /opt/gcc-tools/epoch1/share/automake-1.9/am/progs.am
> from package gcc-tools-epoch1-automake
> Missing file: /opt/gcc-tools/epoch1/share/automake-1.9/am/python.am
> from package gcc-tools-epoch1-automake
> Missing file: /opt/gcc-tools/epoch1/share/automake-1.9/am/remake-hdr.am
> from package gcc-tools-epoch1-automake
> Missing file: /opt/gcc-tools/epoch1/share/automake-1.9/am/scripts.am
> from package gcc-tools-epoch1-automake
> Missing file: /opt/gcc-tools/epoch1/share/automake-1.9/am/subdirs.am
> from package gcc-tools-epoch1-automake
> Missing file: /opt/gcc-tools/epoch1/share/automake-1.9/am/tags.am from
> package gcc-tools-epoch1-automake
> Missing file: /opt/gcc-tools/epoch1/share/automake-1.9/am/texi-vers.am
> from package gcc-tools-epoch1-automake
> Missing file: /opt/gcc-tools/epoch1/share/automake-1.9/am/texibuild.am
> from package gcc-tools-epoch1-automake
> Missing file: /opt/gcc-tools/epoch1/share/automake-1.9/am/texinfos.am
> from package gcc-tools-epoch1-automake
> Missing file: /opt/gcc-tools/epoch1/share/automake-1.9/am/yacc.am from
> package gcc-tools-epoch1-automake
> Missing file: /opt/gcc-tools/epoch1/share/automake-1.9/ansi2knr.1 from
> package gcc-tools-epoch1-automake
> Missing file: /opt/gcc-tools/epoch1/share/automake-1.9/ansi2knr.c from
> package gcc-tools-epoch1-automake
> Missing directory: /opt/gcc-tools/epoch1/share/automake-1.9/Automake/
> from package gcc-tools-epoch1-automake
> Missing file: /opt/gcc-tools/epoch1/share/automake-1.9/Automake/ChannelDefs.pm
> from package gcc-tools-epoch1-automake
> Missing file: /opt/gcc-tools/epoch1/share/automake-1.9/Automake/Channels.pm
> from package gcc-tools-epoch1-automake
> Missing file: /opt/gcc-tools/epoch1/share/automake-1.9/Automake/Condition.pm
> from package gcc-tools-epoch1-automake
> Missing file: /opt/gcc-tools/epoch1/share/automake-1.9/Automake/Config.pm
> from package gcc-tools-epoch1-automake
> Missing file: /opt/gcc-tools/epoch1/share/automake-1.9/Automake/Configure_ac.pm
> from package gcc-tools-epoch1-automake
> Missing file: /opt/gcc-tools/epoch1/share/automake-1.9/Automake/DisjConditions.pm
> from package gcc-tools-epoch1-automake
> Missing file: /opt/gcc-tools/epoch1/share/automake-1.9/Automake/FileUtils.pm
> from package gcc-tools-epoch1-automake
> Missing file: /opt/gcc-tools/epoch1/share/automake-1.9/Automake/General.pm
> from package gcc-tools-epoch1-automake
> Missing file: /opt/gcc-tools/epoch1/share/automake-1.9/Automake/Item.pm
> from package gcc-tools-epoch1-automake
> Missing file: /opt/gcc-tools/epoch1/share/automake-1.9/Automake/ItemDef.pm
> from package gcc-tools-epoch1-automake
> Missing file: /opt/gcc-tools/epoch1/share/automake-1.9/Automake/Location.pm
> from package gcc-tools-epoch1-automake
> Missing file: /opt/gcc-tools/epoch1/share/automake-1.9/Automake/Options.pm
> from package gcc-tools-epoch1-automake
> Missing file: /opt/gcc-tools/epoch1/share/automake-1.9/Automake/Rule.pm
> from package gcc-tools-epoch1-automake
> Missing file: /opt/gcc-tools/epoch1/share/automake-1.9/Automake/RuleDef.pm
> from package gcc-tools-epoch1-automake
> Missing file: /opt/gcc-tools/epoch1/share/automake-1.9/Automake/Struct.pm
> from package gcc-tools-epoch1-automake
> Missing file: /opt/gcc-tools/epoch1/share/automake-1.9/Automake/VarDef.pm
> from package gcc-tools-epoch1-automake
> Missing file: /opt/gcc-tools/epoch1/share/automake-1.9/Automake/Variable.pm
> from package gcc-tools-epoch1-automake
> Missing file: /opt/gcc-tools/epoch1/share/automake-1.9/Automake/Version.pm
> from package gcc-tools-epoch1-automake
> Missing file: /opt/gcc-tools/epoch1/share/automake-1.9/Automake/Wrap.pm
> from package gcc-tools-epoch1-automake
> Missing file: /opt/gcc-tools/epoch1/share/automake-1.9/Automake/XFile.pm
> from package gcc-tools-epoch1-automake
> Missing file: /opt/gcc-tools/epoch1/share/automake-1.9/compile from
> package gcc-tools-epoch1-automake
> Missing file: /opt/gcc-tools/epoch1/share/automake-1.9/config-ml.in
> from package gcc-tools-epoch1-automake
> Missing file: /opt/gcc-tools/epoch1/share/automake-1.9/config.guess
> from package gcc-tools-epoch1-automake
> Missing file: /opt/gcc-tools/epoch1/share/automake-1.9/config.sub from
> package gcc-tools-epoch1-automake
> Missing file: /opt/gcc-tools/epoch1/share/automake-1.9/COPYING from
> package gcc-tools-epoch1-automake
> Missing file: /opt/gcc-tools/epoch1/share/automake-1.9/depcomp from
> package gcc-tools-epoch1-automake
> Missing file: /opt/gcc-tools/epoch1/share/automake-1.9/elisp-comp from
> package gcc-tools-epoch1-automake
> Missing file: /opt/gcc-tools/epoch1/share/automake-1.9/INSTALL from
> package gcc-tools-epoch1-automake
> Missing file: /opt/gcc-tools/epoch1/share/automake-1.9/install-sh from
> package gcc-tools-epoch1-automake
> Missing file: /opt/gcc-tools/epoch1/share/automake-1.9/mdate-sh from
> package gcc-tools-epoch1-automake
> Missing file: /opt/gcc-tools/epoch1/share/automake-1.9/missing from
> package gcc-tools-epoch1-automake
> Missing file: /opt/gcc-tools/epoch1/share/automake-1.9/mkinstalldirs
> from package gcc-tools-epoch1-automake
> Missing file: /opt/gcc-tools/epoch1/share/automake-1.9/py-compile from
> package gcc-tools-epoch1-automake
> Missing file: /opt/gcc-tools/epoch1/share/automake-1.9/symlink-tree
> from package gcc-tools-epoch1-automake
> Missing file: /opt/gcc-tools/epoch1/share/automake-1.9/texinfo.tex
> from package gcc-tools-epoch1-automake
> Missing file: /opt/gcc-tools/epoch1/share/automake-1.9/ylwrap from
> package gcc-tools-epoch1-automake
> Missing directory: /opt/gcc-tools/epoch1/share/info/ from package
> gcc-tools-epoch1-automake
> Missing file: /opt/gcc-tools/epoch1/share/info/automake1.9.info from
> package gcc-tools-epoch1-automake
> Missing file: /opt/gcc-tools/epoch1/share/info/automake1.9.info-1 from
> package gcc-tools-epoch1-automake
> Missing file: /opt/gcc-tools/epoch1/share/info/automake1.9.info-2 from
> package gcc-tools-epoch1-automake
> gcc-tools-epoch1-automake               1.9.6-2                      Incomplete
> Missing directory: /opt/ from package gcc-tools-epoch2-autoconf
> Missing directory: /opt/gcc-tools/ from package gcc-tools-epoch2-autoconf
> Missing directory: /opt/gcc-tools/bin/ from package gcc-tools-epoch2-autoconf
> Missing file: /opt/gcc-tools/bin/autoconf-2.64 from package
> gcc-tools-epoch2-autoconf
> Missing file: /opt/gcc-tools/bin/autoheader-2.64 from package
> gcc-tools-epoch2-autoconf
> Missing file: /opt/gcc-tools/bin/autom4te-2.64 from package
> gcc-tools-epoch2-autoconf
> Missing file: /opt/gcc-tools/bin/autoreconf-2.64 from package
> gcc-tools-epoch2-autoconf
> Missing file: /opt/gcc-tools/bin/autoscan-2.64 from package
> gcc-tools-epoch2-autoconf
> Missing file: /opt/gcc-tools/bin/autoupdate-2.64 from package
> gcc-tools-epoch2-autoconf
> Missing file: /opt/gcc-tools/bin/ifnames-2.64 from package
> gcc-tools-epoch2-autoconf
> Missing directory: /opt/gcc-tools/epoch2/ from package gcc-tools-epoch2-autoconf
> Missing directory: /opt/gcc-tools/epoch2/bin/ from package
> gcc-tools-epoch2-autoconf
> Missing file: /opt/gcc-tools/epoch2/bin/autoconf from package
> gcc-tools-epoch2-autoconf
> Missing file: /opt/gcc-tools/epoch2/bin/autoconf-2.64 from package
> gcc-tools-epoch2-autoconf
> Missing file: /opt/gcc-tools/epoch2/bin/autoheader from package
> gcc-tools-epoch2-autoconf
> Missing file: /opt/gcc-tools/epoch2/bin/autoheader-2.64 from package
> gcc-tools-epoch2-autoconf
> Missing file: /opt/gcc-tools/epoch2/bin/autom4te from package
> gcc-tools-epoch2-autoconf
> Missing file: /opt/gcc-tools/epoch2/bin/autom4te-2.64 from package
> gcc-tools-epoch2-autoconf
> Missing file: /opt/gcc-tools/epoch2/bin/autoreconf from package
> gcc-tools-epoch2-autoconf
> Missing file: /opt/gcc-tools/epoch2/bin/autoreconf-2.64 from package
> gcc-tools-epoch2-autoconf
> Missing file: /opt/gcc-tools/epoch2/bin/autoscan from package
> gcc-tools-epoch2-autoconf
> Missing file: /opt/gcc-tools/epoch2/bin/autoscan-2.64 from package
> gcc-tools-epoch2-autoconf
> Missing file: /opt/gcc-tools/epoch2/bin/autoupdate from package
> gcc-tools-epoch2-autoconf
> Missing file: /opt/gcc-tools/epoch2/bin/autoupdate-2.64 from package
> gcc-tools-epoch2-autoconf
> Missing file: /opt/gcc-tools/epoch2/bin/ifnames from package
> gcc-tools-epoch2-autoconf
> Missing file: /opt/gcc-tools/epoch2/bin/ifnames-2.64 from package
> gcc-tools-epoch2-autoconf
> Missing directory: /opt/gcc-tools/epoch2/share/ from package
> gcc-tools-epoch2-autoconf
> Missing directory: /opt/gcc-tools/epoch2/share/autoconf/ from package
> gcc-tools-epoch2-autoconf
> Missing directory: /opt/gcc-tools/epoch2/share/autoconf/autoconf/ from
> package gcc-tools-epoch2-autoconf
> Missing file: /opt/gcc-tools/epoch2/share/autoconf/autoconf/autoconf.m4
> from package gcc-tools-epoch2-autoconf
> Missing file: /opt/gcc-tools/epoch2/share/autoconf/autoconf/autoconf.m4f
> from package gcc-tools-epoch2-autoconf
> Missing file: /opt/gcc-tools/epoch2/share/autoconf/autoconf/autoheader.m4
> from package gcc-tools-epoch2-autoconf
> Missing file: /opt/gcc-tools/epoch2/share/autoconf/autoconf/autoscan.m4
> from package gcc-tools-epoch2-autoconf
> Missing file: /opt/gcc-tools/epoch2/share/autoconf/autoconf/autotest.m4
> from package gcc-tools-epoch2-autoconf
> Missing file: /opt/gcc-tools/epoch2/share/autoconf/autoconf/autoupdate.m4
> from package gcc-tools-epoch2-autoconf
> Missing file: /opt/gcc-tools/epoch2/share/autoconf/autoconf/c.m4 from
> package gcc-tools-epoch2-autoconf
> Missing file: /opt/gcc-tools/epoch2/share/autoconf/autoconf/erlang.m4
> from package gcc-tools-epoch2-autoconf
> Missing file: /opt/gcc-tools/epoch2/share/autoconf/autoconf/fortran.m4
> from package gcc-tools-epoch2-autoconf
> Missing file: /opt/gcc-tools/epoch2/share/autoconf/autoconf/functions.m4
> from package gcc-tools-epoch2-autoconf
> Missing file: /opt/gcc-tools/epoch2/share/autoconf/autoconf/general.m4
> from package gcc-tools-epoch2-autoconf
> Missing file: /opt/gcc-tools/epoch2/share/autoconf/autoconf/headers.m4
> from package gcc-tools-epoch2-autoconf
> Missing file: /opt/gcc-tools/epoch2/share/autoconf/autoconf/lang.m4
> from package gcc-tools-epoch2-autoconf
> Missing file: /opt/gcc-tools/epoch2/share/autoconf/autoconf/libs.m4
> from package gcc-tools-epoch2-autoconf
> Missing file: /opt/gcc-tools/epoch2/share/autoconf/autoconf/oldnames.m4
> from package gcc-tools-epoch2-autoconf
> Missing file: /opt/gcc-tools/epoch2/share/autoconf/autoconf/programs.m4
> from package gcc-tools-epoch2-autoconf
> Missing file: /opt/gcc-tools/epoch2/share/autoconf/autoconf/specific.m4
> from package gcc-tools-epoch2-autoconf
> Missing file: /opt/gcc-tools/epoch2/share/autoconf/autoconf/status.m4
> from package gcc-tools-epoch2-autoconf
> Missing file: /opt/gcc-tools/epoch2/share/autoconf/autoconf/types.m4
> from package gcc-tools-epoch2-autoconf
> Missing directory: /opt/gcc-tools/epoch2/share/autoconf/Autom4te/ from
> package gcc-tools-epoch2-autoconf
> Missing file: /opt/gcc-tools/epoch2/share/autoconf/Autom4te/C4che.pm
> from package gcc-tools-epoch2-autoconf
> Missing file: /opt/gcc-tools/epoch2/share/autoconf/Autom4te/ChannelDefs.pm
> from package gcc-tools-epoch2-autoconf
> Missing file: /opt/gcc-tools/epoch2/share/autoconf/Autom4te/Channels.pm
> from package gcc-tools-epoch2-autoconf
> Missing file: /opt/gcc-tools/epoch2/share/autoconf/Autom4te/Configure_ac.pm
> from package gcc-tools-epoch2-autoconf
> Missing file: /opt/gcc-tools/epoch2/share/autoconf/Autom4te/FileUtils.pm
> from package gcc-tools-epoch2-autoconf
> Missing file: /opt/gcc-tools/epoch2/share/autoconf/Autom4te/General.pm
> from package gcc-tools-epoch2-autoconf
> Missing file: /opt/gcc-tools/epoch2/share/autoconf/Autom4te/Request.pm
> from package gcc-tools-epoch2-autoconf
> Missing file: /opt/gcc-tools/epoch2/share/autoconf/Autom4te/Struct.pm
> from package gcc-tools-epoch2-autoconf
> Missing file: /opt/gcc-tools/epoch2/share/autoconf/Autom4te/XFile.pm
> from package gcc-tools-epoch2-autoconf
> Missing file: /opt/gcc-tools/epoch2/share/autoconf/autom4te.cfg from
> package gcc-tools-epoch2-autoconf
> Missing directory: /opt/gcc-tools/epoch2/share/autoconf/autoscan/ from
> package gcc-tools-epoch2-autoconf
> Missing file: /opt/gcc-tools/epoch2/share/autoconf/autoscan/autoscan.list
> from package gcc-tools-epoch2-autoconf
> Missing directory: /opt/gcc-tools/epoch2/share/autoconf/autotest/ from
> package gcc-tools-epoch2-autoconf
> Missing file: /opt/gcc-tools/epoch2/share/autoconf/autotest/autotest.m4
> from package gcc-tools-epoch2-autoconf
> Missing file: /opt/gcc-tools/epoch2/share/autoconf/autotest/autotest.m4f
> from package gcc-tools-epoch2-autoconf
> Missing file: /opt/gcc-tools/epoch2/share/autoconf/autotest/general.m4
> from package gcc-tools-epoch2-autoconf
> Missing file: /opt/gcc-tools/epoch2/share/autoconf/INSTALL from
> package gcc-tools-epoch2-autoconf
> Missing directory: /opt/gcc-tools/epoch2/share/autoconf/m4sugar/ from
> package gcc-tools-epoch2-autoconf
> Missing file: /opt/gcc-tools/epoch2/share/autoconf/m4sugar/foreach.m4
> from package gcc-tools-epoch2-autoconf
> Missing file: /opt/gcc-tools/epoch2/share/autoconf/m4sugar/m4sh.m4
> from package gcc-tools-epoch2-autoconf
> Missing file: /opt/gcc-tools/epoch2/share/autoconf/m4sugar/m4sh.m4f
> from package gcc-tools-epoch2-autoconf
> Missing file: /opt/gcc-tools/epoch2/share/autoconf/m4sugar/m4sugar.m4
> from package gcc-tools-epoch2-autoconf
> Missing file: /opt/gcc-tools/epoch2/share/autoconf/m4sugar/m4sugar.m4f
> from package gcc-tools-epoch2-autoconf
> Missing file: /opt/gcc-tools/epoch2/share/autoconf/m4sugar/version.m4
> from package gcc-tools-epoch2-autoconf
> Missing directory: /opt/gcc-tools/epoch2/share/info/ from package
> gcc-tools-epoch2-autoconf
> Missing file: /opt/gcc-tools/epoch2/share/info/autoconf2.64.info from
> package gcc-tools-epoch2-autoconf
> Missing directory: /opt/gcc-tools/epoch2/share/man/ from package
> gcc-tools-epoch2-autoconf
> Missing directory: /opt/gcc-tools/epoch2/share/man/man1/ from package
> gcc-tools-epoch2-autoconf
> Missing file: /opt/gcc-tools/epoch2/share/man/man1/autoconf-2.64.1
> from package gcc-tools-epoch2-autoconf
> Missing file: /opt/gcc-tools/epoch2/share/man/man1/autoheader-2.64.1
> from package gcc-tools-epoch2-autoconf
> Missing file: /opt/gcc-tools/epoch2/share/man/man1/autom4te-2.64.1
> from package gcc-tools-epoch2-autoconf
> Missing file: /opt/gcc-tools/epoch2/share/man/man1/autoreconf-2.64.1
> from package gcc-tools-epoch2-autoconf
> Missing file: /opt/gcc-tools/epoch2/share/man/man1/autoscan-2.64.1
> from package gcc-tools-epoch2-autoconf
> Missing file: /opt/gcc-tools/epoch2/share/man/man1/autoupdate-2.64.1
> from package gcc-tools-epoch2-autoconf
> Missing file: /opt/gcc-tools/epoch2/share/man/man1/config.guess-2.64.1
> from package gcc-tools-epoch2-autoconf
> Missing file: /opt/gcc-tools/epoch2/share/man/man1/config.sub-2.64.1
> from package gcc-tools-epoch2-autoconf
> Missing file: /opt/gcc-tools/epoch2/share/man/man1/ifnames-2.64.1 from
> package gcc-tools-epoch2-autoconf
> gcc-tools-epoch2-autoconf               2.64-2                       Incomplete
> Missing directory: /opt/ from package gcc-tools-epoch2-automake
> Missing directory: /opt/gcc-tools/ from package gcc-tools-epoch2-automake
> Missing directory: /opt/gcc-tools/bin/ from package gcc-tools-epoch2-automake
> Missing file: /opt/gcc-tools/bin/aclocal-1.11 from package
> gcc-tools-epoch2-automake
> Missing file: /opt/gcc-tools/bin/automake-1.11 from package
> gcc-tools-epoch2-automake
> Missing directory: /opt/gcc-tools/epoch2/ from package gcc-tools-epoch2-automake
> Missing directory: /opt/gcc-tools/epoch2/bin/ from package
> gcc-tools-epoch2-automake
> Missing file: /opt/gcc-tools/epoch2/bin/aclocal from package
> gcc-tools-epoch2-automake
> Missing file: /opt/gcc-tools/epoch2/bin/aclocal-1.11 from package
> gcc-tools-epoch2-automake
> Missing file: /opt/gcc-tools/epoch2/bin/automake from package
> gcc-tools-epoch2-automake
> Missing file: /opt/gcc-tools/epoch2/bin/automake-1.11 from package
> gcc-tools-epoch2-automake
> Missing directory: /opt/gcc-tools/epoch2/share/ from package
> gcc-tools-epoch2-automake
> Missing directory: /opt/gcc-tools/epoch2/share/aclocal/ from package
> gcc-tools-epoch2-automake
> Missing file: /opt/gcc-tools/epoch2/share/aclocal/.keep-gcc-tools-epoch2-automake
> from package gcc-tools-epoch2-automake
> Missing file: /opt/gcc-tools/epoch2/share/aclocal/dirlist from package
> gcc-tools-epoch2-automake
> Missing directory: /opt/gcc-tools/epoch2/share/aclocal-1.11/ from
> package gcc-tools-epoch2-automake
> Missing file: /opt/gcc-tools/epoch2/share/aclocal-1.11/amversion.m4
> from package gcc-tools-epoch2-automake
> Missing file: /opt/gcc-tools/epoch2/share/aclocal-1.11/ar-lib.m4 from
> package gcc-tools-epoch2-automake
> Missing file: /opt/gcc-tools/epoch2/share/aclocal-1.11/as.m4 from
> package gcc-tools-epoch2-automake
> Missing file: /opt/gcc-tools/epoch2/share/aclocal-1.11/auxdir.m4 from
> package gcc-tools-epoch2-automake
> Missing file: /opt/gcc-tools/epoch2/share/aclocal-1.11/ccstdc.m4 from
> package gcc-tools-epoch2-automake
> Missing file: /opt/gcc-tools/epoch2/share/aclocal-1.11/cond-if.m4 from
> package gcc-tools-epoch2-automake
> Missing file: /opt/gcc-tools/epoch2/share/aclocal-1.11/cond.m4 from
> package gcc-tools-epoch2-automake
> Missing file: /opt/gcc-tools/epoch2/share/aclocal-1.11/depend.m4 from
> package gcc-tools-epoch2-automake
> Missing file: /opt/gcc-tools/epoch2/share/aclocal-1.11/depout.m4 from
> package gcc-tools-epoch2-automake
> Missing file: /opt/gcc-tools/epoch2/share/aclocal-1.11/dmalloc.m4 from
> package gcc-tools-epoch2-automake
> Missing file: /opt/gcc-tools/epoch2/share/aclocal-1.11/gcj.m4 from
> package gcc-tools-epoch2-automake
> Missing file: /opt/gcc-tools/epoch2/share/aclocal-1.11/header.m4 from
> package gcc-tools-epoch2-automake
> Missing file: /opt/gcc-tools/epoch2/share/aclocal-1.11/init.m4 from
> package gcc-tools-epoch2-automake
> Missing file: /opt/gcc-tools/epoch2/share/aclocal-1.11/install-sh.m4
> from package gcc-tools-epoch2-automake
> Missing file: /opt/gcc-tools/epoch2/share/aclocal-1.11/lead-dot.m4
> from package gcc-tools-epoch2-automake
> Missing file: /opt/gcc-tools/epoch2/share/aclocal-1.11/lex.m4 from
> package gcc-tools-epoch2-automake
> Missing file: /opt/gcc-tools/epoch2/share/aclocal-1.11/lispdir.m4 from
> package gcc-tools-epoch2-automake
> Missing file: /opt/gcc-tools/epoch2/share/aclocal-1.11/maintainer.m4
> from package gcc-tools-epoch2-automake
> Missing file: /opt/gcc-tools/epoch2/share/aclocal-1.11/make.m4 from
> package gcc-tools-epoch2-automake
> Missing file: /opt/gcc-tools/epoch2/share/aclocal-1.11/minuso.m4 from
> package gcc-tools-epoch2-automake
> Missing file: /opt/gcc-tools/epoch2/share/aclocal-1.11/missing.m4 from
> package gcc-tools-epoch2-automake
> Missing file: /opt/gcc-tools/epoch2/share/aclocal-1.11/mkdirp.m4 from
> package gcc-tools-epoch2-automake
> Missing file: /opt/gcc-tools/epoch2/share/aclocal-1.11/multi.m4 from
> package gcc-tools-epoch2-automake
> Missing file: /opt/gcc-tools/epoch2/share/aclocal-1.11/obsol-gt.m4
> from package gcc-tools-epoch2-automake
> Missing file: /opt/gcc-tools/epoch2/share/aclocal-1.11/obsol-lt.m4
> from package gcc-tools-epoch2-automake
> Missing file: /opt/gcc-tools/epoch2/share/aclocal-1.11/obsolete.m4
> from package gcc-tools-epoch2-automake
> Missing file: /opt/gcc-tools/epoch2/share/aclocal-1.11/options.m4 from
> package gcc-tools-epoch2-automake
> Missing file: /opt/gcc-tools/epoch2/share/aclocal-1.11/protos.m4 from
> package gcc-tools-epoch2-automake
> Missing file: /opt/gcc-tools/epoch2/share/aclocal-1.11/python.m4 from
> package gcc-tools-epoch2-automake
> Missing file: /opt/gcc-tools/epoch2/share/aclocal-1.11/regex.m4 from
> package gcc-tools-epoch2-automake
> Missing file: /opt/gcc-tools/epoch2/share/aclocal-1.11/runlog.m4 from
> package gcc-tools-epoch2-automake
> Missing file: /opt/gcc-tools/epoch2/share/aclocal-1.11/sanity.m4 from
> package gcc-tools-epoch2-automake
> Missing file: /opt/gcc-tools/epoch2/share/aclocal-1.11/silent.m4 from
> package gcc-tools-epoch2-automake
> Missing file: /opt/gcc-tools/epoch2/share/aclocal-1.11/strip.m4 from
> package gcc-tools-epoch2-automake
> Missing file: /opt/gcc-tools/epoch2/share/aclocal-1.11/substnot.m4
> from package gcc-tools-epoch2-automake
> Missing file: /opt/gcc-tools/epoch2/share/aclocal-1.11/tar.m4 from
> package gcc-tools-epoch2-automake
> Missing file: /opt/gcc-tools/epoch2/share/aclocal-1.11/upc.m4 from
> package gcc-tools-epoch2-automake
> Missing file: /opt/gcc-tools/epoch2/share/aclocal-1.11/vala.m4 from
> package gcc-tools-epoch2-automake
> Missing directory: /opt/gcc-tools/epoch2/share/automake-1.11/ from
> package gcc-tools-epoch2-automake
> Missing file: /opt/gcc-tools/epoch2/share/automake-1.11/acinstall from
> package gcc-tools-epoch2-automake
> Missing directory: /opt/gcc-tools/epoch2/share/automake-1.11/am/ from
> package gcc-tools-epoch2-automake
> Missing file: /opt/gcc-tools/epoch2/share/automake-1.11/am/ansi2knr.am
> from package gcc-tools-epoch2-automake
> Missing file: /opt/gcc-tools/epoch2/share/automake-1.11/am/check-html.am
> from package gcc-tools-epoch2-automake
> Missing file: /opt/gcc-tools/epoch2/share/automake-1.11/am/check.am
> from package gcc-tools-epoch2-automake
> Missing file: /opt/gcc-tools/epoch2/share/automake-1.11/am/check2.am
> from package gcc-tools-epoch2-automake
> Missing file: /opt/gcc-tools/epoch2/share/automake-1.11/am/clean-hdr.am
> from package gcc-tools-epoch2-automake
> Missing file: /opt/gcc-tools/epoch2/share/automake-1.11/am/clean.am
> from package gcc-tools-epoch2-automake
> Missing file: /opt/gcc-tools/epoch2/share/automake-1.11/am/compile.am
> from package gcc-tools-epoch2-automake
> Missing file: /opt/gcc-tools/epoch2/share/automake-1.11/am/configure.am
> from package gcc-tools-epoch2-automake
> Missing file: /opt/gcc-tools/epoch2/share/automake-1.11/am/data.am
> from package gcc-tools-epoch2-automake
> Missing file: /opt/gcc-tools/epoch2/share/automake-1.11/am/dejagnu.am
> from package gcc-tools-epoch2-automake
> Missing file: /opt/gcc-tools/epoch2/share/automake-1.11/am/depend.am
> from package gcc-tools-epoch2-automake
> Missing file: /opt/gcc-tools/epoch2/share/automake-1.11/am/depend2.am
> from package gcc-tools-epoch2-automake
> Missing file: /opt/gcc-tools/epoch2/share/automake-1.11/am/distdir.am
> from package gcc-tools-epoch2-automake
> Missing file: /opt/gcc-tools/epoch2/share/automake-1.11/am/footer.am
> from package gcc-tools-epoch2-automake
> Missing file: /opt/gcc-tools/epoch2/share/automake-1.11/am/header-vars.am
> from package gcc-tools-epoch2-automake
> Missing file: /opt/gcc-tools/epoch2/share/automake-1.11/am/header.am
> from package gcc-tools-epoch2-automake
> Missing file: /opt/gcc-tools/epoch2/share/automake-1.11/am/inst-vars.am
> from package gcc-tools-epoch2-automake
> Missing file: /opt/gcc-tools/epoch2/share/automake-1.11/am/install.am
> from package gcc-tools-epoch2-automake
> Missing file: /opt/gcc-tools/epoch2/share/automake-1.11/am/java.am
> from package gcc-tools-epoch2-automake
> Missing file: /opt/gcc-tools/epoch2/share/automake-1.11/am/lang-compile.am
> from package gcc-tools-epoch2-automake
> Missing file: /opt/gcc-tools/epoch2/share/automake-1.11/am/lex.am from
> package gcc-tools-epoch2-automake
> Missing file: /opt/gcc-tools/epoch2/share/automake-1.11/am/library.am
> from package gcc-tools-epoch2-automake
> Missing file: /opt/gcc-tools/epoch2/share/automake-1.11/am/libs.am
> from package gcc-tools-epoch2-automake
> Missing file: /opt/gcc-tools/epoch2/share/automake-1.11/am/libtool.am
> from package gcc-tools-epoch2-automake
> Missing file: /opt/gcc-tools/epoch2/share/automake-1.11/am/lisp.am
> from package gcc-tools-epoch2-automake
> Missing file: /opt/gcc-tools/epoch2/share/automake-1.11/am/ltlib.am
> from package gcc-tools-epoch2-automake
> Missing file: /opt/gcc-tools/epoch2/share/automake-1.11/am/ltlibrary.am
> from package gcc-tools-epoch2-automake
> Missing file: /opt/gcc-tools/epoch2/share/automake-1.11/am/mans-vars.am
> from package gcc-tools-epoch2-automake
> Missing file: /opt/gcc-tools/epoch2/share/automake-1.11/am/mans.am
> from package gcc-tools-epoch2-automake
> Missing file: /opt/gcc-tools/epoch2/share/automake-1.11/am/multilib.am
> from package gcc-tools-epoch2-automake
> Missing file: /opt/gcc-tools/epoch2/share/automake-1.11/am/program.am
> from package gcc-tools-epoch2-automake
> Missing file: /opt/gcc-tools/epoch2/share/automake-1.11/am/progs.am
> from package gcc-tools-epoch2-automake
> Missing file: /opt/gcc-tools/epoch2/share/automake-1.11/am/python.am
> from package gcc-tools-epoch2-automake
> Missing file: /opt/gcc-tools/epoch2/share/automake-1.11/am/remake-hdr.am
> from package gcc-tools-epoch2-automake
> Missing file: /opt/gcc-tools/epoch2/share/automake-1.11/am/scripts.am
> from package gcc-tools-epoch2-automake
> Missing file: /opt/gcc-tools/epoch2/share/automake-1.11/am/subdirs.am
> from package gcc-tools-epoch2-automake
> Missing file: /opt/gcc-tools/epoch2/share/automake-1.11/am/tags.am
> from package gcc-tools-epoch2-automake
> Missing file: /opt/gcc-tools/epoch2/share/automake-1.11/am/texi-vers.am
> from package gcc-tools-epoch2-automake
> Missing file: /opt/gcc-tools/epoch2/share/automake-1.11/am/texibuild.am
> from package gcc-tools-epoch2-automake
> Missing file: /opt/gcc-tools/epoch2/share/automake-1.11/am/texinfos.am
> from package gcc-tools-epoch2-automake
> Missing file: /opt/gcc-tools/epoch2/share/automake-1.11/am/vala.am
> from package gcc-tools-epoch2-automake
> Missing file: /opt/gcc-tools/epoch2/share/automake-1.11/am/yacc.am
> from package gcc-tools-epoch2-automake
> Missing file: /opt/gcc-tools/epoch2/share/automake-1.11/ansi2knr.1
> from package gcc-tools-epoch2-automake
> Missing file: /opt/gcc-tools/epoch2/share/automake-1.11/ansi2knr.c
> from package gcc-tools-epoch2-automake
> Missing file: /opt/gcc-tools/epoch2/share/automake-1.11/ar-lib from
> package gcc-tools-epoch2-automake
> Missing directory: /opt/gcc-tools/epoch2/share/automake-1.11/Automake/
> from package gcc-tools-epoch2-automake
> Missing file: /opt/gcc-tools/epoch2/share/automake-1.11/Automake/ChannelDefs.pm
> from package gcc-tools-epoch2-automake
> Missing file: /opt/gcc-tools/epoch2/share/automake-1.11/Automake/Channels.pm
> from package gcc-tools-epoch2-automake
> Missing file: /opt/gcc-tools/epoch2/share/automake-1.11/Automake/Condition.pm
> from package gcc-tools-epoch2-automake
> Missing file: /opt/gcc-tools/epoch2/share/automake-1.11/Automake/Config.pm
> from package gcc-tools-epoch2-automake
> Missing file: /opt/gcc-tools/epoch2/share/automake-1.11/Automake/Configure_ac.pm
> from package gcc-tools-epoch2-automake
> Missing file: /opt/gcc-tools/epoch2/share/automake-1.11/Automake/DisjConditions.pm
> from package gcc-tools-epoch2-automake
> Missing file: /opt/gcc-tools/epoch2/share/automake-1.11/Automake/FileUtils.pm
> from package gcc-tools-epoch2-automake
> Missing file: /opt/gcc-tools/epoch2/share/automake-1.11/Automake/General.pm
> from package gcc-tools-epoch2-automake
> Missing file: /opt/gcc-tools/epoch2/share/automake-1.11/Automake/Getopt.pm
> from package gcc-tools-epoch2-automake
> Missing file: /opt/gcc-tools/epoch2/share/automake-1.11/Automake/Item.pm
> from package gcc-tools-epoch2-automake
> Missing file: /opt/gcc-tools/epoch2/share/automake-1.11/Automake/ItemDef.pm
> from package gcc-tools-epoch2-automake
> Missing file: /opt/gcc-tools/epoch2/share/automake-1.11/Automake/Location.pm
> from package gcc-tools-epoch2-automake
> Missing file: /opt/gcc-tools/epoch2/share/automake-1.11/Automake/Options.pm
> from package gcc-tools-epoch2-automake
> Missing file: /opt/gcc-tools/epoch2/share/automake-1.11/Automake/Rule.pm
> from package gcc-tools-epoch2-automake
> Missing file: /opt/gcc-tools/epoch2/share/automake-1.11/Automake/RuleDef.pm
> from package gcc-tools-epoch2-automake
> Missing file: /opt/gcc-tools/epoch2/share/automake-1.11/Automake/Struct.pm
> from package gcc-tools-epoch2-automake
> Missing file: /opt/gcc-tools/epoch2/share/automake-1.11/Automake/VarDef.pm
> from package gcc-tools-epoch2-automake
> Missing file: /opt/gcc-tools/epoch2/share/automake-1.11/Automake/Variable.pm
> from package gcc-tools-epoch2-automake
> Missing file: /opt/gcc-tools/epoch2/share/automake-1.11/Automake/Version.pm
> from package gcc-tools-epoch2-automake
> Missing file: /opt/gcc-tools/epoch2/share/automake-1.11/Automake/Wrap.pm
> from package gcc-tools-epoch2-automake
> Missing file: /opt/gcc-tools/epoch2/share/automake-1.11/Automake/XFile.pm
> from package gcc-tools-epoch2-automake
> Missing file: /opt/gcc-tools/epoch2/share/automake-1.11/compile from
> package gcc-tools-epoch2-automake
> Missing file: /opt/gcc-tools/epoch2/share/automake-1.11/config-ml.in
> from package gcc-tools-epoch2-automake
> Missing file: /opt/gcc-tools/epoch2/share/automake-1.11/config.guess
> from package gcc-tools-epoch2-automake
> Missing file: /opt/gcc-tools/epoch2/share/automake-1.11/config.sub
> from package gcc-tools-epoch2-automake
> Missing file: /opt/gcc-tools/epoch2/share/automake-1.11/COPYING from
> package gcc-tools-epoch2-automake
> Missing file: /opt/gcc-tools/epoch2/share/automake-1.11/depcomp from
> package gcc-tools-epoch2-automake
> Missing file: /opt/gcc-tools/epoch2/share/automake-1.11/elisp-comp
> from package gcc-tools-epoch2-automake
> Missing file: /opt/gcc-tools/epoch2/share/automake-1.11/INSTALL from
> package gcc-tools-epoch2-automake
> Missing file: /opt/gcc-tools/epoch2/share/automake-1.11/install-sh
> from package gcc-tools-epoch2-automake
> Missing file: /opt/gcc-tools/epoch2/share/automake-1.11/mdate-sh from
> package gcc-tools-epoch2-automake
> Missing file: /opt/gcc-tools/epoch2/share/automake-1.11/missing from
> package gcc-tools-epoch2-automake
> Missing file: /opt/gcc-tools/epoch2/share/automake-1.11/mkinstalldirs
> from package gcc-tools-epoch2-automake
> Missing file: /opt/gcc-tools/epoch2/share/automake-1.11/py-compile
> from package gcc-tools-epoch2-automake
> Missing file: /opt/gcc-tools/epoch2/share/automake-1.11/symlink-tree
> from package gcc-tools-epoch2-automake
> Missing file: /opt/gcc-tools/epoch2/share/automake-1.11/texinfo.tex
> from package gcc-tools-epoch2-automake
> Missing file: /opt/gcc-tools/epoch2/share/automake-1.11/ylwrap from
> package gcc-tools-epoch2-automake
> Missing directory: /opt/gcc-tools/epoch2/share/doc/ from package
> gcc-tools-epoch2-automake
> Missing directory:
> /opt/gcc-tools/epoch2/share/doc/gcc-tools-epoch2-automake-1.11.6/ from
> package gcc-tools-epoch2-automake
> Missing file: /opt/gcc-tools/epoch2/share/doc/gcc-tools-epoch2-automake-1.11.6/amhello-1.0.tar.gz
> from package gcc-tools-epoch2-automake
> Missing directory: /opt/gcc-tools/epoch2/share/info/ from package
> gcc-tools-epoch2-automake
> Missing file: /opt/gcc-tools/epoch2/share/info/automake1.11.info from
> package gcc-tools-epoch2-automake
> Missing file: /opt/gcc-tools/epoch2/share/info/automake1.11.info-1
> from package gcc-tools-epoch2-automake
> Missing file: /opt/gcc-tools/epoch2/share/info/automake1.11.info-2
> from package gcc-tools-epoch2-automake
> Missing file: /opt/gcc-tools/epoch2/share/info/automake1.11.info-3
> from package gcc-tools-epoch2-automake
> Missing directory: /opt/gcc-tools/epoch2/share/man/ from package
> gcc-tools-epoch2-automake
> Missing directory: /opt/gcc-tools/epoch2/share/man/man1/ from package
> gcc-tools-epoch2-automake
> Missing file: /opt/gcc-tools/epoch2/share/man/man1/aclocal-1.11.1 from
> package gcc-tools-epoch2-automake
> Missing file: /opt/gcc-tools/epoch2/share/man/man1/aclocal.1 from
> package gcc-tools-epoch2-automake
> Missing file: /opt/gcc-tools/epoch2/share/man/man1/automake-1.11.1
> from package gcc-tools-epoch2-automake
> Missing file: /opt/gcc-tools/epoch2/share/man/man1/automake.1 from
> package gcc-tools-epoch2-automake
> gcc-tools-epoch2-automake               1.11.6-1                     Incomplete
> gccmakedep                              1.0.3-1                      OK
> getent                                  2.18.90-4                    OK
> grep                                    2.25-1                       OK
> groff                                   1.22.3-1                     OK
> gsettings-desktop-schemas               3.18.1-1                     OK
> gtk-update-icon-cache                   3.18.9-1                     OK
> gzip                                    1.8-1                        OK
> hicolor-icon-theme                      0.15-1                       OK
> hostname                                3.13-1                       OK
> imake                                   1.0.7-1                      OK
> imake-debuginfo                         1.0.7-1                      OK
> info                                    6.1-2                        OK
> ipc-utils                               1.0-1                        OK
> less                                    481-1                        OK
> libarchive13                            3.1.2-4                      OK
> libargp                                 20110921-3                   OK
> libatk1.0_0                             2.18.0-1                     OK
> libatomic1                              5.4.0-1                      OK
> libattr1                                2.4.46-1                     OK
> libblkid1                               2.25.2-2                     OK
> libbz2_1                                1.0.6-2                      OK
> libcairo2                               1.14.4-1                     OK
> libcilkrts5                             5.4.0-1                      OK
> libcom_err2                             1.42.12-2                    OK
> libcrypt0                               1.4-1                        OK
> libcurl4                                7.50.3-1                     OK
> libdatrie1                              0.2.8-1                      OK
> libdb4.8                                4.8.30-1                     OK
> libdbus1_3                              1.10.12-1                    OK
> libedit0                                20130712-1                   OK
> libEGL1                                 12.0.2-1                     OK
> libexpat1                               2.2.0-0                      OK
> libfam0                                 0.1.10-15                    OK
> libffi6                                 3.2.1-1                      OK
> libfontconfig-common                    2.12.1-1                     OK
> libfontconfig1                          2.12.1-1                     OK
> libfreetype6                            2.6.5-1                      OK
> libgcc1                                 5.4.0-1                      OK
> libgcj-common                           5.4.0-1                      OK
> libgcj16                                5.4.0-1                      OK
> libgdbm4                                1.12-1                       OK
> libgdk_pixbuf2.0_0                      2.32.3-1                     OK
> libgfortran3                            5.4.0-1                      OK
> libGL1                                  12.0.2-1                     OK
> libglapi0                               12.0.2-1                     OK
> libglib2.0_0                            2.46.2-4                     OK
> libgmp10                                6.1.1-1                      OK
> libgomp1                                5.4.0-1                      OK
> libgraphite2_3                          1.3.8-1                      OK
> libgssapi_krb5_2                        1.14.4-1                     OK
> libgtk2.0_0                             2.24.30-1                    OK
> libguile17                              1.8.8-1                      OK
> libharfbuzz0                            1.3.3-1                      OK
> libICE6                                 1.0.9-1                      OK
> libiconv                                1.14-3                       OK
> libiconv2                               1.14-3                       OK
> libicu57                                57.1-1                       OK
> libicu58                                58.1-1                       OK
> libidn11                                1.29-1                       OK
> libintl8                                0.19.8.1-2                   OK
> libisl13                                0.14.1-1                     OK
> libjasper1                              1.900.1-15                   OK
> libjbig2                                2.0-14                       OK
> libjpeg8                                1.5.0-1                      OK
> libk5crypto3                            1.14.4-1                     OK
> libkrb5_3                               1.14.4-1                     OK
> libkrb5support0                         1.14.4-1                     OK
> libllvm3.8                              3.8.1-1                      OK
> libltdl7                                2.4.6-4                      OK
> liblzma5                                5.2.2-1                      OK
> liblzo2_2                               2.08-1                       OK
> libmpc3                                 1.0.3-1                      OK
> libmpfr4                                3.1.5-1                      OK
> libncursesw10                           6.0-8.20160917               OK
> libnettle4                              2.7.1-1                      OK
> libnghttp2_14                           1.14.0-1                     OK
> libobjc4                                5.4.0-1                      OK
> libopenldap2_4_2                        2.4.42-1                     OK
> libopenssl100                           1.0.2j-1                     OK
> libp11-kit0                             0.22.1-1                     OK
> libpagemaker0.0-debuginfo               0.0.3-1                      OK
> libpango1.0_0                           1.38.1-1                     OK
> libpcre1                                8.39-1                       OK
> libpcre16_0                             8.39-1                       OK
> libpipeline1                            1.4.0-1                      OK
> libpixman1_0                            0.34.0-1                     OK
> libpng16                                1.6.24-1                     OK
> libpopt-common                          1.16-2                       OK
> libpopt0                                1.16-2                       OK
> libproxy1                               0.4.11-5                     OK
> libpsl5                                 0.14.0-1                     OK
> libQt5Core5                             5.6.2-1                      OK
> libQt5Gui5                              5.6.2-1                      OK
> libquadmath0                            5.4.0-1                      OK
> libreadline7                            6.3.8-1                      OK
> libsasl2_3                              2.1.26-9                     OK
> libsigsegv2                             2.10-2                       OK
> libSM6                                  1.2.2-1                      OK
> libsmartcols1                           2.25.2-2                     OK
> libssh2_1                               1.7.0-1                      OK
> libssp0                                 5.4.0-1                      OK
> libstdc++6                              5.4.0-1                      OK
> libtasn1_6                              4.9-1                        OK
> libthai0                                0.1.21-1                     OK
> libtiff6                                4.0.6-1                      OK
> libtxc_dxtn                             1.0-1.20151227gitf6ec862     OK
> libunistring2                           0.9.6-1                      OK
> libuuid1                                2.25.2-2                     OK
> libvtv0                                 5.4.0-1                      OK
> libX11-xcb1                             1.6.4-1                      OK
> libX11_6                                1.6.4-1                      OK
> libXau6                                 1.0.8-1                      OK
> libxcb-glx0                             1.12-1                       OK
> libxcb-icccm4                           0.4.1-1                      OK
> libxcb-image0                           0.3.9-1                      OK
> libxcb-keysyms1                         0.3.9-1                      OK
> libxcb-randr0                           1.12-1                       OK
> libxcb-render-util0                     0.3.9-1                      OK
> libxcb-render0                          1.12-1                       OK
> libxcb-shape0                           1.12-1                       OK
> libxcb-shm0                             1.12-1                       OK
> libxcb-sync1                            1.12-1                       OK
> libxcb-util1                            0.3.9-1                      OK
> libxcb-xfixes0                          1.12-1                       OK
> libxcb-xinerama0                        1.12-1                       OK
> libxcb-xkb1                             1.12-1                       OK
> libxcb1                                 1.12-1                       OK
> libXcomposite1                          0.4.3-1                      OK
> libXcursor1                             1.1.14-1                     OK
> libXdamage1                             1.1.4-1                      OK
> libXdmcp6                               1.1.2-1                      OK
> libXext6                                1.3.3-1                      OK
> libXfixes3                              5.0.3-1                      OK
> libXft2                                 2.3.2-1                      OK
> libXi6                                  1.7.8-1                      OK
> libXinerama1                            1.1.3-1                      OK
> libxkbcommon0                           0.4.3-1                      OK
> libxml2                                 2.9.4-1                      OK
> libXrandr2                              1.5.1-1                      OK
> libXrender1                             0.9.9-1                      OK
> login                                   1.11-1                       OK
> m4                                      1.4.17-2                     OK
> make                                    4.2.1-1                      OK
> make-debuginfo                          4.2.1-1                      OK
> makedepend                              1.0.5-1                      OK
> makedepend-debuginfo                    1.0.5-1                      OK
> man-db                                  2.7.5-2                      OK
> mingw64-i686-binutils                   2.25.0.1.23f238d-1           OK
> mingw64-i686-gcc-ada                    5.4.0-2                      OK
> mingw64-i686-gcc-core                   5.4.0-2                      OK
> mingw64-i686-gcc-fortran                5.4.0-2                      OK
> mingw64-i686-gcc-g++                    5.4.0-2                      OK
> mingw64-i686-gcc-objc                   5.4.0-2                      OK
> mingw64-i686-headers                    4.0.6-1                      OK
> mingw64-i686-qt4-qmake                  4.8.7-1                      OK
> mingw64-i686-runtime                    4.0.6-1                      OK
> mingw64-i686-windows-default-manifest   6.4-1                        OK
> mingw64-i686-winpthreads                4.0.6-1                      OK
> mingw64-x86_64-binutils                 2.25.0.1.23f238d-1           OK
> mingw64-x86_64-gcc-ada                  5.4.0-2                      OK
> mingw64-x86_64-gcc-core                 5.4.0-2                      OK
> mingw64-x86_64-gcc-fortran              5.4.0-2                      OK
> mingw64-x86_64-gcc-g++                  5.4.0-2                      OK
> mingw64-x86_64-gcc-objc                 5.4.0-2                      OK
> mingw64-x86_64-headers                  4.0.6-1                      OK
> mingw64-x86_64-qt4-qmake                4.8.7-1                      OK
> mingw64-x86_64-runtime                  4.0.6-1                      OK
> mingw64-x86_64-windows-default-manifest 6.4-1                        OK
> mingw64-x86_64-winpthreads              4.0.6-1                      OK
> mintty                                  2.6.2-0                      OK
> ncurses                                 6.0-8.20160917               OK
> openssl                                 1.0.2j-1                     OK
> p11-kit                                 0.22.1-1                     OK
> p11-kit-trust                           0.22.1-1                     OK
> perl                                    5.22.2-1                     OK
> perl-Carp                               1.38-1                       OK
> perl-Pod-Simple                         3.32-1                       OK
> perl-Unicode-Normalize                  1.25-1                       OK
> perl_autorebase                         5.22.2-1                     OK
> perl_base                               5.22.2-1                     OK
> rebase                                  4.4.2-1                      OK
> run                                     1.3.4-2                      OK
> sed                                     4.2.2-3                      OK
> shared-mime-info                        1.6-3                        OK
> tar                                     1.28-1                       OK
> terminfo                                6.0-8.20160917               OK
> texinfo                                 6.3-1                        OK
> tzdata                                  2016i-1                      OK
> Missing directory: /sbin/ from package util-linux
> Missing file: /sbin/agetty.exe from package util-linux
> Missing file: /sbin/blkid.exe from package util-linux
> Missing file: /sbin/cfdisk.exe from package util-linux
> Missing file: /sbin/fdisk.exe from package util-linux
> Missing file: /sbin/findfs.exe from package util-linux
> Missing file: /sbin/fsck.cramfs.exe from package util-linux
> Missing file: /sbin/fsck.minix.exe from package util-linux
> Missing file: /sbin/mkfs.bfs.exe from package util-linux
> Missing file: /sbin/mkfs.cramfs.exe from package util-linux
> Missing file: /sbin/mkfs.exe from package util-linux
> Missing file: /sbin/mkfs.minix.exe from package util-linux
> Missing file: /sbin/mkswap.exe from package util-linux
> Missing file: /sbin/nologin.exe from package util-linux
> Missing file: /sbin/sfdisk.exe from package util-linux
> Missing file: /sbin/swaplabel.exe from package util-linux
> Missing file: /sbin/wipefs.exe from package util-linux
> util-linux                              2.25.2-2                     Incomplete
> vim-minimal                             7.4.2367-1                   OK
> w32api-headers                          4.0.4-1                      OK
> w32api-runtime                          4.0.4-1                      OK
> which                                   2.20-2                       OK
> WindowMaker-debuginfo                   0.95.6-3                     OK
> windows-default-manifest                6.4-1                        OK
> xkeyboard-config                        2.19-1                       OK
> xorg-cf-files                           1.0.6-1                      OK
> xz                                      5.2.2-1                      OK
> zlib-devel                              1.2.8-3                      OK
> zlib0                                   1.2.8-3                      OK
> Use -h to see help about each section
>
> On Thu, Dec 8, 2016 at 11:07 AM, Rashi Singhal <singhal.rashi@gmail.com> wrote:
>> Hi,
>>
>> I am using cygwin 2.6.0 (32 bit) version with Actian Pervasive version 12.
>>
>> We have a program which will call fork() and in child process Btrieve
>> file is getting opened.
>>
>> While using latest version of cygwin, file open call is not working ,
>> Its not opening file nor displaying any error.
>>
>> Could you please help me on this .
>>
>> Regards,
>> Rashi

--
Problem reports:       http://cygwin.com/problems.html
FAQ:                   http://cygwin.com/faq/
Documentation:         http://cygwin.com/docs.html
Unsubscribe info:      http://cygwin.com/ml/#unsubscribe-simple

^ permalink raw reply	[flat|nested] 12+ messages in thread

* Re: Cygwin 2.6.0 Fork issue
  2016-12-08  5:37 Rashi Singhal
  2016-12-08  7:17 ` Brian Inglis
@ 2016-12-16  9:28 ` Rashi Singhal
  2016-12-30  8:25   ` Rashi Singhal
  1 sibling, 1 reply; 12+ messages in thread
From: Rashi Singhal @ 2016-12-16  9:28 UTC (permalink / raw)
  To: cygwin

Hello,

I have a sample program for the same , But I am not sure how I can
upload it , as to compile that program btrieve(pervasive) library and
header files are also required.

Can I attach source code here ?
Problem is always getting recreated if I open Btrieve file in child
process after fork()

---in main process fork is called-----

iStat = fork();
printf("\nCreating Clients using fork method iStat is %d...\n",iStat);
if ((iStat) == 0 )
        {
printf("\n I am in child \n");
            rd_proc_wr_request();
printf("\n I am in child exit \n");
            exit(0);
}
    /*when the process client finishes Kill the child */

        else
        {
/*We are the parent so free the memory*/
sleep(15);
printf("start of  Main Process \n");
//wait(NULL);
errWaitPid = waitpid( iStat, &wstatus, WNOHANG | WUNTRACED | WCONTINUED );
printf( "errWaitPid = %d, errno = %d, comment = %s\n", errWaitPid,
errno, strerror( errno ) );
printf ("Parent reads <%s>\n",shm) ;
printf("Exiting Main Process\n");
            exit(0);
        }
----this is child process code---

static void* rd_proc_wr_request()
{

  /* Btrieve function parameters */
  BTI_BYTE posBlock1[128];
  BTI_BYTE posBlock2[128];
  BTI_BYTE dataBuf[255];
  BTI_WORD dataLen;
  BTI_BYTE keyBuf1[255];
  BTI_BYTE keyBuf2[255];
  BTI_WORD keyNum = 0;

  BTI_BYTE btrieveLoaded = FALSE;
  BTI_LONG personID;
  BTI_BYTE file1Open = FALSE;
  BTI_BYTE file2Open = FALSE;
  BTI_SINT status;
  BTI_SINT getStatus = -1;
  BTI_SINT i;
  BTI_SINT posCtr;

  CLIENT_ID       clientID;
  VERSION_STRUCT  versionBuffer[3];
  FILE_CREATE_BUF fileCreateBuf;
  GNE_BUFFER_PTR  gneBuffer;
  PERSON_STRUCT   personRecord;

    printf("This is child process...\n");
printf("Btrieve before B_OPEN status with BTRV (sample.btr) = %d\n", status);
    memset(dataBuf, 0, sizeof(dataBuf));
    memset(keyBuf1, 0, sizeof(keyBuf1));
    memset(keyBuf2, 0, sizeof(keyBuf2));
    strcpy((BTI_CHAR *)keyBuf1, FILE1_NAME);
    strcpy((BTI_CHAR *)keyBuf2, FILE2_NAME);


status = BTRV(
                B_OPEN,
                posBlock1,
                dataBuf,
                &dataLen,
                keyBuf1,
                keyNum);

    printf("Btrieve B_OPEN status (sample.btr) = %d\n", status);

---end-------------

Please find cygcheck.out

Cygwin Configuration Diagnostics
Current System Time: Thu Dec 08 14:20:46 2016

Windows 2012 Server Standard Ver 6.2 Build 9200

Running under WOW64 on AMD64

Running in Terminal Service session

Path: C:\Program Files (x86)\Actian\PSQL\bin\
C:\Program Files\Actian\PSQL\bin\
C:\Windows\system32
C:\Windows
C:\Windows\System32\Wbem
C:\Windows\System32\WindowsPowerShell\v1.0\
C:\Program Files\ibm\gsk8\lib64
C:\Program Files (x86)\ibm\gsk8\lib
C:\Program Files\Java\jre7\bin
C:\PROGRA~1\IBM\SQLLIB\BIN
C:\PROGRA~1\IBM\SQLLIB\FUNCTION
C:\PROGRA~1\IBM\SQLLIB\SAMPLES\REPL
C:\Program Files\Java\jdk1.7.0_71\bin
C:\jdk1.7.0_71\bin
l:\misys\bin

Output from L:\misys\bin\id.exe
UID: 1074127(rashi)
GID: 1049089(Domain Users)
1049089(Domain Users)
545(Users)
14(REMOTE INTERACTIVE LOGON)
4(INTERACTIVE)
11(Authenticated Users)
15(This Organization)
4095(CurrentSession)
66048(LOCAL)
1073640(clearuser)
1172632(BLRCUSIFM Distribution Group)
1075982(scmbmdev)
1188451(RFS-DAT-RO-DocShare)
1212325(Token Authentication)
1188519(RFS-DAT-RO-SophisBuildDevArchive)
1076018(scmbmrlse)
1180352(BLR- DFS BMPLUS Transition Modify Access)
1172617(LANTSTNT-READ-WRITE-ACCESS)
1174051(LANTSTNT-READ-ACCESS)
1131517(Global Remote Access)
1075146(BLR - All Emp Reject)
1150696(BLR-DFS BMPlusDev RW)
1142083(All Emp - Bangalore)
1151970(SMB-Summit-Enhancements-ACL-RO)
1152002(PFM-TI-Resource-Calendar-ACL-RO)
1195039(HU1VSWFS01 Labs Read Only Access)
1151982(PFM-Opics-Enhancements-ACL-RO)
1136031(BLR-BMLAN L3 DEVELOPMENT QUEUE)
1165883(BLR-Bankmaster&BMPlus)
1160576(SMB-Opics-Enhancements-WHP-ACL-RO)
1151956(PFM-PC-Requests-ACL-RO)
1187844(TrustedSendersAndDomains)
1151972(PFM-Summit-Project-Folders-ACL-RO)
1084824(NYCOR-WWSTAFF)
1151980(PFM-SMB-Everyone)
1195050(HU1VSWFS01 Install Read Only Access)
1180378(PFM-Customer-Support-ACL-RO)
1177268(PFM-Business-Center-Support-ACL-RW)
1190917(Kulu-AllMisys-ViewerOnly)
1180374(PFM-Summit-Clients-BDB-ACL-RO)
1160651(PFM-GCC-Sydney-ACL-RO)
1122116(NY1180-Shared Modify Access)
1191425(websense-Bangalore)
1149450(BLR-DFS BMLAN RW)
1118763(AllCorestaff)
1182716(BLR-PRINTUSERS)
1118741(AllStaff)
1090058(BLR-BM LAN)
1180372(PFM-Training-Summit-Clients-ACL-RO)
1089790(Core Bangalore)
1122267(Misys Queens - Blr)
1195102(HU1VSWFS01 PD-PREF Integration Read Only Access)
1143055(ALM Tools User-All)
1180380(PFM-AP-Summit-CS-ACL-RO)
1063073(NYCOR-WWSTAFF)
70145(Authentication authority asserted identity)
401408(Medium Mandatory Level)

SysDir: C:\Windows\system32
WinDir: C:\Windows

PWD = '/cygdrive/l/bmpcunix/etc'
CYGWIN = 'server'
HOME = '/home/rashi'

USERDOMAIN_ROAMINGPROFILE = 'MISYSROOT'
HOMEPATH = '\'
DB2INSTANCE = 'DB2'
APPDATA = 'C:\Users\rashi\AppData\Roaming'
ProgramW6432 = 'C:\Program Files'
TERM = 'cygwin'
PROCESSOR_IDENTIFIER = 'Intel64 Family 6 Model 26 Stepping 4, GenuineIntel'
WINDIR = 'C:\Windows'
PUBLIC = 'C:\Users\Public'
USERDOMAIN = 'MISYSROOT'
CommonProgramFiles(x86) = 'C:\Program Files (x86)\Common Files'
OS = 'Windows_NT'
ALLUSERSPROFILE = 'C:\ProgramData'
TEMP = '/cygdrive/c/Users/rashi/AppData/Local/Temp/7'
COMMONPROGRAMFILES = 'C:\Program Files (x86)\Common Files'
LIB = ';C:\PROGRA~1\IBM\SQLLIB\LIB;C:\Program
Files\Java\jdk1.7.0_71\jre\lib;C:\jdk1.7.0_71\jre\lib'
USERNAME = 'rashi'
PROCESSOR_LEVEL = '6'
ProgramFiles(x86) = 'C:\Program Files (x86)'
PSModulePath = 'C:\Windows\system32\WindowsPowerShell\v1.0\Modules\'
SHELLOPTS = 'braceexpand:emacs:hashall:histexpand:history:igncr:interactive-comments:monitor'
FP_NO_HOST_CHECK = 'NO'
SYSTEMDRIVE = 'C:'
PROCESSOR_ARCHITEW6432 = 'AMD64'
JAVA_HOME = 'C:\Program Files\Java\jdk1.7.0_71;C:\jdk1.7.0_71'
USERPROFILE = 'C:\Users\rashi'
CLIENTNAME = 'BLRBMLAN027'
LOGONSERVER = '\\BLR2VSWMISYSDC2'
CommonProgramW6432 = 'C:\Program Files\Common Files'
PROCESSOR_ARCHITECTURE = 'x86'
LOCALAPPDATA = 'C:\Users\rashi\AppData\Local'
ProgramData = 'C:\ProgramData'
EXECIGNORE = '*.dll'
SHLVL = '1'
USERDNSDOMAIN = 'MISYS.GLOBAL.AD'
PATHEXT = '.COM;.EXE;.BAT;.CMD;.VBS;.VBE;.JS;.JSE;.WSF;.WSH;.MSC'
HOMEDRIVE = 'G:'
COMSPEC = 'C:\Windows\system32\cmd.exe'
TMP = '/cygdrive/c/Users/rashi/AppData/Local/Temp/7'
SYSTEMROOT = 'C:\Windows'
PROCESSOR_REVISION = '1a04'
CLASSPATH = '.;C:\jdk1.7.0_71\jre\lib;C:\jdk1.7.0_71;C:\EssenceData\tobedelivered\SQLWorkbench\Driver_jars\;C:\PROGRA~1\IBM\SQLLIB\java\db2java.zip;C:\PROGRA~1\IBM\SQLLIB\java\db2jcc.jar;C:\PROGRA~1\IBM\SQLLIB\java\sqlj.zip;C:\PROGRA~1\IBM\SQLLIB\java\db2jcc_license_cu.jar;C:\PROGRA~1\IBM\SQLLIB\bin;C:\PROGRA~1\IBM\SQLLIB\java\common.jar;C:\Program
Files\Java\jdk1.7.0_71\jre\lib'
PROGRAMFILES = 'C:\Program Files (x86)'
HOMESHARE = '\\misys.global.ad\bangalore\HomeDirs\Rashi'
NUMBER_OF_PROCESSORS = '1'
INCLUDE = 'C:\PROGRA~1\IBM\SQLLIB\INCLUDE;C:\PROGRA~1\IBM\SQLLIB\LIB'
SESSIONNAME = 'RDP-Tcp#0'
COMPUTERNAME = 'BLRVSWDBM01'
_ = '/usr/bin/cygcheck'

HKEY_CURRENT_USER\Software\Cygwin
HKEY_CURRENT_USER\Software\Cygwin\Installations
  (default) = '\??\M:\misys'
  c5e39b7a9d22bafb = '\??\C:\cygwin'
  c07f6044b9539815 = '\??\C:\Winbmpc\misys'
  bb93c89809c4e0a0 = '\??\M:\bmpcunix'
  a10c501e1982f40e = '\??\L:\misys'
HKEY_CURRENT_USER\Software\Cygwin\Program Options
HKEY_LOCAL_MACHINE\SOFTWARE\Cygwin
HKEY_LOCAL_MACHINE\SOFTWARE\Cygwin\Installations
  (default) = '\??\C:\cygwin'
HKEY_LOCAL_MACHINE\SOFTWARE\Cygwin\Program Options
HKEY_LOCAL_MACHINE\SOFTWARE\Cygwin\setup
  (default) = 'C:\cygwin'

obcaseinsensitive set to 1

Cygwin installations found in the registry:
  System: Key: c5e39b7a9d22bafb Path: C:\cygwin (ORPHANED)
  User:   Key: 79027bc66fb629cd Path: M:\misys (ORPHANED)
  User:   Key: c5e39b7a9d22bafb Path: C:\cygwin (ORPHANED)
  User:   Key: c07f6044b9539815 Path: C:\Winbmpc\misys
  User:   Key: bb93c89809c4e0a0 Path: M:\bmpcunix (ORPHANED)
  User:   Key: a10c501e1982f40e Path: L:\misys

a:  fd             N/A    N/A
c:  hd  NTFS    409246Mb  78% CP CS UN PA FC
g:  net NTFS       500Mb  66% CP CS UN PA FC     Data
i:  net NTFS     51096Mb  65% CP CS UN PA FC     OS
l:  net NTFS    409246Mb  78% CP CS UN PA FC

L:\misys         /          system  binary,auto
L:\misys\bin     /usr/bin   system  binary,auto
L:\misys\lib     /usr/lib   system  binary,auto
cygdrive prefix  /cygdrive  user    binary,posix=0,auto

Found: l:\misys\bin\awk
 -> L:\misys\bin\gawk.exe
Found: l:\misys\bin\bash.exe
Found: l:\misys\bin\cat.exe
Found: l:\misys\bin\cp.exe
Found: l:\misys\bin\cpp.exe
Not Found: crontab
Found: C:\Windows\system32\find.exe
Found: l:\misys\bin\find.exe
Warning: C:\Windows\system32\find.exe hides l:\misys\bin\find.exe
Found: l:\misys\bin\gcc.exe
Not Found: gdb
Found: l:\misys\bin\grep.exe
Found: l:\misys\bin\kill.exe
Found: l:\misys\bin\ld.exe
Found: l:\misys\bin\ls.exe
Found: l:\misys\bin\make.exe
Found: l:\misys\bin\mv.exe
Not Found: patch
Found: l:\misys\bin\perl.exe
Found: l:\misys\bin\rm.exe
Found: l:\misys\bin\sed.exe
Not Found: ssh
Found: l:\misys\bin\sh.exe
Found: l:\misys\bin\tar.exe
Found: l:\misys\bin\test.exe
Found: l:\misys\bin\vi.exe
Not Found: vim

  640k 2016/07/05 l:\misys\bin\cygarchive-13.dll - os=4.0 img=1.0 sys=4.0
                  "cygarchive-13.dll" v0.0 ts=2016-07-05 11:47
   39k 2016/09/19 l:\misys\bin\cygargp-0.dll - os=4.0 img=1.0 sys=4.0
                  "cygargp-0.dll" v0.0 ts=2016-09-19 06:55
  125k 2015/11/06 l:\misys\bin\cygatk-1.0-0.dll - os=4.0 img=1.0 sys=4.0
                  "cygatk-1.0-0.dll" v0.0 ts=2015-11-06 07:48
   87k 2016/06/14 l:\misys\bin\cygatomic-1.dll - os=4.0 img=1.0 sys=4.0
                  "cygatomic-1.dll" v0.0 ts=2016-06-14 11:14
   14k 2012/05/04 l:\misys\bin\cygattr-1.dll - os=4.0 img=1.0 sys=4.0
                  "cygattr-1.dll" v0.0 ts=2012-05-04 17:05
  203k 2015/03/23 l:\misys\bin\cygblkid-1.dll - os=4.0 img=1.0 sys=4.0
                  "cygblkid-1.dll" v0.0 ts=2015-03-23 14:25
   62k 2011/05/21 l:\misys\bin\cygbz2-1.dll - os=4.0 img=1.0 sys=4.0
                  "cygbz2-1.dll" v0.0 ts=2011-05-22 00:46
 1219k 2015/11/23 l:\misys\bin\cygcairo-2.dll - os=4.0 img=1.0 sys=4.0
                  "cygcairo-2.dll" v0.0 ts=2015-11-24 02:14
   25k 2015/11/23 l:\misys\bin\cygcairo-gobject-2.dll - os=4.0 img=1.0 sys=4.0
                  "cygcairo-gobject-2.dll" v0.0 ts=2015-11-24 02:15
  121k 2015/11/23 l:\misys\bin\cygcairo-script-interpreter-2.dll -
os=4.0 img=1.0 sys=4.0
                  "cygcairo-script-interpreter-2.dll" v0.0 ts=2015-11-24 02:16
  115k 2016/06/14 l:\misys\bin\cygcilkrts-5.dll - os=4.0 img=1.0 sys=4.0
                  "cygcilkrts-5.dll" v0.0 ts=2016-06-14 11:17
   13k 2015/03/19 l:\misys\bin\cygcom_err-2.dll - os=4.0 img=1.0 sys=4.0
                  "cygcom_err-2.dll" v0.0 ts=2015-03-19 07:15
   10k 2016/06/09 l:\misys\bin\cygcrypt-0.dll - os=4.0 img=1.0 sys=4.0
                  "cygcrypt-0.dll" v0.0 ts=2016-06-09 20:32
 2010k 2016/09/26 l:\misys\bin\cygcrypto-1.0.0.dll - os=4.0 img=1.0 sys=4.0
                  "cygcrypto-1.0.0.dll" v0.0 ts=2016-09-26 19:34
  503k 2016/09/15 l:\misys\bin\cygcurl-4.dll - os=4.0 img=1.0 sys=4.0
                  "cygcurl-4.dll" v0.0 ts=2016-09-15 11:51
   27k 2014/11/12 l:\misys\bin\cygdatrie-1.dll - os=4.0 img=1.0 sys=4.0
                  "cygdatrie-1.dll" v0.0 ts=2014-11-12 10:44
 1284k 2011/11/10 l:\misys\bin\cygdb-4.8.dll - os=4.0 img=1.0 sys=4.0
                  "cygdb-4.8.dll" v0.0 ts=2011-11-11 00:15
  299k 2016/10/10 l:\misys\bin\cygdbus-1-3.dll - os=4.0 img=1.0 sys=4.0
                  "cygdbus-1-3.dll" v0.0 ts=2016-10-11 00:07
  105k 2011/11/10 l:\misys\bin\cygdb_cxx-4.8.dll - os=4.0 img=1.0 sys=4.0
                  "cygdb_cxx-4.8.dll" v0.0 ts=2011-11-11 00:16
  159k 2013/10/20 l:\misys\bin\cygedit-0.dll - os=4.0 img=1.0 sys=4.0
                  "cygedit-0.dll" v0.0 ts=2013-10-21 02:39
  124k 2016/09/05 l:\misys\bin\cygEGL-1.dll - os=4.0 img=1.0 sys=4.0
                  "cygEGL-1.dll" v0.0 ts=2016-09-06 00:05
  157k 2016/06/21 l:\misys\bin\cygexpat-1.dll - os=4.0 img=1.0 sys=4.0
                  "cygexpat-1.dll" v0.0 ts=2016-06-22 03:52
   32k 2014/10/14 l:\misys\bin\cygfam-0.dll - os=4.0 img=1.0 sys=4.0
                  "cygfam-0.dll" v0.0 ts=2014-10-15 01:51
   27k 2015/01/02 l:\misys\bin\cygffi-6.dll - os=4.0 img=1.0 sys=4.0
                  "cygffi-6.dll" v0.0 ts=2015-01-02 06:41
  252k 2016/08/11 l:\misys\bin\cygfontconfig-1.dll - os=4.0 img=1.0 sys=4.0
                  "cygfontconfig-1.dll" v0.0 ts=2016-08-11 10:42
   60k 2016/09/19 l:\misys\bin\cygformw-10.dll - os=4.0 img=1.0 sys=4.0
                  "cygformw-10.dll" v0.0 ts=2016-09-19 11:35
  615k 2016/07/28 l:\misys\bin\cygfreetype-6.dll - os=4.0 img=1.0 sys=4.0
                  "cygfreetype-6.dll" v0.0 ts=2016-07-28 22:54
  108k 2016/06/14 l:\misys\bin\cyggcc_s-1.dll - os=4.0 img=1.0 sys=4.0
                  "cyggcc_s-1.dll" v0.0 ts=2016-06-14 10:14
18555k 2016/06/14 l:\misys\bin\cyggcj-16.dll - os=4.0 img=1.0 sys=4.0
                  "cyggcj-16.dll" v0.0 ts=2016-06-14 12:13
13043k 2016/06/14 l:\misys\bin\cyggcj-noncore-16.dll - os=4.0 img=1.0 sys=4.0
                  "cyggcj-noncore-16.dll" v0.0 ts=2016-06-14 12:17
 3730k 2016/06/14 l:\misys\bin\cyggcj-tools-16.dll - os=4.0 img=1.0 sys=4.0
                  "cyggcj-tools-16.dll" v0.0 ts=2016-06-14 12:18
   44k 2016/10/10 l:\misys\bin\cyggdbm-4.dll - os=4.0 img=1.0 sys=4.0
                  "cyggdbm-4.dll" v0.0 ts=2016-10-10 22:43
   14k 2016/10/10 l:\misys\bin\cyggdbm_compat-4.dll - os=4.0 img=1.0 sys=4.0
                  "cyggdbm_compat-4.dll" v0.0 ts=2016-10-10 22:43
  648k 2016/05/31 l:\misys\bin\cyggdk-x11-2.0-0.dll - os=4.0 img=1.0 sys=4.0
                  "cyggdk-x11-2.0-0.dll" v0.0 ts=2016-05-31 13:27
  152k 2016/05/31 l:\misys\bin\cyggdk_pixbuf-2.0-0.dll - os=4.0 img=1.0 sys=4.0
                  "cyggdk_pixbuf-2.0-0.dll" v0.0 ts=2016-05-31 22:42
 1031k 2016/06/14 l:\misys\bin\cyggfortran-3.dll - os=4.0 img=1.0 sys=4.0
                  "cyggfortran-3.dll" v0.0 ts=2016-06-14 11:47
   14k 2016/06/14 l:\misys\bin\cyggij-16.dll - os=4.0 img=1.0 sys=4.0
                  "cyggij-16.dll" v0.0 ts=2016-06-14 12:18
 1443k 2016/06/02 l:\misys\bin\cyggio-2.0-0.dll - os=4.0 img=1.0 sys=4.0
                  "cyggio-2.0-0.dll" v0.0 ts=2016-06-03 01:48
  517k 2016/09/05 l:\misys\bin\cygGL-1.dll - os=4.0 img=1.0 sys=4.0
                  "cygGL-1.dll" v0.0 ts=2016-09-06 00:05
  284k 2016/09/05 l:\misys\bin\cygglapi-0.dll - os=4.0 img=1.0 sys=4.0
                  "cygglapi-0.dll" v0.0 ts=2016-09-05 23:50
 1039k 2016/06/02 l:\misys\bin\cygglib-2.0-0.dll - os=4.0 img=1.0 sys=4.0
                  "cygglib-2.0-0.dll" v0.0 ts=2016-06-03 01:46
   16k 2016/06/02 l:\misys\bin\cyggmodule-2.0-0.dll - os=4.0 img=1.0 sys=4.0
                  "cyggmodule-2.0-0.dll" v0.0 ts=2016-06-03 01:46
  506k 2016/08/28 l:\misys\bin\cyggmp-10.dll - os=4.0 img=1.0 sys=4.0
                  "cyggmp-10.dll" v0.0 ts=2016-08-28 14:41
  317k 2016/06/02 l:\misys\bin\cyggobject-2.0-0.dll - os=4.0 img=1.0 sys=4.0
                  "cyggobject-2.0-0.dll" v0.0 ts=2016-06-03 01:46
  113k 2016/06/14 l:\misys\bin\cyggomp-1.dll - os=4.0 img=1.0 sys=4.0
                  "cyggomp-1.dll" v0.0 ts=2016-06-14 10:19
   11k 2016/06/14 l:\misys\bin\cyggomp-plugin-host_nonshm-1.dll -
os=4.0 img=1.0 sys=4.0
                  "cyggomp-plugin-host_nonshm-1.dll" v0.0 ts=2016-06-14 10:20
  184k 2016/10/30 l:\misys\bin\cyggraphite2-3.dll - os=4.0 img=3.0 sys=4.0
                  "cyggraphite2-3.dll" v0.0 ts=2016-10-31 01:46
  279k 2016/09/26 l:\misys\bin\cyggssapi_krb5-2.dll - os=4.0 img=1.0 sys=4.0
                  "cyggssapi_krb5-2.dll" v0.0 ts=2016-09-26 11:21
    9k 2016/06/02 l:\misys\bin\cyggthread-2.0-0.dll - os=4.0 img=1.0 sys=4.0
                  "cyggthread-2.0-0.dll" v0.0 ts=2016-06-03 01:46
 4380k 2016/05/31 l:\misys\bin\cyggtk-x11-2.0-0.dll - os=4.0 img=1.0 sys=4.0
                  "cyggtk-x11-2.0-0.dll" v0.0 ts=2016-05-31 13:46
  812k 2015/02/20 l:\misys\bin\cygguile-17.dll - os=4.0 img=1.0 sys=4.0
                  "cygguile-17.dll" v0.0 ts=2015-02-20 22:04
  410k 2016/10/31 l:\misys\bin\cygharfbuzz-0.dll - os=4.0 img=1.0 sys=4.0
                  "cygharfbuzz-0.dll" v0.0 ts=2016-10-31 02:32
   31k 2015/01/27 l:\misys\bin\cyghistory7.dll - os=4.0 img=1.0 sys=4.0
                  "cyghistory7.dll" v0.0 ts=2015-01-28 05:13
   80k 2014/08/10 l:\misys\bin\cygICE-6.dll - os=4.0 img=1.0 sys=4.0
                  "cygICE-6.dll" v0.0 ts=1970-01-01 05:30
 1010k 2015/02/20 l:\misys\bin\cygiconv-2.dll - os=4.0 img=1.0 sys=4.0
                  "cygiconv-2.dll" v0.0 ts=2015-02-20 22:22
25076k 2016/04/08 l:\misys\bin\cygicudata57.dll - os=4.0 img=1.0 sys=4.0
                  "cygicudata57.dll" v0.0 ts=2016-04-09 00:35
25605k 2016/10/21 l:\misys\bin\cygicudata58.dll - os=4.0 img=1.0 sys=4.0
                  "cygicudata58.dll" v0.0 ts=2016-10-22 03:34
 2307k 2016/04/08 l:\misys\bin\cygicui18n57.dll - os=4.0 img=1.0 sys=4.0
                  "cygicui18n57.dll" v0.0 ts=2016-04-09 00:32
 2317k 2016/10/21 l:\misys\bin\cygicui18n58.dll - os=4.0 img=1.0 sys=4.0
                  "cygicui18n58.dll" v0.0 ts=2016-10-22 03:32
   46k 2016/04/08 l:\misys\bin\cygicuio57.dll - os=4.0 img=1.0 sys=4.0
                  "cygicuio57.dll" v0.0 ts=2016-04-09 00:32
   46k 2016/10/21 l:\misys\bin\cygicuio58.dll - os=4.0 img=1.0 sys=4.0
                  "cygicuio58.dll" v0.0 ts=2016-10-22 03:33
  310k 2016/04/08 l:\misys\bin\cygicule57.dll - os=4.0 img=1.0 sys=4.0
                  "cygicule57.dll" v0.0 ts=2016-04-09 00:32
   39k 2016/04/08 l:\misys\bin\cygiculx57.dll - os=4.0 img=1.0 sys=4.0
                  "cygiculx57.dll" v0.0 ts=2016-04-09 00:32
 1488k 2016/04/08 l:\misys\bin\cygicuuc57.dll - os=4.0 img=1.0 sys=4.0
                  "cygicuuc57.dll" v0.0 ts=2016-04-09 00:31
 1510k 2016/10/21 l:\misys\bin\cygicuuc58.dll - os=4.0 img=1.0 sys=4.0
                  "cygicuuc58.dll" v0.0 ts=2016-10-22 03:31
  198k 2014/12/06 l:\misys\bin\cygidn-11.dll - os=4.0 img=1.0 sys=4.0
                  "cygidn-11.dll" v0.0 ts=2014-12-06 18:26
   42k 2016/10/23 l:\misys\bin\cygintl-8.dll - os=4.0 img=1.0 sys=4.0
                  "cygintl-8.dll" v0.0 ts=2016-10-23 11:49
 1191k 2015/09/20 l:\misys\bin\cygisl-13.dll - os=4.0 img=1.0 sys=4.0
                  "cygisl-13.dll" v0.0 ts=2015-09-20 17:09
  277k 2015/01/23 l:\misys\bin\cygjasper-1.dll - os=4.0 img=1.0 sys=4.0
                  "cygjasper-1.dll" v0.0 ts=2015-01-23 17:33
   47k 2014/06/17 l:\misys\bin\cygjbig-2.dll - os=4.0 img=1.0 sys=4.0
                  "cygjbig-2.dll" v0.0 ts=1970-01-01 05:30
   20k 2014/06/17 l:\misys\bin\cygjbig85-2.dll - os=4.0 img=1.0 sys=4.0
                  "cygjbig85-2.dll" v0.0 ts=1970-01-01 05:30
  429k 2016/08/07 l:\misys\bin\cygjpeg-8.dll - os=4.0 img=1.0 sys=4.0
                  "cygjpeg-8.dll" v0.0 ts=2016-08-08 01:00
    9k 2016/06/14 l:\misys\bin\cygjvm.dll - os=4.0 img=1.0 sys=4.0
                  "cygjvm.dll" v0.0 ts=2016-06-14 12:18
  189k 2016/09/26 l:\misys\bin\cygk5crypto-3.dll - os=4.0 img=1.0 sys=4.0
                  "cygk5crypto-3.dll" v0.0 ts=2016-09-26 11:20
  745k 2016/09/26 l:\misys\bin\cygkrb5-3.dll - os=4.0 img=1.0 sys=4.0
                  "cygkrb5-3.dll" v0.0 ts=2016-09-26 11:21
   39k 2016/09/26 l:\misys\bin\cygkrb5support-0.dll - os=4.0 img=1.0 sys=4.0
                  "cygkrb5support-0.dll" v0.0 ts=2016-09-26 11:20
   49k 2015/11/19 l:\misys\bin\cyglber-2-4-2.dll - os=4.0 img=1.0 sys=4.0
                  "cyglber-2-4-2.dll" v0.0 ts=2015-11-19 13:54
  271k 2015/11/19 l:\misys\bin\cygldap-2-4-2.dll - os=4.0 img=1.0 sys=4.0
                  "cygldap-2-4-2.dll" v0.0 ts=2015-11-19 13:55
  287k 2015/11/19 l:\misys\bin\cygldap_r-2-4-2.dll - os=4.0 img=1.0 sys=4.0
                  "cygldap_r-2-4-2.dll" v0.0 ts=2015-11-19 13:56
27501k 2016/07/21 l:\misys\bin\cygLLVM-3.8.dll - os=4.0 img=0.0 sys=4.0
                  "cygLLVM-3.8.dll" v0.0 ts=2016-07-21 08:40
    5k 2016/08/31 l:\misys\bin\cyglsa.dll - os=4.0 img=1.0 sys=4.0
                  "cyglsa.dll" v0.0 ts=2016-08-31 17:57
    6k 2016/08/31 l:\misys\bin\cyglsa64.dll (not x86 dll)
   36k 2016/06/28 l:\misys\bin\cygltdl-7.dll - os=4.0 img=1.0 sys=4.0
                  "cygltdl-7.dll" v0.0 ts=2016-06-28 23:27
  159k 2015/11/09 l:\misys\bin\cyglzma-5.dll - os=4.0 img=1.0 sys=4.0
                  "cyglzma-5.dll" v0.0 ts=2015-11-09 11:43
  127k 2014/11/17 l:\misys\bin\cyglzo2-2.dll - os=4.0 img=1.0 sys=4.0
                  "cyglzo2-2.dll" v0.0 ts=2014-11-17 14:48
  124k 2016/01/11 l:\misys\bin\cygmagic-1.dll - os=4.0 img=1.0 sys=4.0
                  "cygmagic-1.dll" v0.0 ts=2016-01-12 04:06
  173k 2016/10/10 l:\misys\bin\cygman-2-7-5.dll - os=4.0 img=1.0 sys=4.0
                  "cygman-2-7-5.dll" v0.0 ts=2016-10-11 02:37
   21k 2016/10/10 l:\misys\bin\cygmandb-2-7-5.dll - os=4.0 img=1.0 sys=4.0
                  "cygmandb-2-7-5.dll" v0.0 ts=2016-10-11 02:38
   30k 2016/09/19 l:\misys\bin\cygmenuw-10.dll - os=4.0 img=1.0 sys=4.0
                  "cygmenuw-10.dll" v0.0 ts=2016-09-19 11:34
   98k 2015/03/01 l:\misys\bin\cygmpc-3.dll - os=4.0 img=1.0 sys=4.0
                  "cygmpc-3.dll" v0.0 ts=2015-03-02 01:54
  374k 2016/09/27 l:\misys\bin\cygmpfr-4.dll - os=4.0 img=1.0 sys=4.0
                  "cygmpfr-4.dll" v0.0 ts=2016-09-28 00:55
   56k 2016/09/19 l:\misys\bin\cygncurses++w-10.dll - os=4.0 img=1.0 sys=4.0
                  "cygncurses++w-10.dll" v0.0 ts=2016-09-19 11:40
  306k 2016/09/19 l:\misys\bin\cygncursesw-10.dll - os=4.0 img=1.0 sys=4.0
                  "cygncursesw-10.dll" v0.0 ts=2016-09-19 11:33
  193k 2016/03/13 l:\misys\bin\cygnettle-4.dll - os=4.0 img=1.0 sys=4.0
                  "cygnettle-4.dll" v0.0 ts=2016-03-13 18:52
  146k 2016/09/08 l:\misys\bin\cygnghttp2-14.dll - os=4.0 img=1.0 sys=4.0
                  "cygnghttp2-14.dll" v0.0 ts=2016-09-08 07:18
  100k 2016/06/14 l:\misys\bin\cygobjc-4.dll - os=4.0 img=1.0 sys=4.0
                  "cygobjc-4.dll" v0.0 ts=2016-06-14 11:20
  326k 2015/06/01 l:\misys\bin\cygp11-kit-0.dll - os=4.0 img=1.0 sys=4.0
                  "cygp11-kit-0.dll" v0.0 ts=2015-06-02 00:47
   15k 2016/09/19 l:\misys\bin\cygpanelw-10.dll - os=4.0 img=1.0 sys=4.0
                  "cygpanelw-10.dll" v0.0 ts=2016-09-19 11:34
  272k 2015/11/06 l:\misys\bin\cygpango-1.0-0.dll - os=4.0 img=1.0 sys=4.0
                  "cygpango-1.0-0.dll" v0.0 ts=2015-11-06 08:29
   44k 2015/11/06 l:\misys\bin\cygpangocairo-1.0-0.dll - os=4.0 img=1.0 sys=4.0
                  "cygpangocairo-1.0-0.dll" v0.0 ts=2015-11-06 08:29
   75k 2015/11/06 l:\misys\bin\cygpangoft2-1.0-0.dll - os=4.0 img=1.0 sys=4.0
                  "cygpangoft2-1.0-0.dll" v0.0 ts=2015-11-06 08:29
   29k 2015/11/06 l:\misys\bin\cygpangoxft-1.0-0.dll - os=4.0 img=1.0 sys=4.0
                  "cygpangoxft-1.0-0.dll" v0.0 ts=2015-11-06 08:29
  470k 2016/08/11 l:\misys\bin\cygpcre-1.dll - os=4.0 img=1.0 sys=4.0
                  "cygpcre-1.dll" v0.0 ts=2016-08-12 01:45
  437k 2016/08/11 l:\misys\bin\cygpcre16-0.dll - os=4.0 img=1.0 sys=4.0
                  "cygpcre16-0.dll" v0.0 ts=2016-08-12 01:45
 2164k 2016/04/30 l:\misys\bin\cygperl5_22.dll - os=4.0 img=1.0 sys=4.0
                  "cygperl5_22.dll" v0.0 ts=2016-04-30 19:36
   41k 2015/04/09 l:\misys\bin\cygpipeline-1.dll - os=4.0 img=1.0 sys=4.0
                  "cygpipeline-1.dll" v0.0 ts=2015-04-10 01:28
  645k 2016/08/08 l:\misys\bin\cygpixman-1-0.dll - os=4.0 img=1.0 sys=4.0
                  "cygpixman-1-0.dll" v0.0 ts=2016-08-08 07:25
  195k 2016/08/07 l:\misys\bin\cygpng16-16.dll - os=4.0 img=1.0 sys=4.0
                  "cygpng16-16.dll" v0.0 ts=2016-08-07 23:09
   43k 2016/07/13 l:\misys\bin\cygpopt-0.dll - os=4.0 img=1.0 sys=4.0
                  "cygpopt-0.dll" v0.0 ts=2016-07-13 10:47
  122k 2015/06/29 l:\misys\bin\cygproxy-1.dll - os=4.0 img=1.0 sys=4.0
                  "cygproxy-1.dll" v0.0 ts=2015-06-30 03:05
   49k 2016/09/08 l:\misys\bin\cygpsl-5.dll - os=4.0 img=1.0 sys=4.0
                  "cygpsl-5.dll" v0.0 ts=2016-09-08 07:40
   22k 2016/11/01 l:\misys\bin\cygQt5Concurrent-5.dll - os=4.0 img=1.0 sys=4.0
                  "cygQt5Concurrent-5.dll" v0.0 ts=2016-11-01 07:43
 4185k 2016/11/01 l:\misys\bin\cygQt5Core-5.dll - os=4.0 img=1.0 sys=4.0
                  "cygQt5Core-5.dll" v0.0 ts=2016-11-01 07:42
  541k 2016/11/01 l:\misys\bin\cygQt5DBus-5.dll - os=4.0 img=1.0 sys=4.0
                  "cygQt5DBus-5.dll" v0.0 ts=2016-11-01 07:45
 4802k 2016/11/01 l:\misys\bin\cygQt5Gui-5.dll - os=4.0 img=1.0 sys=4.0
                  "cygQt5Gui-5.dll" v0.0 ts=2016-11-01 07:49
 1423k 2016/11/01 l:\misys\bin\cygQt5Network-5.dll - os=4.0 img=1.0 sys=4.0
                  "cygQt5Network-5.dll" v0.0 ts=2016-11-01 07:47
  312k 2016/11/01 l:\misys\bin\cygQt5OpenGL-5.dll - os=4.0 img=1.0 sys=4.0
                  "cygQt5OpenGL-5.dll" v0.0 ts=2016-11-01 08:04
  356k 2016/11/01 l:\misys\bin\cygQt5PrintSupport-5.dll - os=4.0 img=1.0 sys=4.0
                  "cygQt5PrintSupport-5.dll" v0.0 ts=2016-11-01 08:04
  158k 2016/11/01 l:\misys\bin\cygQt5Test-5.dll - os=4.0 img=1.0 sys=4.0
                  "cygQt5Test-5.dll" v0.0 ts=2016-11-01 08:04
 6118k 2016/11/01 l:\misys\bin\cygQt5Widgets-5.dll - os=4.0 img=1.0 sys=4.0
                  "cygQt5Widgets-5.dll" v0.0 ts=2016-11-01 08:02
  945k 2016/11/01 l:\misys\bin\cygQt5XcbQpa-5.dll - os=4.0 img=1.0 sys=4.0
                  "cygQt5XcbQpa-5.dll" v0.0 ts=2016-11-01 08:06
  205k 2016/11/01 l:\misys\bin\cygQt5Xml-5.dll - os=4.0 img=1.0 sys=4.0
                  "cygQt5Xml-5.dll" v0.0 ts=2016-11-01 07:43
  500k 2016/06/14 l:\misys\bin\cygquadmath-0.dll - os=4.0 img=1.0 sys=4.0
                  "cygquadmath-0.dll" v0.0 ts=2016-06-14 11:20
  208k 2015/01/27 l:\misys\bin\cygreadline7.dll - os=4.0 img=1.0 sys=4.0
                  "cygreadline7.dll" v0.0 ts=2015-01-28 05:13
  102k 2014/11/24 l:\misys\bin\cygsasl2-3.dll - os=4.0 img=1.0 sys=4.0
                  "cygsasl2-3.dll" v0.0 ts=2014-11-25 00:05
   11k 2015/07/17 l:\misys\bin\cygsigsegv-2.dll - os=4.0 img=1.0 sys=4.0
                  "cygsigsegv-2.dll" v0.0 ts=2015-07-18 03:03
   28k 2014/01/14 l:\misys\bin\cygSM-6.dll - os=4.0 img=1.0 sys=4.0
                  "cygSM-6.dll" v0.0 ts=2014-01-15 05:24
   98k 2015/03/23 l:\misys\bin\cygsmartcols-1.dll - os=4.0 img=1.0 sys=4.0
                  "cygsmartcols-1.dll" v0.0 ts=2015-03-23 14:25
  168k 2016/03/02 l:\misys\bin\cygssh2-1.dll - os=4.0 img=1.0 sys=4.0
                  "cygssh2-1.dll" v0.0 ts=2016-03-02 23:37
  423k 2016/09/26 l:\misys\bin\cygssl-1.0.0.dll - os=4.0 img=1.0 sys=4.0
                  "cygssl-1.0.0.dll" v0.0 ts=2016-09-26 19:34
   13k 2016/06/14 l:\misys\bin\cygssp-0.dll - os=4.0 img=1.0 sys=4.0
                  "cygssp-0.dll" v0.0 ts=2016-06-14 11:12
 1439k 2016/06/14 l:\misys\bin\cygstdc++-6.dll - os=4.0 img=1.0 sys=4.0
                  "cygstdc++-6.dll" v0.0 ts=2016-06-14 10:36
   70k 2016/08/22 l:\misys\bin\cygtasn1-6.dll - os=4.0 img=1.0 sys=4.0
                  "cygtasn1-6.dll" v0.0 ts=2016-08-22 22:22
   34k 2014/11/12 l:\misys\bin\cygthai-0.dll - os=4.0 img=1.0 sys=4.0
                  "cygthai-0.dll" v0.0 ts=2014-11-12 10:46
   55k 2016/09/19 l:\misys\bin\cygticw-10.dll - os=4.0 img=1.0 sys=4.0
                  "cygticw-10.dll" v0.0 ts=2016-09-19 11:33
  444k 2015/10/28 l:\misys\bin\cygtiff-6.dll - os=4.0 img=1.0 sys=4.0
                  "cygtiff-6.dll" v0.0 ts=2015-10-29 02:00
   12k 2015/10/28 l:\misys\bin\cygtiffxx-6.dll - os=4.0 img=1.0 sys=4.0
                  "cygtiffxx-6.dll" v0.0 ts=2015-10-29 02:00
  221k 2016/05/10 l:\misys\bin\cygtxc_dxtn.dll - os=4.0 img=1.0 sys=4.0
                  "cygtxc_dxtn.dll" v0.0 ts=2016-05-10 11:02
 1570k 2015/10/16 l:\misys\bin\cygunistring-2.dll - os=4.0 img=1.0 sys=4.0
                  "cygunistring-2.dll" v0.0 ts=2015-10-17 02:09
   16k 2015/03/23 l:\misys\bin\cyguuid-1.dll - os=4.0 img=1.0 sys=4.0
                  "cyguuid-1.dll" v0.0 ts=2015-03-23 14:25
    8k 2016/06/14 l:\misys\bin\cygvtv-0.dll - os=4.0 img=1.0 sys=4.0
                  "cygvtv-0.dll" v0.0 ts=2016-06-14 11:12
    8k 2016/06/14 l:\misys\bin\cygvtv_stubs-0.dll - os=4.0 img=1.0 sys=4.0
                  "cygvtv_stubs-0.dll" v0.0 ts=2016-06-14 11:12
 1168k 2016/10/09 l:\misys\bin\cygX11-6.dll - os=4.0 img=1.0 sys=4.0
                  "cygX11-6.dll" v0.0 ts=2016-10-09 22:18
    8k 2016/10/09 l:\misys\bin\cygX11-xcb-1.dll - os=4.0 img=1.0 sys=4.0
                  "cygX11-xcb-1.dll" v0.0 ts=2016-10-09 22:17
   10k 2013/06/06 l:\misys\bin\cygXau-6.dll - os=4.0 img=1.0 sys=4.0
                  "cygXau-6.dll" v0.0 ts=2013-06-06 10:59
  124k 2016/08/09 l:\misys\bin\cygxcb-1.dll - os=4.0 img=1.0 sys=4.0
                  "cygxcb-1.dll" v0.0 ts=2016-08-10 02:38
   78k 2016/08/09 l:\misys\bin\cygxcb-glx-0.dll - os=4.0 img=1.0 sys=4.0
                  "cygxcb-glx-0.dll" v0.0 ts=2016-08-10 02:38
   19k 2014/08/10 l:\misys\bin\cygxcb-icccm-4.dll - os=4.0 img=1.0 sys=4.0
                  "cygxcb-icccm-4.dll" v0.0 ts=1970-01-01 05:30
   14k 2012/09/28 l:\misys\bin\cygxcb-image-0.dll - os=4.0 img=1.0 sys=4.0
                  "cygxcb-image-0.dll" v0.0 ts=2012-09-28 22:29
    9k 2012/09/28 l:\misys\bin\cygxcb-keysyms-1.dll - os=4.0 img=1.0 sys=4.0
                  "cygxcb-keysyms-1.dll" v0.0 ts=2012-09-28 22:35
   47k 2016/08/09 l:\misys\bin\cygxcb-randr-0.dll - os=4.0 img=1.0 sys=4.0
                  "cygxcb-randr-0.dll" v0.0 ts=2016-08-10 02:38
   42k 2016/08/09 l:\misys\bin\cygxcb-render-0.dll - os=4.0 img=1.0 sys=4.0
                  "cygxcb-render-0.dll" v0.0 ts=2016-08-10 02:38
   14k 2014/08/10 l:\misys\bin\cygxcb-render-util-0.dll - os=4.0 img=1.0 sys=4.0
                  "cygxcb-render-util-0.dll" v0.0 ts=1970-01-01 05:30
   13k 2016/08/09 l:\misys\bin\cygxcb-shape-0.dll - os=4.0 img=1.0 sys=4.0
                  "cygxcb-shape-0.dll" v0.0 ts=2016-08-10 02:38
   12k 2016/08/09 l:\misys\bin\cygxcb-shm-0.dll - os=4.0 img=1.0 sys=4.0
                  "cygxcb-shm-0.dll" v0.0 ts=2016-08-10 02:38
   22k 2016/08/09 l:\misys\bin\cygxcb-sync-1.dll - os=4.0 img=1.0 sys=4.0
                  "cygxcb-sync-1.dll" v0.0 ts=2016-08-10 02:38
   14k 2012/09/28 l:\misys\bin\cygxcb-util-1.dll - os=4.0 img=1.0 sys=4.0
                  "cygxcb-util-1.dll" v0.0 ts=2012-09-28 22:21
   25k 2016/08/09 l:\misys\bin\cygxcb-xfixes-0.dll - os=4.0 img=1.0 sys=4.0
                  "cygxcb-xfixes-0.dll" v0.0 ts=2016-08-10 02:38
   12k 2016/08/09 l:\misys\bin\cygxcb-xinerama-0.dll - os=4.0 img=1.0 sys=4.0
                  "cygxcb-xinerama-0.dll" v0.0 ts=2016-08-10 02:38
   90k 2016/08/09 l:\misys\bin\cygxcb-xkb-1.dll - os=4.0 img=1.0 sys=4.0
                  "cygxcb-xkb-1.dll" v0.0 ts=2016-08-10 02:38
   10k 2010/11/01 l:\misys\bin\cygXcomposite-1.dll - os=4.0 img=1.0 sys=4.0
                  "cygXcomposite-1.dll" v0.0 ts=2010-11-01 06:29
   35k 2013/06/06 l:\misys\bin\cygXcursor-1.dll - os=4.0 img=1.0 sys=4.0
                  "cygXcursor-1.dll" v0.0 ts=2013-06-07 02:03
    9k 2013/04/08 l:\misys\bin\cygXdamage-1.dll - os=4.0 img=1.0 sys=4.0
                  "cygXdamage-1.dll" v0.0 ts=2013-04-09 03:07
   22k 2015/03/26 l:\misys\bin\cygXdmcp-6.dll - os=4.0 img=1.0 sys=4.0
                  "cygXdmcp-6.dll" v0.0 ts=2015-03-26 20:08
   62k 2014/08/10 l:\misys\bin\cygXext-6.dll - os=4.0 img=1.0 sys=4.0
                  "cygXext-6.dll" v0.0 ts=1970-01-01 05:30
   21k 2016/10/09 l:\misys\bin\cygXfixes-3.dll - os=4.0 img=1.0 sys=4.0
                  "cygXfixes-3.dll" v0.0 ts=2016-10-09 23:07
   77k 2014/08/10 l:\misys\bin\cygXft-2.dll - os=4.0 img=1.0 sys=4.0
                  "cygXft-2.dll" v0.0 ts=1970-01-01 05:30
   60k 2016/10/26 l:\misys\bin\cygXi-6.dll - os=4.0 img=1.0 sys=4.0
                  "cygXi-6.dll" v0.0 ts=2016-10-26 07:08
    9k 2013/06/06 l:\misys\bin\cygXinerama-1.dll - os=4.0 img=1.0 sys=4.0
                  "cygXinerama-1.dll" v0.0 ts=2013-06-07 02:08
  233k 2015/07/16 l:\misys\bin\cygxkbcommon-0.dll - os=4.0 img=1.0 sys=4.0
                  "cygxkbcommon-0.dll" v0.0 ts=2015-07-17 03:43
   29k 2015/07/16 l:\misys\bin\cygxkbcommon-x11-0.dll - os=4.0 img=1.0 sys=4.0
                  "cygxkbcommon-x11-0.dll" v0.0 ts=2015-07-17 03:43
 1289k 2016/08/26 l:\misys\bin\cygxml2-2.dll - os=4.0 img=1.0 sys=4.0
                  "cygxml2-2.dll" v0.0 ts=2016-08-27 00:40
   39k 2016/10/09 l:\misys\bin\cygXrandr-2.dll - os=4.0 img=1.0 sys=4.0
                  "cygXrandr-2.dll" v0.0 ts=2016-10-09 23:15
   37k 2016/01/29 l:\misys\bin\cygXrender-1.dll - os=4.0 img=1.0 sys=4.0
                  "cygXrender-1.dll" v0.0 ts=2016-01-30 01:54
   83k 2014/11/19 l:\misys\bin\cygz.dll - os=4.0 img=1.0 sys=4.0
                  "cygz.dll" v0.0 ts=2014-11-20 04:27
 3364k 2016/08/31 l:\misys\bin\cygwin1.dll - os=4.0 img=1.0 sys=4.0
                  "cygwin1.dll" v0.0 ts=2016-08-31 17:57
    Cygwin DLL version info:
        DLL version: 2.6.0
        DLL epoch: 19
        DLL old termios: 5
        DLL malloc env: 28
        Cygwin conv: 181
        API major: 0
        API minor: 304
        Shared data: 5
        DLL identifier: cygwin1
        Mount registry: 3
        Cygwin registry name: Cygwin
        Installations name: Installations
        Cygdrive default prefix:
        Build date:
        Shared id: cygwin1S5


Can't find the cygrunsrv utility, skipping services check.


Cygwin Package Information
Last downloaded files to: C:\cyglocal
Last downloaded files from: http://cygwin.mirror.constant.com/

Package                                 Version                      Status
_autorebase                             001004-1                     OK
adwaita-icon-theme                      3.18.0-1                     OK
alternatives                            1.3.30c-10                   OK
autoconf                                13-1                         OK
autoconf2.1                             2.13-12                      OK
autoconf2.5                             2.69-3                       OK
automake                                9-1                          OK
automake1.10                            1.10.3-2                     OK
automake1.11                            1.11.6-2                     OK
automake1.12                            1.12.6-2                     OK
automake1.13                            1.13.4-1                     OK
automake1.14                            1.14.1-2                     OK
automake1.15                            1.15-1                       OK
automake1.4                             1.4p6-11                     OK
automake1.5                             1.5-11                       OK
automake1.6                             1.6.3-12                     OK
automake1.7                             1.7.9-11                     OK
automake1.8                             1.8.5-11                     OK
automake1.9                             1.9.6-11                     OK
base-cygwin                             3.8-1                        OK
base-files                              4.2-4                        OK
bash                                    4.3.46-7                     OK
binutils                                2.25-4                       OK
bison                                   3.0.4-1                      OK
bzip2                                   1.0.6-2                      OK
ca-certificates                         2.10-1                       OK
cmake                                   3.6.2-1                      OK
cmake-debuginfo                         3.6.2-1                      OK
cmake-doc                               3.6.2-1                      OK
cmake-gui                               3.6.2-1                      OK
colorgcc                                1.3.2-2                      OK
coreutils                               8.25-3                       OK
cygutils                                1.4.15-2                     OK
cygwin                                  2.6.0-1                      OK
cygwin-debuginfo                        2.6.0-1                      OK
cygwin-devel                            2.6.0-1                      OK
cygwin64                                2.6.0-1                      OK
cygwin64-binutils                       2.25-1                       OK
cygwin64-default-manifest               6.4-1                        OK
cygwin64-gcc-ada                        5.4.0-1                      OK
cygwin64-gcc-cilkplus                   5.4.0-1                      OK
cygwin64-gcc-core                       5.4.0-1                      OK
cygwin64-gcc-fortran                    5.4.0-1                      OK
cygwin64-gcc-g++                        5.4.0-1                      OK
cygwin64-gcc-objc                       5.4.0-1                      OK
cygwin64-gcc-objc++                     5.4.0-1                      OK
cygwin64-w32api-headers                 4.0.4-1                      OK
cygwin64-w32api-runtime                 4.0.4-1                      OK
dash                                    0.5.8-3                      OK
dejavu-fonts                            2.37-1                       OK
desktop-file-utils                      0.23-1                       OK
djgpp-binutils                          2.25-2                       OK
djgpp-gcc-ada                           5.4.0-1                      OK
djgpp-gcc-core                          5.4.0-1                      OK
djgpp-gcc-fortran                       5.4.0-1                      OK
djgpp-gcc-g++                           5.4.0-1                      OK
djgpp-gcc-objc                          5.4.0-1                      OK
djgpp-gcc-objc++                        5.4.0-1                      OK
djgpp-runtime                           2.05-1                       OK
dri-drivers                             12.0.2-1                     OK
editrights                              1.03-1                       OK
extra-cmake-modules                     5.27.0-1                     OK
file                                    5.25-1                       OK
findutils                               4.6.0-1                      OK
gamin                                   0.1.10-15                    OK
gawk                                    4.1.4-1                      OK
gcc-ada                                 5.4.0-1                      OK
gcc-cilkplus                            5.4.0-1                      OK
gcc-core                                5.4.0-1                      OK
gcc-fortran                             5.4.0-1                      OK
gcc-g++                                 5.4.0-1                      OK
gcc-java                                5.4.0-1                      OK
gcc-objc                                5.4.0-1                      OK
gcc-objc++                              5.4.0-1                      OK
Missing directory: /opt/ from package gcc-tools-epoch1-autoconf
Missing directory: /opt/gcc-tools/ from package gcc-tools-epoch1-autoconf
Missing directory: /opt/gcc-tools/bin/ from package gcc-tools-epoch1-autoconf
Missing file: /opt/gcc-tools/bin/autoconf-2.59 from package
gcc-tools-epoch1-autoconf
Missing file: /opt/gcc-tools/bin/autoheader-2.59 from package
gcc-tools-epoch1-autoconf
Missing file: /opt/gcc-tools/bin/autom4te-2.59 from package
gcc-tools-epoch1-autoconf
Missing file: /opt/gcc-tools/bin/autoreconf-2.59 from package
gcc-tools-epoch1-autoconf
Missing file: /opt/gcc-tools/bin/autoscan-2.59 from package
gcc-tools-epoch1-autoconf
Missing file: /opt/gcc-tools/bin/autoupdate-2.59 from package
gcc-tools-epoch1-autoconf
Missing file: /opt/gcc-tools/bin/ifnames-2.59 from package
gcc-tools-epoch1-autoconf
Missing directory: /opt/gcc-tools/epoch1/ from package gcc-tools-epoch1-autoconf
Missing directory: /opt/gcc-tools/epoch1/bin/ from package
gcc-tools-epoch1-autoconf
Missing file: /opt/gcc-tools/epoch1/bin/autoconf from package
gcc-tools-epoch1-autoconf
Missing file: /opt/gcc-tools/epoch1/bin/autoconf-2.59 from package
gcc-tools-epoch1-autoconf
Missing file: /opt/gcc-tools/epoch1/bin/autoheader from package
gcc-tools-epoch1-autoconf
Missing file: /opt/gcc-tools/epoch1/bin/autoheader-2.59 from package
gcc-tools-epoch1-autoconf
Missing file: /opt/gcc-tools/epoch1/bin/autom4te from package
gcc-tools-epoch1-autoconf
Missing file: /opt/gcc-tools/epoch1/bin/autom4te-2.59 from package
gcc-tools-epoch1-autoconf
Missing file: /opt/gcc-tools/epoch1/bin/autoreconf from package
gcc-tools-epoch1-autoconf
Missing file: /opt/gcc-tools/epoch1/bin/autoreconf-2.59 from package
gcc-tools-epoch1-autoconf
Missing file: /opt/gcc-tools/epoch1/bin/autoscan from package
gcc-tools-epoch1-autoconf
Missing file: /opt/gcc-tools/epoch1/bin/autoscan-2.59 from package
gcc-tools-epoch1-autoconf
Missing file: /opt/gcc-tools/epoch1/bin/autoupdate from package
gcc-tools-epoch1-autoconf
Missing file: /opt/gcc-tools/epoch1/bin/autoupdate-2.59 from package
gcc-tools-epoch1-autoconf
Missing file: /opt/gcc-tools/epoch1/bin/ifnames from package
gcc-tools-epoch1-autoconf
Missing file: /opt/gcc-tools/epoch1/bin/ifnames-2.59 from package
gcc-tools-epoch1-autoconf
Missing directory: /opt/gcc-tools/epoch1/share/ from package
gcc-tools-epoch1-autoconf
Missing directory: /opt/gcc-tools/epoch1/share/autoconf/ from package
gcc-tools-epoch1-autoconf
Missing directory: /opt/gcc-tools/epoch1/share/autoconf/autoconf/ from
package gcc-tools-epoch1-autoconf
Missing file: /opt/gcc-tools/epoch1/share/autoconf/autoconf/autoconf.m4
from package gcc-tools-epoch1-autoconf
Missing file: /opt/gcc-tools/epoch1/share/autoconf/autoconf/autoconf.m4f
from package gcc-tools-epoch1-autoconf
Missing file: /opt/gcc-tools/epoch1/share/autoconf/autoconf/autoheader.m4
from package gcc-tools-epoch1-autoconf
Missing file: /opt/gcc-tools/epoch1/share/autoconf/autoconf/autoscan.m4
from package gcc-tools-epoch1-autoconf
Missing file: /opt/gcc-tools/epoch1/share/autoconf/autoconf/autotest.m4
from package gcc-tools-epoch1-autoconf
Missing file: /opt/gcc-tools/epoch1/share/autoconf/autoconf/autoupdate.m4
from package gcc-tools-epoch1-autoconf
Missing file: /opt/gcc-tools/epoch1/share/autoconf/autoconf/c.m4 from
package gcc-tools-epoch1-autoconf
Missing file: /opt/gcc-tools/epoch1/share/autoconf/autoconf/fortran.m4
from package gcc-tools-epoch1-autoconf
Missing file: /opt/gcc-tools/epoch1/share/autoconf/autoconf/functions.m4
from package gcc-tools-epoch1-autoconf
Missing file: /opt/gcc-tools/epoch1/share/autoconf/autoconf/general.m4
from package gcc-tools-epoch1-autoconf
Missing file: /opt/gcc-tools/epoch1/share/autoconf/autoconf/headers.m4
from package gcc-tools-epoch1-autoconf
Missing file: /opt/gcc-tools/epoch1/share/autoconf/autoconf/lang.m4
from package gcc-tools-epoch1-autoconf
Missing file: /opt/gcc-tools/epoch1/share/autoconf/autoconf/libs.m4
from package gcc-tools-epoch1-autoconf
Missing file: /opt/gcc-tools/epoch1/share/autoconf/autoconf/oldnames.m4
from package gcc-tools-epoch1-autoconf
Missing file: /opt/gcc-tools/epoch1/share/autoconf/autoconf/programs.m4
from package gcc-tools-epoch1-autoconf
Missing file: /opt/gcc-tools/epoch1/share/autoconf/autoconf/specific.m4
from package gcc-tools-epoch1-autoconf
Missing file: /opt/gcc-tools/epoch1/share/autoconf/autoconf/status.m4
from package gcc-tools-epoch1-autoconf
Missing file: /opt/gcc-tools/epoch1/share/autoconf/autoconf/types.m4
from package gcc-tools-epoch1-autoconf
Missing directory: /opt/gcc-tools/epoch1/share/autoconf/Autom4te/ from
package gcc-tools-epoch1-autoconf
Missing file: /opt/gcc-tools/epoch1/share/autoconf/Autom4te/C4che.pm
from package gcc-tools-epoch1-autoconf
Missing file: /opt/gcc-tools/epoch1/share/autoconf/Autom4te/ChannelDefs.pm
from package gcc-tools-epoch1-autoconf
Missing file: /opt/gcc-tools/epoch1/share/autoconf/Autom4te/Channels.pm
from package gcc-tools-epoch1-autoconf
Missing file: /opt/gcc-tools/epoch1/share/autoconf/Autom4te/Configure_ac.pm
from package gcc-tools-epoch1-autoconf
Missing file: /opt/gcc-tools/epoch1/share/autoconf/Autom4te/FileUtils.pm
from package gcc-tools-epoch1-autoconf
Missing file: /opt/gcc-tools/epoch1/share/autoconf/Autom4te/General.pm
from package gcc-tools-epoch1-autoconf
Missing file: /opt/gcc-tools/epoch1/share/autoconf/Autom4te/Request.pm
from package gcc-tools-epoch1-autoconf
Missing file: /opt/gcc-tools/epoch1/share/autoconf/Autom4te/Struct.pm
from package gcc-tools-epoch1-autoconf
Missing file: /opt/gcc-tools/epoch1/share/autoconf/Autom4te/XFile.pm
from package gcc-tools-epoch1-autoconf
Missing file: /opt/gcc-tools/epoch1/share/autoconf/autom4te.cfg from
package gcc-tools-epoch1-autoconf
Missing directory: /opt/gcc-tools/epoch1/share/autoconf/autoscan/ from
package gcc-tools-epoch1-autoconf
Missing file: /opt/gcc-tools/epoch1/share/autoconf/autoscan/autoscan.list
from package gcc-tools-epoch1-autoconf
Missing directory: /opt/gcc-tools/epoch1/share/autoconf/autotest/ from
package gcc-tools-epoch1-autoconf
Missing file: /opt/gcc-tools/epoch1/share/autoconf/autotest/autotest.m4
from package gcc-tools-epoch1-autoconf
Missing file: /opt/gcc-tools/epoch1/share/autoconf/autotest/autotest.m4f
from package gcc-tools-epoch1-autoconf
Missing file: /opt/gcc-tools/epoch1/share/autoconf/autotest/general.m4
from package gcc-tools-epoch1-autoconf
Missing file: /opt/gcc-tools/epoch1/share/autoconf/INSTALL from
package gcc-tools-epoch1-autoconf
Missing directory: /opt/gcc-tools/epoch1/share/autoconf/m4sugar/ from
package gcc-tools-epoch1-autoconf
Missing file: /opt/gcc-tools/epoch1/share/autoconf/m4sugar/m4sh.m4
from package gcc-tools-epoch1-autoconf
Missing file: /opt/gcc-tools/epoch1/share/autoconf/m4sugar/m4sh.m4f
from package gcc-tools-epoch1-autoconf
Missing file: /opt/gcc-tools/epoch1/share/autoconf/m4sugar/m4sugar.m4
from package gcc-tools-epoch1-autoconf
Missing file: /opt/gcc-tools/epoch1/share/autoconf/m4sugar/m4sugar.m4f
from package gcc-tools-epoch1-autoconf
Missing file: /opt/gcc-tools/epoch1/share/autoconf/m4sugar/version.m4
from package gcc-tools-epoch1-autoconf
Missing directory: /opt/gcc-tools/epoch1/share/info/ from package
gcc-tools-epoch1-autoconf
Missing file: /opt/gcc-tools/epoch1/share/info/autoconf2.59.info from
package gcc-tools-epoch1-autoconf
Missing directory: /opt/gcc-tools/epoch1/share/man/ from package
gcc-tools-epoch1-autoconf
Missing directory: /opt/gcc-tools/epoch1/share/man/man1/ from package
gcc-tools-epoch1-autoconf
Missing file: /opt/gcc-tools/epoch1/share/man/man1/autoconf-2.59.1
from package gcc-tools-epoch1-autoconf
Missing file: /opt/gcc-tools/epoch1/share/man/man1/autoheader-2.59.1
from package gcc-tools-epoch1-autoconf
Missing file: /opt/gcc-tools/epoch1/share/man/man1/autom4te-2.59.1
from package gcc-tools-epoch1-autoconf
Missing file: /opt/gcc-tools/epoch1/share/man/man1/autoreconf-2.59.1
from package gcc-tools-epoch1-autoconf
Missing file: /opt/gcc-tools/epoch1/share/man/man1/autoscan-2.59.1
from package gcc-tools-epoch1-autoconf
Missing file: /opt/gcc-tools/epoch1/share/man/man1/autoupdate-2.59.1
from package gcc-tools-epoch1-autoconf
Missing file: /opt/gcc-tools/epoch1/share/man/man1/config.guess-2.59.1
from package gcc-tools-epoch1-autoconf
Missing file: /opt/gcc-tools/epoch1/share/man/man1/config.sub-2.59.1
from package gcc-tools-epoch1-autoconf
Missing file: /opt/gcc-tools/epoch1/share/man/man1/ifnames-2.59.1 from
package gcc-tools-epoch1-autoconf
gcc-tools-epoch1-autoconf               2.59-2                       Incomplete
Missing directory: /opt/ from package gcc-tools-epoch1-automake
Missing directory: /opt/gcc-tools/ from package gcc-tools-epoch1-automake
Missing directory: /opt/gcc-tools/bin/ from package gcc-tools-epoch1-automake
Missing file: /opt/gcc-tools/bin/aclocal-1.9 from package
gcc-tools-epoch1-automake
Missing file: /opt/gcc-tools/bin/automake-1.9 from package
gcc-tools-epoch1-automake
Missing directory: /opt/gcc-tools/epoch1/ from package gcc-tools-epoch1-automake
Missing directory: /opt/gcc-tools/epoch1/bin/ from package
gcc-tools-epoch1-automake
Missing file: /opt/gcc-tools/epoch1/bin/aclocal from package
gcc-tools-epoch1-automake
Missing file: /opt/gcc-tools/epoch1/bin/aclocal-1.9 from package
gcc-tools-epoch1-automake
Missing file: /opt/gcc-tools/epoch1/bin/automake from package
gcc-tools-epoch1-automake
Missing file: /opt/gcc-tools/epoch1/bin/automake-1.9 from package
gcc-tools-epoch1-automake
Missing directory: /opt/gcc-tools/epoch1/share/ from package
gcc-tools-epoch1-automake
Missing directory: /opt/gcc-tools/epoch1/share/aclocal/ from package
gcc-tools-epoch1-automake
Missing file: /opt/gcc-tools/epoch1/share/aclocal/.keep-gcc-tools-epoch1-automake
from package gcc-tools-epoch1-automake
Missing file: /opt/gcc-tools/epoch1/share/aclocal/dirlist from package
gcc-tools-epoch1-automake
Missing directory: /opt/gcc-tools/epoch1/share/aclocal-1.9/ from
package gcc-tools-epoch1-automake
Missing file: /opt/gcc-tools/epoch1/share/aclocal-1.9/amversion.m4
from package gcc-tools-epoch1-automake
Missing file: /opt/gcc-tools/epoch1/share/aclocal-1.9/as.m4 from
package gcc-tools-epoch1-automake
Missing file: /opt/gcc-tools/epoch1/share/aclocal-1.9/auxdir.m4 from
package gcc-tools-epoch1-automake
Missing file: /opt/gcc-tools/epoch1/share/aclocal-1.9/ccstdc.m4 from
package gcc-tools-epoch1-automake
Missing file: /opt/gcc-tools/epoch1/share/aclocal-1.9/cond.m4 from
package gcc-tools-epoch1-automake
Missing file: /opt/gcc-tools/epoch1/share/aclocal-1.9/depend.m4 from
package gcc-tools-epoch1-automake
Missing file: /opt/gcc-tools/epoch1/share/aclocal-1.9/depout.m4 from
package gcc-tools-epoch1-automake
Missing file: /opt/gcc-tools/epoch1/share/aclocal-1.9/dmalloc.m4 from
package gcc-tools-epoch1-automake
Missing file: /opt/gcc-tools/epoch1/share/aclocal-1.9/gcj.m4 from
package gcc-tools-epoch1-automake
Missing file: /opt/gcc-tools/epoch1/share/aclocal-1.9/header.m4 from
package gcc-tools-epoch1-automake
Missing file: /opt/gcc-tools/epoch1/share/aclocal-1.9/init.m4 from
package gcc-tools-epoch1-automake
Missing file: /opt/gcc-tools/epoch1/share/aclocal-1.9/install-sh.m4
from package gcc-tools-epoch1-automake
Missing file: /opt/gcc-tools/epoch1/share/aclocal-1.9/lead-dot.m4 from
package gcc-tools-epoch1-automake
Missing file: /opt/gcc-tools/epoch1/share/aclocal-1.9/lex.m4 from
package gcc-tools-epoch1-automake
Missing file: /opt/gcc-tools/epoch1/share/aclocal-1.9/lispdir.m4 from
package gcc-tools-epoch1-automake
Missing file: /opt/gcc-tools/epoch1/share/aclocal-1.9/maintainer.m4
from package gcc-tools-epoch1-automake
Missing file: /opt/gcc-tools/epoch1/share/aclocal-1.9/make.m4 from
package gcc-tools-epoch1-automake
Missing file: /opt/gcc-tools/epoch1/share/aclocal-1.9/minuso.m4 from
package gcc-tools-epoch1-automake
Missing file: /opt/gcc-tools/epoch1/share/aclocal-1.9/missing.m4 from
package gcc-tools-epoch1-automake
Missing file: /opt/gcc-tools/epoch1/share/aclocal-1.9/mkdirp.m4 from
package gcc-tools-epoch1-automake
Missing file: /opt/gcc-tools/epoch1/share/aclocal-1.9/multi.m4 from
package gcc-tools-epoch1-automake
Missing file: /opt/gcc-tools/epoch1/share/aclocal-1.9/obsol-gt.m4 from
package gcc-tools-epoch1-automake
Missing file: /opt/gcc-tools/epoch1/share/aclocal-1.9/obsol-lt.m4 from
package gcc-tools-epoch1-automake
Missing file: /opt/gcc-tools/epoch1/share/aclocal-1.9/obsolete.m4 from
package gcc-tools-epoch1-automake
Missing file: /opt/gcc-tools/epoch1/share/aclocal-1.9/options.m4 from
package gcc-tools-epoch1-automake
Missing file: /opt/gcc-tools/epoch1/share/aclocal-1.9/protos.m4 from
package gcc-tools-epoch1-automake
Missing file: /opt/gcc-tools/epoch1/share/aclocal-1.9/python.m4 from
package gcc-tools-epoch1-automake
Missing file: /opt/gcc-tools/epoch1/share/aclocal-1.9/regex.m4 from
package gcc-tools-epoch1-automake
Missing file: /opt/gcc-tools/epoch1/share/aclocal-1.9/runlog.m4 from
package gcc-tools-epoch1-automake
Missing file: /opt/gcc-tools/epoch1/share/aclocal-1.9/sanity.m4 from
package gcc-tools-epoch1-automake
Missing file: /opt/gcc-tools/epoch1/share/aclocal-1.9/strip.m4 from
package gcc-tools-epoch1-automake
Missing file: /opt/gcc-tools/epoch1/share/aclocal-1.9/tar.m4 from
package gcc-tools-epoch1-automake
Missing directory: /opt/gcc-tools/epoch1/share/automake-1.9/ from
package gcc-tools-epoch1-automake
Missing file: /opt/gcc-tools/epoch1/share/automake-1.9/acinstall from
package gcc-tools-epoch1-automake
Missing directory: /opt/gcc-tools/epoch1/share/automake-1.9/am/ from
package gcc-tools-epoch1-automake
Missing file: /opt/gcc-tools/epoch1/share/automake-1.9/am/ansi2knr.am
from package gcc-tools-epoch1-automake
Missing file: /opt/gcc-tools/epoch1/share/automake-1.9/am/check.am
from package gcc-tools-epoch1-automake
Missing file: /opt/gcc-tools/epoch1/share/automake-1.9/am/clean-hdr.am
from package gcc-tools-epoch1-automake
Missing file: /opt/gcc-tools/epoch1/share/automake-1.9/am/clean.am
from package gcc-tools-epoch1-automake
Missing file: /opt/gcc-tools/epoch1/share/automake-1.9/am/compile.am
from package gcc-tools-epoch1-automake
Missing file: /opt/gcc-tools/epoch1/share/automake-1.9/am/configure.am
from package gcc-tools-epoch1-automake
Missing file: /opt/gcc-tools/epoch1/share/automake-1.9/am/data.am from
package gcc-tools-epoch1-automake
Missing file: /opt/gcc-tools/epoch1/share/automake-1.9/am/dejagnu.am
from package gcc-tools-epoch1-automake
Missing file: /opt/gcc-tools/epoch1/share/automake-1.9/am/depend.am
from package gcc-tools-epoch1-automake
Missing file: /opt/gcc-tools/epoch1/share/automake-1.9/am/depend2.am
from package gcc-tools-epoch1-automake
Missing file: /opt/gcc-tools/epoch1/share/automake-1.9/am/distdir.am
from package gcc-tools-epoch1-automake
Missing file: /opt/gcc-tools/epoch1/share/automake-1.9/am/footer.am
from package gcc-tools-epoch1-automake
Missing file: /opt/gcc-tools/epoch1/share/automake-1.9/am/header-vars.am
from package gcc-tools-epoch1-automake
Missing file: /opt/gcc-tools/epoch1/share/automake-1.9/am/header.am
from package gcc-tools-epoch1-automake
Missing file: /opt/gcc-tools/epoch1/share/automake-1.9/am/inst-vars.am
from package gcc-tools-epoch1-automake
Missing file: /opt/gcc-tools/epoch1/share/automake-1.9/am/install.am
from package gcc-tools-epoch1-automake
Missing file: /opt/gcc-tools/epoch1/share/automake-1.9/am/java.am from
package gcc-tools-epoch1-automake
Missing file: /opt/gcc-tools/epoch1/share/automake-1.9/am/lang-compile.am
from package gcc-tools-epoch1-automake
Missing file: /opt/gcc-tools/epoch1/share/automake-1.9/am/lex.am from
package gcc-tools-epoch1-automake
Missing file: /opt/gcc-tools/epoch1/share/automake-1.9/am/library.am
from package gcc-tools-epoch1-automake
Missing file: /opt/gcc-tools/epoch1/share/automake-1.9/am/libs.am from
package gcc-tools-epoch1-automake
Missing file: /opt/gcc-tools/epoch1/share/automake-1.9/am/libtool.am
from package gcc-tools-epoch1-automake
Missing file: /opt/gcc-tools/epoch1/share/automake-1.9/am/lisp.am from
package gcc-tools-epoch1-automake
Missing file: /opt/gcc-tools/epoch1/share/automake-1.9/am/ltlib.am
from package gcc-tools-epoch1-automake
Missing file: /opt/gcc-tools/epoch1/share/automake-1.9/am/ltlibrary.am
from package gcc-tools-epoch1-automake
Missing file: /opt/gcc-tools/epoch1/share/automake-1.9/am/mans-vars.am
from package gcc-tools-epoch1-automake
Missing file: /opt/gcc-tools/epoch1/share/automake-1.9/am/mans.am from
package gcc-tools-epoch1-automake
Missing file: /opt/gcc-tools/epoch1/share/automake-1.9/am/multilib.am
from package gcc-tools-epoch1-automake
Missing file: /opt/gcc-tools/epoch1/share/automake-1.9/am/program.am
from package gcc-tools-epoch1-automake
Missing file: /opt/gcc-tools/epoch1/share/automake-1.9/am/progs.am
from package gcc-tools-epoch1-automake
Missing file: /opt/gcc-tools/epoch1/share/automake-1.9/am/python.am
from package gcc-tools-epoch1-automake
Missing file: /opt/gcc-tools/epoch1/share/automake-1.9/am/remake-hdr.am
from package gcc-tools-epoch1-automake
Missing file: /opt/gcc-tools/epoch1/share/automake-1.9/am/scripts.am
from package gcc-tools-epoch1-automake
Missing file: /opt/gcc-tools/epoch1/share/automake-1.9/am/subdirs.am
from package gcc-tools-epoch1-automake
Missing file: /opt/gcc-tools/epoch1/share/automake-1.9/am/tags.am from
package gcc-tools-epoch1-automake
Missing file: /opt/gcc-tools/epoch1/share/automake-1.9/am/texi-vers.am
from package gcc-tools-epoch1-automake
Missing file: /opt/gcc-tools/epoch1/share/automake-1.9/am/texibuild.am
from package gcc-tools-epoch1-automake
Missing file: /opt/gcc-tools/epoch1/share/automake-1.9/am/texinfos.am
from package gcc-tools-epoch1-automake
Missing file: /opt/gcc-tools/epoch1/share/automake-1.9/am/yacc.am from
package gcc-tools-epoch1-automake
Missing file: /opt/gcc-tools/epoch1/share/automake-1.9/ansi2knr.1 from
package gcc-tools-epoch1-automake
Missing file: /opt/gcc-tools/epoch1/share/automake-1.9/ansi2knr.c from
package gcc-tools-epoch1-automake
Missing directory: /opt/gcc-tools/epoch1/share/automake-1.9/Automake/
from package gcc-tools-epoch1-automake
Missing file: /opt/gcc-tools/epoch1/share/automake-1.9/Automake/ChannelDefs.pm
from package gcc-tools-epoch1-automake
Missing file: /opt/gcc-tools/epoch1/share/automake-1.9/Automake/Channels.pm
from package gcc-tools-epoch1-automake
Missing file: /opt/gcc-tools/epoch1/share/automake-1.9/Automake/Condition.pm
from package gcc-tools-epoch1-automake
Missing file: /opt/gcc-tools/epoch1/share/automake-1.9/Automake/Config.pm
from package gcc-tools-epoch1-automake
Missing file: /opt/gcc-tools/epoch1/share/automake-1.9/Automake/Configure_ac.pm
from package gcc-tools-epoch1-automake
Missing file: /opt/gcc-tools/epoch1/share/automake-1.9/Automake/DisjConditions.pm
from package gcc-tools-epoch1-automake
Missing file: /opt/gcc-tools/epoch1/share/automake-1.9/Automake/FileUtils.pm
from package gcc-tools-epoch1-automake
Missing file: /opt/gcc-tools/epoch1/share/automake-1.9/Automake/General.pm
from package gcc-tools-epoch1-automake
Missing file: /opt/gcc-tools/epoch1/share/automake-1.9/Automake/Item.pm
from package gcc-tools-epoch1-automake
Missing file: /opt/gcc-tools/epoch1/share/automake-1.9/Automake/ItemDef.pm
from package gcc-tools-epoch1-automake
Missing file: /opt/gcc-tools/epoch1/share/automake-1.9/Automake/Location.pm
from package gcc-tools-epoch1-automake
Missing file: /opt/gcc-tools/epoch1/share/automake-1.9/Automake/Options.pm
from package gcc-tools-epoch1-automake
Missing file: /opt/gcc-tools/epoch1/share/automake-1.9/Automake/Rule.pm
from package gcc-tools-epoch1-automake
Missing file: /opt/gcc-tools/epoch1/share/automake-1.9/Automake/RuleDef.pm
from package gcc-tools-epoch1-automake
Missing file: /opt/gcc-tools/epoch1/share/automake-1.9/Automake/Struct.pm
from package gcc-tools-epoch1-automake
Missing file: /opt/gcc-tools/epoch1/share/automake-1.9/Automake/VarDef.pm
from package gcc-tools-epoch1-automake
Missing file: /opt/gcc-tools/epoch1/share/automake-1.9/Automake/Variable.pm
from package gcc-tools-epoch1-automake
Missing file: /opt/gcc-tools/epoch1/share/automake-1.9/Automake/Version.pm
from package gcc-tools-epoch1-automake
Missing file: /opt/gcc-tools/epoch1/share/automake-1.9/Automake/Wrap.pm
from package gcc-tools-epoch1-automake
Missing file: /opt/gcc-tools/epoch1/share/automake-1.9/Automake/XFile.pm
from package gcc-tools-epoch1-automake
Missing file: /opt/gcc-tools/epoch1/share/automake-1.9/compile from
package gcc-tools-epoch1-automake
Missing file: /opt/gcc-tools/epoch1/share/automake-1.9/config-ml.in
from package gcc-tools-epoch1-automake
Missing file: /opt/gcc-tools/epoch1/share/automake-1.9/config.guess
from package gcc-tools-epoch1-automake
Missing file: /opt/gcc-tools/epoch1/share/automake-1.9/config.sub from
package gcc-tools-epoch1-automake
Missing file: /opt/gcc-tools/epoch1/share/automake-1.9/COPYING from
package gcc-tools-epoch1-automake
Missing file: /opt/gcc-tools/epoch1/share/automake-1.9/depcomp from
package gcc-tools-epoch1-automake
Missing file: /opt/gcc-tools/epoch1/share/automake-1.9/elisp-comp from
package gcc-tools-epoch1-automake
Missing file: /opt/gcc-tools/epoch1/share/automake-1.9/INSTALL from
package gcc-tools-epoch1-automake
Missing file: /opt/gcc-tools/epoch1/share/automake-1.9/install-sh from
package gcc-tools-epoch1-automake
Missing file: /opt/gcc-tools/epoch1/share/automake-1.9/mdate-sh from
package gcc-tools-epoch1-automake
Missing file: /opt/gcc-tools/epoch1/share/automake-1.9/missing from
package gcc-tools-epoch1-automake
Missing file: /opt/gcc-tools/epoch1/share/automake-1.9/mkinstalldirs
from package gcc-tools-epoch1-automake
Missing file: /opt/gcc-tools/epoch1/share/automake-1.9/py-compile from
package gcc-tools-epoch1-automake
Missing file: /opt/gcc-tools/epoch1/share/automake-1.9/symlink-tree
from package gcc-tools-epoch1-automake
Missing file: /opt/gcc-tools/epoch1/share/automake-1.9/texinfo.tex
from package gcc-tools-epoch1-automake
Missing file: /opt/gcc-tools/epoch1/share/automake-1.9/ylwrap from
package gcc-tools-epoch1-automake
Missing directory: /opt/gcc-tools/epoch1/share/info/ from package
gcc-tools-epoch1-automake
Missing file: /opt/gcc-tools/epoch1/share/info/automake1.9.info from
package gcc-tools-epoch1-automake
Missing file: /opt/gcc-tools/epoch1/share/info/automake1.9.info-1 from
package gcc-tools-epoch1-automake
Missing file: /opt/gcc-tools/epoch1/share/info/automake1.9.info-2 from
package gcc-tools-epoch1-automake
gcc-tools-epoch1-automake               1.9.6-2                      Incomplete
Missing directory: /opt/ from package gcc-tools-epoch2-autoconf
Missing directory: /opt/gcc-tools/ from package gcc-tools-epoch2-autoconf
Missing directory: /opt/gcc-tools/bin/ from package gcc-tools-epoch2-autoconf
Missing file: /opt/gcc-tools/bin/autoconf-2.64 from package
gcc-tools-epoch2-autoconf
Missing file: /opt/gcc-tools/bin/autoheader-2.64 from package
gcc-tools-epoch2-autoconf
Missing file: /opt/gcc-tools/bin/autom4te-2.64 from package
gcc-tools-epoch2-autoconf
Missing file: /opt/gcc-tools/bin/autoreconf-2.64 from package
gcc-tools-epoch2-autoconf
Missing file: /opt/gcc-tools/bin/autoscan-2.64 from package
gcc-tools-epoch2-autoconf
Missing file: /opt/gcc-tools/bin/autoupdate-2.64 from package
gcc-tools-epoch2-autoconf
Missing file: /opt/gcc-tools/bin/ifnames-2.64 from package
gcc-tools-epoch2-autoconf
Missing directory: /opt/gcc-tools/epoch2/ from package gcc-tools-epoch2-autoconf
Missing directory: /opt/gcc-tools/epoch2/bin/ from package
gcc-tools-epoch2-autoconf
Missing file: /opt/gcc-tools/epoch2/bin/autoconf from package
gcc-tools-epoch2-autoconf
Missing file: /opt/gcc-tools/epoch2/bin/autoconf-2.64 from package
gcc-tools-epoch2-autoconf
Missing file: /opt/gcc-tools/epoch2/bin/autoheader from package
gcc-tools-epoch2-autoconf
Missing file: /opt/gcc-tools/epoch2/bin/autoheader-2.64 from package
gcc-tools-epoch2-autoconf
Missing file: /opt/gcc-tools/epoch2/bin/autom4te from package
gcc-tools-epoch2-autoconf
Missing file: /opt/gcc-tools/epoch2/bin/autom4te-2.64 from package
gcc-tools-epoch2-autoconf
Missing file: /opt/gcc-tools/epoch2/bin/autoreconf from package
gcc-tools-epoch2-autoconf
Missing file: /opt/gcc-tools/epoch2/bin/autoreconf-2.64 from package
gcc-tools-epoch2-autoconf
Missing file: /opt/gcc-tools/epoch2/bin/autoscan from package
gcc-tools-epoch2-autoconf
Missing file: /opt/gcc-tools/epoch2/bin/autoscan-2.64 from package
gcc-tools-epoch2-autoconf
Missing file: /opt/gcc-tools/epoch2/bin/autoupdate from package
gcc-tools-epoch2-autoconf
Missing file: /opt/gcc-tools/epoch2/bin/autoupdate-2.64 from package
gcc-tools-epoch2-autoconf
Missing file: /opt/gcc-tools/epoch2/bin/ifnames from package
gcc-tools-epoch2-autoconf
Missing file: /opt/gcc-tools/epoch2/bin/ifnames-2.64 from package
gcc-tools-epoch2-autoconf
Missing directory: /opt/gcc-tools/epoch2/share/ from package
gcc-tools-epoch2-autoconf
Missing directory: /opt/gcc-tools/epoch2/share/autoconf/ from package
gcc-tools-epoch2-autoconf
Missing directory: /opt/gcc-tools/epoch2/share/autoconf/autoconf/ from
package gcc-tools-epoch2-autoconf
Missing file: /opt/gcc-tools/epoch2/share/autoconf/autoconf/autoconf.m4
from package gcc-tools-epoch2-autoconf
Missing file: /opt/gcc-tools/epoch2/share/autoconf/autoconf/autoconf.m4f
from package gcc-tools-epoch2-autoconf
Missing file: /opt/gcc-tools/epoch2/share/autoconf/autoconf/autoheader.m4
from package gcc-tools-epoch2-autoconf
Missing file: /opt/gcc-tools/epoch2/share/autoconf/autoconf/autoscan.m4
from package gcc-tools-epoch2-autoconf
Missing file: /opt/gcc-tools/epoch2/share/autoconf/autoconf/autotest.m4
from package gcc-tools-epoch2-autoconf
Missing file: /opt/gcc-tools/epoch2/share/autoconf/autoconf/autoupdate.m4
from package gcc-tools-epoch2-autoconf
Missing file: /opt/gcc-tools/epoch2/share/autoconf/autoconf/c.m4 from
package gcc-tools-epoch2-autoconf
Missing file: /opt/gcc-tools/epoch2/share/autoconf/autoconf/erlang.m4
from package gcc-tools-epoch2-autoconf
Missing file: /opt/gcc-tools/epoch2/share/autoconf/autoconf/fortran.m4
from package gcc-tools-epoch2-autoconf
Missing file: /opt/gcc-tools/epoch2/share/autoconf/autoconf/functions.m4
from package gcc-tools-epoch2-autoconf
Missing file: /opt/gcc-tools/epoch2/share/autoconf/autoconf/general.m4
from package gcc-tools-epoch2-autoconf
Missing file: /opt/gcc-tools/epoch2/share/autoconf/autoconf/headers.m4
from package gcc-tools-epoch2-autoconf
Missing file: /opt/gcc-tools/epoch2/share/autoconf/autoconf/lang.m4
from package gcc-tools-epoch2-autoconf
Missing file: /opt/gcc-tools/epoch2/share/autoconf/autoconf/libs.m4
from package gcc-tools-epoch2-autoconf
Missing file: /opt/gcc-tools/epoch2/share/autoconf/autoconf/oldnames.m4
from package gcc-tools-epoch2-autoconf
Missing file: /opt/gcc-tools/epoch2/share/autoconf/autoconf/programs.m4
from package gcc-tools-epoch2-autoconf
Missing file: /opt/gcc-tools/epoch2/share/autoconf/autoconf/specific.m4
from package gcc-tools-epoch2-autoconf
Missing file: /opt/gcc-tools/epoch2/share/autoconf/autoconf/status.m4
from package gcc-tools-epoch2-autoconf
Missing file: /opt/gcc-tools/epoch2/share/autoconf/autoconf/types.m4
from package gcc-tools-epoch2-autoconf
Missing directory: /opt/gcc-tools/epoch2/share/autoconf/Autom4te/ from
package gcc-tools-epoch2-autoconf
Missing file: /opt/gcc-tools/epoch2/share/autoconf/Autom4te/C4che.pm
from package gcc-tools-epoch2-autoconf
Missing file: /opt/gcc-tools/epoch2/share/autoconf/Autom4te/ChannelDefs.pm
from package gcc-tools-epoch2-autoconf
Missing file: /opt/gcc-tools/epoch2/share/autoconf/Autom4te/Channels.pm
from package gcc-tools-epoch2-autoconf
Missing file: /opt/gcc-tools/epoch2/share/autoconf/Autom4te/Configure_ac.pm
from package gcc-tools-epoch2-autoconf
Missing file: /opt/gcc-tools/epoch2/share/autoconf/Autom4te/FileUtils.pm
from package gcc-tools-epoch2-autoconf
Missing file: /opt/gcc-tools/epoch2/share/autoconf/Autom4te/General.pm
from package gcc-tools-epoch2-autoconf
Missing file: /opt/gcc-tools/epoch2/share/autoconf/Autom4te/Request.pm
from package gcc-tools-epoch2-autoconf
Missing file: /opt/gcc-tools/epoch2/share/autoconf/Autom4te/Struct.pm
from package gcc-tools-epoch2-autoconf
Missing file: /opt/gcc-tools/epoch2/share/autoconf/Autom4te/XFile.pm
from package gcc-tools-epoch2-autoconf
Missing file: /opt/gcc-tools/epoch2/share/autoconf/autom4te.cfg from
package gcc-tools-epoch2-autoconf
Missing directory: /opt/gcc-tools/epoch2/share/autoconf/autoscan/ from
package gcc-tools-epoch2-autoconf
Missing file: /opt/gcc-tools/epoch2/share/autoconf/autoscan/autoscan.list
from package gcc-tools-epoch2-autoconf
Missing directory: /opt/gcc-tools/epoch2/share/autoconf/autotest/ from
package gcc-tools-epoch2-autoconf
Missing file: /opt/gcc-tools/epoch2/share/autoconf/autotest/autotest.m4
from package gcc-tools-epoch2-autoconf
Missing file: /opt/gcc-tools/epoch2/share/autoconf/autotest/autotest.m4f
from package gcc-tools-epoch2-autoconf
Missing file: /opt/gcc-tools/epoch2/share/autoconf/autotest/general.m4
from package gcc-tools-epoch2-autoconf
Missing file: /opt/gcc-tools/epoch2/share/autoconf/INSTALL from
package gcc-tools-epoch2-autoconf
Missing directory: /opt/gcc-tools/epoch2/share/autoconf/m4sugar/ from
package gcc-tools-epoch2-autoconf
Missing file: /opt/gcc-tools/epoch2/share/autoconf/m4sugar/foreach.m4
from package gcc-tools-epoch2-autoconf
Missing file: /opt/gcc-tools/epoch2/share/autoconf/m4sugar/m4sh.m4
from package gcc-tools-epoch2-autoconf
Missing file: /opt/gcc-tools/epoch2/share/autoconf/m4sugar/m4sh.m4f
from package gcc-tools-epoch2-autoconf
Missing file: /opt/gcc-tools/epoch2/share/autoconf/m4sugar/m4sugar.m4
from package gcc-tools-epoch2-autoconf
Missing file: /opt/gcc-tools/epoch2/share/autoconf/m4sugar/m4sugar.m4f
from package gcc-tools-epoch2-autoconf
Missing file: /opt/gcc-tools/epoch2/share/autoconf/m4sugar/version.m4
from package gcc-tools-epoch2-autoconf
Missing directory: /opt/gcc-tools/epoch2/share/info/ from package
gcc-tools-epoch2-autoconf
Missing file: /opt/gcc-tools/epoch2/share/info/autoconf2.64.info from
package gcc-tools-epoch2-autoconf
Missing directory: /opt/gcc-tools/epoch2/share/man/ from package
gcc-tools-epoch2-autoconf
Missing directory: /opt/gcc-tools/epoch2/share/man/man1/ from package
gcc-tools-epoch2-autoconf
Missing file: /opt/gcc-tools/epoch2/share/man/man1/autoconf-2.64.1
from package gcc-tools-epoch2-autoconf
Missing file: /opt/gcc-tools/epoch2/share/man/man1/autoheader-2.64.1
from package gcc-tools-epoch2-autoconf
Missing file: /opt/gcc-tools/epoch2/share/man/man1/autom4te-2.64.1
from package gcc-tools-epoch2-autoconf
Missing file: /opt/gcc-tools/epoch2/share/man/man1/autoreconf-2.64.1
from package gcc-tools-epoch2-autoconf
Missing file: /opt/gcc-tools/epoch2/share/man/man1/autoscan-2.64.1
from package gcc-tools-epoch2-autoconf
Missing file: /opt/gcc-tools/epoch2/share/man/man1/autoupdate-2.64.1
from package gcc-tools-epoch2-autoconf
Missing file: /opt/gcc-tools/epoch2/share/man/man1/config.guess-2.64.1
from package gcc-tools-epoch2-autoconf
Missing file: /opt/gcc-tools/epoch2/share/man/man1/config.sub-2.64.1
from package gcc-tools-epoch2-autoconf
Missing file: /opt/gcc-tools/epoch2/share/man/man1/ifnames-2.64.1 from
package gcc-tools-epoch2-autoconf
gcc-tools-epoch2-autoconf               2.64-2                       Incomplete
Missing directory: /opt/ from package gcc-tools-epoch2-automake
Missing directory: /opt/gcc-tools/ from package gcc-tools-epoch2-automake
Missing directory: /opt/gcc-tools/bin/ from package gcc-tools-epoch2-automake
Missing file: /opt/gcc-tools/bin/aclocal-1.11 from package
gcc-tools-epoch2-automake
Missing file: /opt/gcc-tools/bin/automake-1.11 from package
gcc-tools-epoch2-automake
Missing directory: /opt/gcc-tools/epoch2/ from package gcc-tools-epoch2-automake
Missing directory: /opt/gcc-tools/epoch2/bin/ from package
gcc-tools-epoch2-automake
Missing file: /opt/gcc-tools/epoch2/bin/aclocal from package
gcc-tools-epoch2-automake
Missing file: /opt/gcc-tools/epoch2/bin/aclocal-1.11 from package
gcc-tools-epoch2-automake
Missing file: /opt/gcc-tools/epoch2/bin/automake from package
gcc-tools-epoch2-automake
Missing file: /opt/gcc-tools/epoch2/bin/automake-1.11 from package
gcc-tools-epoch2-automake
Missing directory: /opt/gcc-tools/epoch2/share/ from package
gcc-tools-epoch2-automake
Missing directory: /opt/gcc-tools/epoch2/share/aclocal/ from package
gcc-tools-epoch2-automake
Missing file: /opt/gcc-tools/epoch2/share/aclocal/.keep-gcc-tools-epoch2-automake
from package gcc-tools-epoch2-automake
Missing file: /opt/gcc-tools/epoch2/share/aclocal/dirlist from package
gcc-tools-epoch2-automake
Missing directory: /opt/gcc-tools/epoch2/share/aclocal-1.11/ from
package gcc-tools-epoch2-automake
Missing file: /opt/gcc-tools/epoch2/share/aclocal-1.11/amversion.m4
from package gcc-tools-epoch2-automake
Missing file: /opt/gcc-tools/epoch2/share/aclocal-1.11/ar-lib.m4 from
package gcc-tools-epoch2-automake
Missing file: /opt/gcc-tools/epoch2/share/aclocal-1.11/as.m4 from
package gcc-tools-epoch2-automake
Missing file: /opt/gcc-tools/epoch2/share/aclocal-1.11/auxdir.m4 from
package gcc-tools-epoch2-automake
Missing file: /opt/gcc-tools/epoch2/share/aclocal-1.11/ccstdc.m4 from
package gcc-tools-epoch2-automake
Missing file: /opt/gcc-tools/epoch2/share/aclocal-1.11/cond-if.m4 from
package gcc-tools-epoch2-automake
Missing file: /opt/gcc-tools/epoch2/share/aclocal-1.11/cond.m4 from
package gcc-tools-epoch2-automake
Missing file: /opt/gcc-tools/epoch2/share/aclocal-1.11/depend.m4 from
package gcc-tools-epoch2-automake
Missing file: /opt/gcc-tools/epoch2/share/aclocal-1.11/depout.m4 from
package gcc-tools-epoch2-automake
Missing file: /opt/gcc-tools/epoch2/share/aclocal-1.11/dmalloc.m4 from
package gcc-tools-epoch2-automake
Missing file: /opt/gcc-tools/epoch2/share/aclocal-1.11/gcj.m4 from
package gcc-tools-epoch2-automake
Missing file: /opt/gcc-tools/epoch2/share/aclocal-1.11/header.m4 from
package gcc-tools-epoch2-automake
Missing file: /opt/gcc-tools/epoch2/share/aclocal-1.11/init.m4 from
package gcc-tools-epoch2-automake
Missing file: /opt/gcc-tools/epoch2/share/aclocal-1.11/install-sh.m4
from package gcc-tools-epoch2-automake
Missing file: /opt/gcc-tools/epoch2/share/aclocal-1.11/lead-dot.m4
from package gcc-tools-epoch2-automake
Missing file: /opt/gcc-tools/epoch2/share/aclocal-1.11/lex.m4 from
package gcc-tools-epoch2-automake
Missing file: /opt/gcc-tools/epoch2/share/aclocal-1.11/lispdir.m4 from
package gcc-tools-epoch2-automake
Missing file: /opt/gcc-tools/epoch2/share/aclocal-1.11/maintainer.m4
from package gcc-tools-epoch2-automake
Missing file: /opt/gcc-tools/epoch2/share/aclocal-1.11/make.m4 from
package gcc-tools-epoch2-automake
Missing file: /opt/gcc-tools/epoch2/share/aclocal-1.11/minuso.m4 from
package gcc-tools-epoch2-automake
Missing file: /opt/gcc-tools/epoch2/share/aclocal-1.11/missing.m4 from
package gcc-tools-epoch2-automake
Missing file: /opt/gcc-tools/epoch2/share/aclocal-1.11/mkdirp.m4 from
package gcc-tools-epoch2-automake
Missing file: /opt/gcc-tools/epoch2/share/aclocal-1.11/multi.m4 from
package gcc-tools-epoch2-automake
Missing file: /opt/gcc-tools/epoch2/share/aclocal-1.11/obsol-gt.m4
from package gcc-tools-epoch2-automake
Missing file: /opt/gcc-tools/epoch2/share/aclocal-1.11/obsol-lt.m4
from package gcc-tools-epoch2-automake
Missing file: /opt/gcc-tools/epoch2/share/aclocal-1.11/obsolete.m4
from package gcc-tools-epoch2-automake
Missing file: /opt/gcc-tools/epoch2/share/aclocal-1.11/options.m4 from
package gcc-tools-epoch2-automake
Missing file: /opt/gcc-tools/epoch2/share/aclocal-1.11/protos.m4 from
package gcc-tools-epoch2-automake
Missing file: /opt/gcc-tools/epoch2/share/aclocal-1.11/python.m4 from
package gcc-tools-epoch2-automake
Missing file: /opt/gcc-tools/epoch2/share/aclocal-1.11/regex.m4 from
package gcc-tools-epoch2-automake
Missing file: /opt/gcc-tools/epoch2/share/aclocal-1.11/runlog.m4 from
package gcc-tools-epoch2-automake
Missing file: /opt/gcc-tools/epoch2/share/aclocal-1.11/sanity.m4 from
package gcc-tools-epoch2-automake
Missing file: /opt/gcc-tools/epoch2/share/aclocal-1.11/silent.m4 from
package gcc-tools-epoch2-automake
Missing file: /opt/gcc-tools/epoch2/share/aclocal-1.11/strip.m4 from
package gcc-tools-epoch2-automake
Missing file: /opt/gcc-tools/epoch2/share/aclocal-1.11/substnot.m4
from package gcc-tools-epoch2-automake
Missing file: /opt/gcc-tools/epoch2/share/aclocal-1.11/tar.m4 from
package gcc-tools-epoch2-automake
Missing file: /opt/gcc-tools/epoch2/share/aclocal-1.11/upc.m4 from
package gcc-tools-epoch2-automake
Missing file: /opt/gcc-tools/epoch2/share/aclocal-1.11/vala.m4 from
package gcc-tools-epoch2-automake
Missing directory: /opt/gcc-tools/epoch2/share/automake-1.11/ from
package gcc-tools-epoch2-automake
Missing file: /opt/gcc-tools/epoch2/share/automake-1.11/acinstall from
package gcc-tools-epoch2-automake
Missing directory: /opt/gcc-tools/epoch2/share/automake-1.11/am/ from
package gcc-tools-epoch2-automake
Missing file: /opt/gcc-tools/epoch2/share/automake-1.11/am/ansi2knr.am
from package gcc-tools-epoch2-automake
Missing file: /opt/gcc-tools/epoch2/share/automake-1.11/am/check-html.am
from package gcc-tools-epoch2-automake
Missing file: /opt/gcc-tools/epoch2/share/automake-1.11/am/check.am
from package gcc-tools-epoch2-automake
Missing file: /opt/gcc-tools/epoch2/share/automake-1.11/am/check2.am
from package gcc-tools-epoch2-automake
Missing file: /opt/gcc-tools/epoch2/share/automake-1.11/am/clean-hdr.am
from package gcc-tools-epoch2-automake
Missing file: /opt/gcc-tools/epoch2/share/automake-1.11/am/clean.am
from package gcc-tools-epoch2-automake
Missing file: /opt/gcc-tools/epoch2/share/automake-1.11/am/compile.am
from package gcc-tools-epoch2-automake
Missing file: /opt/gcc-tools/epoch2/share/automake-1.11/am/configure.am
from package gcc-tools-epoch2-automake
Missing file: /opt/gcc-tools/epoch2/share/automake-1.11/am/data.am
from package gcc-tools-epoch2-automake
Missing file: /opt/gcc-tools/epoch2/share/automake-1.11/am/dejagnu.am
from package gcc-tools-epoch2-automake
Missing file: /opt/gcc-tools/epoch2/share/automake-1.11/am/depend.am
from package gcc-tools-epoch2-automake
Missing file: /opt/gcc-tools/epoch2/share/automake-1.11/am/depend2.am
from package gcc-tools-epoch2-automake
Missing file: /opt/gcc-tools/epoch2/share/automake-1.11/am/distdir.am
from package gcc-tools-epoch2-automake
Missing file: /opt/gcc-tools/epoch2/share/automake-1.11/am/footer.am
from package gcc-tools-epoch2-automake
Missing file: /opt/gcc-tools/epoch2/share/automake-1.11/am/header-vars.am
from package gcc-tools-epoch2-automake
Missing file: /opt/gcc-tools/epoch2/share/automake-1.11/am/header.am
from package gcc-tools-epoch2-automake
Missing file: /opt/gcc-tools/epoch2/share/automake-1.11/am/inst-vars.am
from package gcc-tools-epoch2-automake
Missing file: /opt/gcc-tools/epoch2/share/automake-1.11/am/install.am
from package gcc-tools-epoch2-automake
Missing file: /opt/gcc-tools/epoch2/share/automake-1.11/am/java.am
from package gcc-tools-epoch2-automake
Missing file: /opt/gcc-tools/epoch2/share/automake-1.11/am/lang-compile.am
from package gcc-tools-epoch2-automake
Missing file: /opt/gcc-tools/epoch2/share/automake-1.11/am/lex.am from
package gcc-tools-epoch2-automake
Missing file: /opt/gcc-tools/epoch2/share/automake-1.11/am/library.am
from package gcc-tools-epoch2-automake
Missing file: /opt/gcc-tools/epoch2/share/automake-1.11/am/libs.am
from package gcc-tools-epoch2-automake
Missing file: /opt/gcc-tools/epoch2/share/automake-1.11/am/libtool.am
from package gcc-tools-epoch2-automake
Missing file: /opt/gcc-tools/epoch2/share/automake-1.11/am/lisp.am
from package gcc-tools-epoch2-automake
Missing file: /opt/gcc-tools/epoch2/share/automake-1.11/am/ltlib.am
from package gcc-tools-epoch2-automake
Missing file: /opt/gcc-tools/epoch2/share/automake-1.11/am/ltlibrary.am
from package gcc-tools-epoch2-automake
Missing file: /opt/gcc-tools/epoch2/share/automake-1.11/am/mans-vars.am
from package gcc-tools-epoch2-automake
Missing file: /opt/gcc-tools/epoch2/share/automake-1.11/am/mans.am
from package gcc-tools-epoch2-automake
Missing file: /opt/gcc-tools/epoch2/share/automake-1.11/am/multilib.am
from package gcc-tools-epoch2-automake
Missing file: /opt/gcc-tools/epoch2/share/automake-1.11/am/program.am
from package gcc-tools-epoch2-automake
Missing file: /opt/gcc-tools/epoch2/share/automake-1.11/am/progs.am
from package gcc-tools-epoch2-automake
Missing file: /opt/gcc-tools/epoch2/share/automake-1.11/am/python.am
from package gcc-tools-epoch2-automake
Missing file: /opt/gcc-tools/epoch2/share/automake-1.11/am/remake-hdr.am
from package gcc-tools-epoch2-automake
Missing file: /opt/gcc-tools/epoch2/share/automake-1.11/am/scripts.am
from package gcc-tools-epoch2-automake
Missing file: /opt/gcc-tools/epoch2/share/automake-1.11/am/subdirs.am
from package gcc-tools-epoch2-automake
Missing file: /opt/gcc-tools/epoch2/share/automake-1.11/am/tags.am
from package gcc-tools-epoch2-automake
Missing file: /opt/gcc-tools/epoch2/share/automake-1.11/am/texi-vers.am
from package gcc-tools-epoch2-automake
Missing file: /opt/gcc-tools/epoch2/share/automake-1.11/am/texibuild.am
from package gcc-tools-epoch2-automake
Missing file: /opt/gcc-tools/epoch2/share/automake-1.11/am/texinfos.am
from package gcc-tools-epoch2-automake
Missing file: /opt/gcc-tools/epoch2/share/automake-1.11/am/vala.am
from package gcc-tools-epoch2-automake
Missing file: /opt/gcc-tools/epoch2/share/automake-1.11/am/yacc.am
from package gcc-tools-epoch2-automake
Missing file: /opt/gcc-tools/epoch2/share/automake-1.11/ansi2knr.1
from package gcc-tools-epoch2-automake
Missing file: /opt/gcc-tools/epoch2/share/automake-1.11/ansi2knr.c
from package gcc-tools-epoch2-automake
Missing file: /opt/gcc-tools/epoch2/share/automake-1.11/ar-lib from
package gcc-tools-epoch2-automake
Missing directory: /opt/gcc-tools/epoch2/share/automake-1.11/Automake/
from package gcc-tools-epoch2-automake
Missing file: /opt/gcc-tools/epoch2/share/automake-1.11/Automake/ChannelDefs.pm
from package gcc-tools-epoch2-automake
Missing file: /opt/gcc-tools/epoch2/share/automake-1.11/Automake/Channels.pm
from package gcc-tools-epoch2-automake
Missing file: /opt/gcc-tools/epoch2/share/automake-1.11/Automake/Condition.pm
from package gcc-tools-epoch2-automake
Missing file: /opt/gcc-tools/epoch2/share/automake-1.11/Automake/Config.pm
from package gcc-tools-epoch2-automake
Missing file: /opt/gcc-tools/epoch2/share/automake-1.11/Automake/Configure_ac.pm
from package gcc-tools-epoch2-automake
Missing file: /opt/gcc-tools/epoch2/share/automake-1.11/Automake/DisjConditions.pm
from package gcc-tools-epoch2-automake
Missing file: /opt/gcc-tools/epoch2/share/automake-1.11/Automake/FileUtils.pm
from package gcc-tools-epoch2-automake
Missing file: /opt/gcc-tools/epoch2/share/automake-1.11/Automake/General.pm
from package gcc-tools-epoch2-automake
Missing file: /opt/gcc-tools/epoch2/share/automake-1.11/Automake/Getopt.pm
from package gcc-tools-epoch2-automake
Missing file: /opt/gcc-tools/epoch2/share/automake-1.11/Automake/Item.pm
from package gcc-tools-epoch2-automake
Missing file: /opt/gcc-tools/epoch2/share/automake-1.11/Automake/ItemDef.pm
from package gcc-tools-epoch2-automake
Missing file: /opt/gcc-tools/epoch2/share/automake-1.11/Automake/Location.pm
from package gcc-tools-epoch2-automake
Missing file: /opt/gcc-tools/epoch2/share/automake-1.11/Automake/Options.pm
from package gcc-tools-epoch2-automake
Missing file: /opt/gcc-tools/epoch2/share/automake-1.11/Automake/Rule.pm
from package gcc-tools-epoch2-automake
Missing file: /opt/gcc-tools/epoch2/share/automake-1.11/Automake/RuleDef.pm
from package gcc-tools-epoch2-automake
Missing file: /opt/gcc-tools/epoch2/share/automake-1.11/Automake/Struct.pm
from package gcc-tools-epoch2-automake
Missing file: /opt/gcc-tools/epoch2/share/automake-1.11/Automake/VarDef.pm
from package gcc-tools-epoch2-automake
Missing file: /opt/gcc-tools/epoch2/share/automake-1.11/Automake/Variable.pm
from package gcc-tools-epoch2-automake
Missing file: /opt/gcc-tools/epoch2/share/automake-1.11/Automake/Version.pm
from package gcc-tools-epoch2-automake
Missing file: /opt/gcc-tools/epoch2/share/automake-1.11/Automake/Wrap.pm
from package gcc-tools-epoch2-automake
Missing file: /opt/gcc-tools/epoch2/share/automake-1.11/Automake/XFile.pm
from package gcc-tools-epoch2-automake
Missing file: /opt/gcc-tools/epoch2/share/automake-1.11/compile from
package gcc-tools-epoch2-automake
Missing file: /opt/gcc-tools/epoch2/share/automake-1.11/config-ml.in
from package gcc-tools-epoch2-automake
Missing file: /opt/gcc-tools/epoch2/share/automake-1.11/config.guess
from package gcc-tools-epoch2-automake
Missing file: /opt/gcc-tools/epoch2/share/automake-1.11/config.sub
from package gcc-tools-epoch2-automake
Missing file: /opt/gcc-tools/epoch2/share/automake-1.11/COPYING from
package gcc-tools-epoch2-automake
Missing file: /opt/gcc-tools/epoch2/share/automake-1.11/depcomp from
package gcc-tools-epoch2-automake
Missing file: /opt/gcc-tools/epoch2/share/automake-1.11/elisp-comp
from package gcc-tools-epoch2-automake
Missing file: /opt/gcc-tools/epoch2/share/automake-1.11/INSTALL from
package gcc-tools-epoch2-automake
Missing file: /opt/gcc-tools/epoch2/share/automake-1.11/install-sh
from package gcc-tools-epoch2-automake
Missing file: /opt/gcc-tools/epoch2/share/automake-1.11/mdate-sh from
package gcc-tools-epoch2-automake
Missing file: /opt/gcc-tools/epoch2/share/automake-1.11/missing from
package gcc-tools-epoch2-automake
Missing file: /opt/gcc-tools/epoch2/share/automake-1.11/mkinstalldirs
from package gcc-tools-epoch2-automake
Missing file: /opt/gcc-tools/epoch2/share/automake-1.11/py-compile
from package gcc-tools-epoch2-automake
Missing file: /opt/gcc-tools/epoch2/share/automake-1.11/symlink-tree
from package gcc-tools-epoch2-automake
Missing file: /opt/gcc-tools/epoch2/share/automake-1.11/texinfo.tex
from package gcc-tools-epoch2-automake
Missing file: /opt/gcc-tools/epoch2/share/automake-1.11/ylwrap from
package gcc-tools-epoch2-automake
Missing directory: /opt/gcc-tools/epoch2/share/doc/ from package
gcc-tools-epoch2-automake
Missing directory:
/opt/gcc-tools/epoch2/share/doc/gcc-tools-epoch2-automake-1.11.6/ from
package gcc-tools-epoch2-automake
Missing file: /opt/gcc-tools/epoch2/share/doc/gcc-tools-epoch2-automake-1.11.6/amhello-1.0.tar.gz
from package gcc-tools-epoch2-automake
Missing directory: /opt/gcc-tools/epoch2/share/info/ from package
gcc-tools-epoch2-automake
Missing file: /opt/gcc-tools/epoch2/share/info/automake1.11.info from
package gcc-tools-epoch2-automake
Missing file: /opt/gcc-tools/epoch2/share/info/automake1.11.info-1
from package gcc-tools-epoch2-automake
Missing file: /opt/gcc-tools/epoch2/share/info/automake1.11.info-2
from package gcc-tools-epoch2-automake
Missing file: /opt/gcc-tools/epoch2/share/info/automake1.11.info-3
from package gcc-tools-epoch2-automake
Missing directory: /opt/gcc-tools/epoch2/share/man/ from package
gcc-tools-epoch2-automake
Missing directory: /opt/gcc-tools/epoch2/share/man/man1/ from package
gcc-tools-epoch2-automake
Missing file: /opt/gcc-tools/epoch2/share/man/man1/aclocal-1.11.1 from
package gcc-tools-epoch2-automake
Missing file: /opt/gcc-tools/epoch2/share/man/man1/aclocal.1 from
package gcc-tools-epoch2-automake
Missing file: /opt/gcc-tools/epoch2/share/man/man1/automake-1.11.1
from package gcc-tools-epoch2-automake
Missing file: /opt/gcc-tools/epoch2/share/man/man1/automake.1 from
package gcc-tools-epoch2-automake
gcc-tools-epoch2-automake               1.11.6-1                     Incomplete
gccmakedep                              1.0.3-1                      OK
getent                                  2.18.90-4                    OK
grep                                    2.25-1                       OK
groff                                   1.22.3-1                     OK
gsettings-desktop-schemas               3.18.1-1                     OK
gtk-update-icon-cache                   3.18.9-1                     OK
gzip                                    1.8-1                        OK
hicolor-icon-theme                      0.15-1                       OK
hostname                                3.13-1                       OK
imake                                   1.0.7-1                      OK
imake-debuginfo                         1.0.7-1                      OK
info                                    6.1-2                        OK
ipc-utils                               1.0-1                        OK
less                                    481-1                        OK
libarchive13                            3.1.2-4                      OK
libargp                                 20110921-3                   OK
libatk1.0_0                             2.18.0-1                     OK
libatomic1                              5.4.0-1                      OK
libattr1                                2.4.46-1                     OK
libblkid1                               2.25.2-2                     OK
libbz2_1                                1.0.6-2                      OK
libcairo2                               1.14.4-1                     OK
libcilkrts5                             5.4.0-1                      OK
libcom_err2                             1.42.12-2                    OK
libcrypt0                               1.4-1                        OK
libcurl4                                7.50.3-1                     OK
libdatrie1                              0.2.8-1                      OK
libdb4.8                                4.8.30-1                     OK
libdbus1_3                              1.10.12-1                    OK
libedit0                                20130712-1                   OK
libEGL1                                 12.0.2-1                     OK
libexpat1                               2.2.0-0                      OK
libfam0                                 0.1.10-15                    OK
libffi6                                 3.2.1-1                      OK
libfontconfig-common                    2.12.1-1                     OK
libfontconfig1                          2.12.1-1                     OK
libfreetype6                            2.6.5-1                      OK
libgcc1                                 5.4.0-1                      OK
libgcj-common                           5.4.0-1                      OK
libgcj16                                5.4.0-1                      OK
libgdbm4                                1.12-1                       OK
libgdk_pixbuf2.0_0                      2.32.3-1                     OK
libgfortran3                            5.4.0-1                      OK
libGL1                                  12.0.2-1                     OK
libglapi0                               12.0.2-1                     OK
libglib2.0_0                            2.46.2-4                     OK
libgmp10                                6.1.1-1                      OK
libgomp1                                5.4.0-1                      OK
libgraphite2_3                          1.3.8-1                      OK
libgssapi_krb5_2                        1.14.4-1                     OK
libgtk2.0_0                             2.24.30-1                    OK
libguile17                              1.8.8-1                      OK
libharfbuzz0                            1.3.3-1                      OK
libICE6                                 1.0.9-1                      OK
libiconv                                1.14-3                       OK
libiconv2                               1.14-3                       OK
libicu57                                57.1-1                       OK
libicu58                                58.1-1                       OK
libidn11                                1.29-1                       OK
libintl8                                0.19.8.1-2                   OK
libisl13                                0.14.1-1                     OK
libjasper1                              1.900.1-15                   OK
libjbig2                                2.0-14                       OK
libjpeg8                                1.5.0-1                      OK
libk5crypto3                            1.14.4-1                     OK
libkrb5_3                               1.14.4-1                     OK
libkrb5support0                         1.14.4-1                     OK
libllvm3.8                              3.8.1-1                      OK
libltdl7                                2.4.6-4                      OK
liblzma5                                5.2.2-1                      OK
liblzo2_2                               2.08-1                       OK
libmpc3                                 1.0.3-1                      OK
libmpfr4                                3.1.5-1                      OK
libncursesw10                           6.0-8.20160917               OK
libnettle4                              2.7.1-1                      OK
libnghttp2_14                           1.14.0-1                     OK
libobjc4                                5.4.0-1                      OK
libopenldap2_4_2                        2.4.42-1                     OK
libopenssl100                           1.0.2j-1                     OK
libp11-kit0                             0.22.1-1                     OK
libpagemaker0.0-debuginfo               0.0.3-1                      OK
libpango1.0_0                           1.38.1-1                     OK
libpcre1                                8.39-1                       OK
libpcre16_0                             8.39-1                       OK
libpipeline1                            1.4.0-1                      OK
libpixman1_0                            0.34.0-1                     OK
libpng16                                1.6.24-1                     OK
libpopt-common                          1.16-2                       OK
libpopt0                                1.16-2                       OK
libproxy1                               0.4.11-5                     OK
libpsl5                                 0.14.0-1                     OK
libQt5Core5                             5.6.2-1                      OK
libQt5Gui5                              5.6.2-1                      OK
libquadmath0                            5.4.0-1                      OK
libreadline7                            6.3.8-1                      OK
libsasl2_3                              2.1.26-9                     OK
libsigsegv2                             2.10-2                       OK
libSM6                                  1.2.2-1                      OK
libsmartcols1                           2.25.2-2                     OK
libssh2_1                               1.7.0-1                      OK
libssp0                                 5.4.0-1                      OK
libstdc++6                              5.4.0-1                      OK
libtasn1_6                              4.9-1                        OK
libthai0                                0.1.21-1                     OK
libtiff6                                4.0.6-1                      OK
libtxc_dxtn                             1.0-1.20151227gitf6ec862     OK
libunistring2                           0.9.6-1                      OK
libuuid1                                2.25.2-2                     OK
libvtv0                                 5.4.0-1                      OK
libX11-xcb1                             1.6.4-1                      OK
libX11_6                                1.6.4-1                      OK
libXau6                                 1.0.8-1                      OK
libxcb-glx0                             1.12-1                       OK
libxcb-icccm4                           0.4.1-1                      OK
libxcb-image0                           0.3.9-1                      OK
libxcb-keysyms1                         0.3.9-1                      OK
libxcb-randr0                           1.12-1                       OK
libxcb-render-util0                     0.3.9-1                      OK
libxcb-render0                          1.12-1                       OK
libxcb-shape0                           1.12-1                       OK
libxcb-shm0                             1.12-1                       OK
libxcb-sync1                            1.12-1                       OK
libxcb-util1                            0.3.9-1                      OK
libxcb-xfixes0                          1.12-1                       OK
libxcb-xinerama0                        1.12-1                       OK
libxcb-xkb1                             1.12-1                       OK
libxcb1                                 1.12-1                       OK
libXcomposite1                          0.4.3-1                      OK
libXcursor1                             1.1.14-1                     OK
libXdamage1                             1.1.4-1                      OK
libXdmcp6                               1.1.2-1                      OK
libXext6                                1.3.3-1                      OK
libXfixes3                              5.0.3-1                      OK
libXft2                                 2.3.2-1                      OK
libXi6                                  1.7.8-1                      OK
libXinerama1                            1.1.3-1                      OK
libxkbcommon0                           0.4.3-1                      OK
libxml2                                 2.9.4-1                      OK
libXrandr2                              1.5.1-1                      OK
libXrender1                             0.9.9-1                      OK
login                                   1.11-1                       OK
m4                                      1.4.17-2                     OK
make                                    4.2.1-1                      OK
make-debuginfo                          4.2.1-1                      OK
makedepend                              1.0.5-1                      OK
makedepend-debuginfo                    1.0.5-1                      OK
man-db                                  2.7.5-2                      OK
mingw64-i686-binutils                   2.25.0.1.23f238d-1           OK
mingw64-i686-gcc-ada                    5.4.0-2                      OK
mingw64-i686-gcc-core                   5.4.0-2                      OK
mingw64-i686-gcc-fortran                5.4.0-2                      OK
mingw64-i686-gcc-g++                    5.4.0-2                      OK
mingw64-i686-gcc-objc                   5.4.0-2                      OK
mingw64-i686-headers                    4.0.6-1                      OK
mingw64-i686-qt4-qmake                  4.8.7-1                      OK
mingw64-i686-runtime                    4.0.6-1                      OK
mingw64-i686-windows-default-manifest   6.4-1                        OK
mingw64-i686-winpthreads                4.0.6-1                      OK
mingw64-x86_64-binutils                 2.25.0.1.23f238d-1           OK
mingw64-x86_64-gcc-ada                  5.4.0-2                      OK
mingw64-x86_64-gcc-core                 5.4.0-2                      OK
mingw64-x86_64-gcc-fortran              5.4.0-2                      OK
mingw64-x86_64-gcc-g++                  5.4.0-2                      OK
mingw64-x86_64-gcc-objc                 5.4.0-2                      OK
mingw64-x86_64-headers                  4.0.6-1                      OK
mingw64-x86_64-qt4-qmake                4.8.7-1                      OK
mingw64-x86_64-runtime                  4.0.6-1                      OK
mingw64-x86_64-windows-default-manifest 6.4-1                        OK
mingw64-x86_64-winpthreads              4.0.6-1                      OK
mintty                                  2.6.2-0                      OK
ncurses                                 6.0-8.20160917               OK
openssl                                 1.0.2j-1                     OK
p11-kit                                 0.22.1-1                     OK
p11-kit-trust                           0.22.1-1                     OK
perl                                    5.22.2-1                     OK
perl-Carp                               1.38-1                       OK
perl-Pod-Simple                         3.32-1                       OK
perl-Unicode-Normalize                  1.25-1                       OK
perl_autorebase                         5.22.2-1                     OK
perl_base                               5.22.2-1                     OK
rebase                                  4.4.2-1                      OK
run                                     1.3.4-2                      OK
sed                                     4.2.2-3                      OK
shared-mime-info                        1.6-3                        OK
tar                                     1.28-1                       OK
terminfo                                6.0-8.20160917               OK
texinfo                                 6.3-1                        OK
tzdata                                  2016i-1                      OK
Missing directory: /sbin/ from package util-linux
Missing file: /sbin/agetty.exe from package util-linux
Missing file: /sbin/blkid.exe from package util-linux
Missing file: /sbin/cfdisk.exe from package util-linux
Missing file: /sbin/fdisk.exe from package util-linux
Missing file: /sbin/findfs.exe from package util-linux
Missing file: /sbin/fsck.cramfs.exe from package util-linux
Missing file: /sbin/fsck.minix.exe from package util-linux
Missing file: /sbin/mkfs.bfs.exe from package util-linux
Missing file: /sbin/mkfs.cramfs.exe from package util-linux
Missing file: /sbin/mkfs.exe from package util-linux
Missing file: /sbin/mkfs.minix.exe from package util-linux
Missing file: /sbin/mkswap.exe from package util-linux
Missing file: /sbin/nologin.exe from package util-linux
Missing file: /sbin/sfdisk.exe from package util-linux
Missing file: /sbin/swaplabel.exe from package util-linux
Missing file: /sbin/wipefs.exe from package util-linux
util-linux                              2.25.2-2                     Incomplete
vim-minimal                             7.4.2367-1                   OK
w32api-headers                          4.0.4-1                      OK
w32api-runtime                          4.0.4-1                      OK
which                                   2.20-2                       OK
WindowMaker-debuginfo                   0.95.6-3                     OK
windows-default-manifest                6.4-1                        OK
xkeyboard-config                        2.19-1                       OK
xorg-cf-files                           1.0.6-1                      OK
xz                                      5.2.2-1                      OK
zlib-devel                              1.2.8-3                      OK
zlib0                                   1.2.8-3                      OK
Use -h to see help about each section

On Thu, Dec 8, 2016 at 11:07 AM, Rashi Singhal <singhal.rashi@gmail.com> wrote:
> Hi,
>
> I am using cygwin 2.6.0 (32 bit) version with Actian Pervasive version 12.
>
> We have a program which will call fork() and in child process Btrieve
> file is getting opened.
>
> While using latest version of cygwin, file open call is not working ,
> Its not opening file nor displaying any error.
>
> Could you please help me on this .
>
> Regards,
> Rashi

--
Problem reports:       http://cygwin.com/problems.html
FAQ:                   http://cygwin.com/faq/
Documentation:         http://cygwin.com/docs.html
Unsubscribe info:      http://cygwin.com/ml/#unsubscribe-simple

^ permalink raw reply	[flat|nested] 12+ messages in thread

* Re: Cygwin 2.6.0 Fork issue
  2016-12-08  5:37 Rashi Singhal
@ 2016-12-08  7:17 ` Brian Inglis
  2016-12-16  9:28 ` Rashi Singhal
  1 sibling, 0 replies; 12+ messages in thread
From: Brian Inglis @ 2016-12-08  7:17 UTC (permalink / raw)
  To: cygwin

On 2016-12-07 22:37, Rashi Singhal wrote:
> I am using cygwin 2.6.0 (32 bit) version with Actian Pervasive
> version 12.
> We have a program which will call fork() and in child process
> Btrieve file is getting opened.
> While using latest version of cygwin, file open call is not working
> Its not opening file nor displaying any error.
> Could you please help me on this .

With some information to go on, someone on the list may be able to 
help you.

Please read the contents of the web page at the link below and 
follow the instructions: 

> Problem reports:       http://cygwin.com/problems.html

Attach the text from cygcheck -svr, a Simple Test Case minimal source 
program, which when run demonstrates the problem, and the output from 
that test run, and/or the log from a gdb session, and/or the output 
from strace, running the Simple Test Case minimal source program, 
demonstrating the problem.

As the problem is a file open, you may also want to add the output 
from running ls -l, stat, getfacl, and icacls on the file, as file 
open problems often result from permissions issues, so it is also 
important to run cygcheck, tests, and file info using the same 
environment and credentials as when the problem occurs.

-- 
Take care. Thanks, Brian Inglis, Calgary, Alberta, Canada

--
Problem reports:       http://cygwin.com/problems.html
FAQ:                   http://cygwin.com/faq/
Documentation:         http://cygwin.com/docs.html
Unsubscribe info:      http://cygwin.com/ml/#unsubscribe-simple

^ permalink raw reply	[flat|nested] 12+ messages in thread

* Cygwin 2.6.0 Fork issue
@ 2016-12-08  5:37 Rashi Singhal
  2016-12-08  7:17 ` Brian Inglis
  2016-12-16  9:28 ` Rashi Singhal
  0 siblings, 2 replies; 12+ messages in thread
From: Rashi Singhal @ 2016-12-08  5:37 UTC (permalink / raw)
  To: cygwin

Hi,

I am using cygwin 2.6.0 (32 bit) version with Actian Pervasive version 12.

We have a program which will call fork() and in child process Btrieve
file is getting opened.

While using latest version of cygwin, file open call is not working ,
Its not opening file nor displaying any error.

Could you please help me on this .

Regards,
Rashi

--
Problem reports:       http://cygwin.com/problems.html
FAQ:                   http://cygwin.com/faq/
Documentation:         http://cygwin.com/docs.html
Unsubscribe info:      http://cygwin.com/ml/#unsubscribe-simple

^ permalink raw reply	[flat|nested] 12+ messages in thread

end of thread, other threads:[~2017-01-06 20:34 UTC | newest]

Thread overview: 12+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
     [not found] <586F5B5F.1070407@maxrnd.com>
2017-01-06  9:05 ` Cygwin 2.6.0 Fork issue Mark Geisert
2017-01-06 20:34   ` René Berber
2017-01-03 11:17 Mark Geisert
  -- strict thread matches above, loose matches on Subject: below --
2017-01-03  8:53 Rashi Singhal
2017-01-05  4:04 ` Rashi Singhal
2017-01-05 10:17   ` Mark Geisert
2017-01-06  2:58   ` Rashi Singhal
2016-12-08  5:37 Rashi Singhal
2016-12-08  7:17 ` Brian Inglis
2016-12-16  9:28 ` Rashi Singhal
2016-12-30  8:25   ` Rashi Singhal
2016-12-30 19:25     ` Eliot Moss

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).