Re: [Gnoga-list] Zany Blue and Gnoga_Tools requirement?

2016-04-15 Thread Jeremiah Breeden
Thank you for taking a look at that!  I know I can get annoying with all
these Windows issues, but I really do want to see more Windows developers
take a better look at Ada.


On Thu, Apr 14, 2016 at 2:41 PM, Pascal 
wrote:

> Hello Jeremiah,
>
> Well the underlying issue for both cases is that some source files are
> generate with Windows processes and then with CR LF terminators that are
> don't wanted by Gnoga style option -gnatyd.
> "Check no DOS line terminators present.
> All lines must be terminated by a single ASCII.LF character (in particular
> the DOS line terminator sequence CR/LF is not allowed)."
> With gnatprep for zanyblue.adb and with zbmcompile for connectfour files.
> gnatprep has -T option that is "Use LF as line terminators when writing
> files. By default the line terminator of the host (LF under unix, CR/LF
> under Windows) is used."-> good point.
> Concerning zbmcompile, I will send the issue to its author.
>
> In the meanwhile, you can safely remove this compilation flag:
> settings.gpr patch:
> -   Common_Options := ("-gnaty3abcdefhiklmnOprsStu","-gnat2012",
> "-gnatW8");
> +   Common_Options := ("-gnaty3abcefhiklmnOprsStu","-gnat2012", "-gnatW8");
> and as you did :
> deps/zanyblue/src/zbcom.gpr patch:
> -   "-gnatygO",
> +   "-gnatyO",
>
> HTH, Pascal.
>
--
Find and fix application performance issues faster with Applications Manager
Applications Manager provides deep performance insights into multiple tiers of
your business applications. It resolves application problems quickly and
reduces your MTTR. Get your free trial!
https://ad.doubleclick.net/ddm/clk/302982198;130105516;z___
Gnoga-list mailing list
Gnoga-list@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/gnoga-list


Re: [Gnoga-list] Zany Blue and Gnoga_Tools requirement?

2016-04-14 Thread Björn Lundin
2016-04-14 3:14 GMT+02:00 Jeremiah Breeden :

> Sure.  Out of the box, if I "make all", everything goes well until it
> tries to compile zanyblue.adb:
> gcc -c -gnat12 -gnatW8 -g -gnatf -gnato -gnatwale -gnatygO -gnatyo
> -fstack-check -I- -gnatA
> D:\Program_Files\MinGW\msys\1.0\home\Jere\gnoga-code-2016_04_09\deps\zanyblue\src\root\zanyblue.adb
> zanyblue.adb:1:03: (style) incorrect line terminator
> zanyblue.adb:2:72: (style) incorrect line terminator
> zanyblue.adb:3:03: (style) incorrect line terminator
>


Without having looked at the source,
could it be that the file has mixed line terminators ?
Some lines end in LF while others in CRLF ?

--
Björn
--
Find and fix application performance issues faster with Applications Manager
Applications Manager provides deep performance insights into multiple tiers of
your business applications. It resolves application problems quickly and
reduces your MTTR. Get your free trial!
https://ad.doubleclick.net/ddm/clk/302982198;130105516;z___
Gnoga-list mailing list
Gnoga-list@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/gnoga-list


Re: [Gnoga-list] Zany Blue and Gnoga_Tools requirement?

2016-04-13 Thread Rabbi David Botton
No, is important that anything requiring them not be part of regular builds
or even examples. I'm ok if part of test builds for development if outside
of the main gnoga code.

David Botton

On Wed, Apr 13, 2016 at 9:26 PM Jeremiah Breeden 
wrote:

> Thank you!
>
> A curiosity:  I know David really wants to avoid Adacore GNAT GPL due to
> licensing if possible.  While xmlada (and aunit) come with GNAT GPL, they
> don't come with FSF GNAT on windows (at least not with TDM-GCC
> distribution...does another work on Windows yet?).  Does it make sense to
> have them as outside dependencies?  I've tried building xmlada with TDM-GCC
> GNAT and it has other dependencies that I haven't tracked down as of yet
>
>
>
> On Wed, Apr 13, 2016 at 3:44 PM, Pascal  wrote:
>
>> Hello Jeremiah, sorry for the delay, thanks for reporting the issue.
>>
>> Actually, zbtest, testing part of Zanyblue, requires XMLAda and also
>> AUnit.
>> They are present in GNAT GPL edition so I don't have the issue.
>> Well, zbtest is not needed in Gnoga so it can be suppress of the build.
>> A makefile patch would be:
>>  zanyblue:
>> -   cd deps/zanyblue && make -C src BUILD=Debug
>> +   cd deps/zanyblue && make -C src BUILD=Debug setup library
>> zbmcompile
>>
>> I'll push on SF since it is ok on your side.
>>
>>
>>
> --
> Find and fix application performance issues faster with Applications
> Manager
> Applications Manager provides deep performance insights into multiple
> tiers of
> your business applications. It resolves application problems quickly and
> reduces your MTTR. Get your free trial!
> https://ad.doubleclick.net/ddm/clk/302982198;130105516;z
> ___
> Gnoga-list mailing list
> Gnoga-list@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/gnoga-list
>
--
Find and fix application performance issues faster with Applications Manager
Applications Manager provides deep performance insights into multiple tiers of
your business applications. It resolves application problems quickly and
reduces your MTTR. Get your free trial!
https://ad.doubleclick.net/ddm/clk/302982198;130105516;z___
Gnoga-list mailing list
Gnoga-list@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/gnoga-list


Re: [Gnoga-list] Zany Blue and Gnoga_Tools requirement?

2016-04-13 Thread Jeremiah Breeden
Thank you!

A curiosity:  I know David really wants to avoid Adacore GNAT GPL due to
licensing if possible.  While xmlada (and aunit) come with GNAT GPL, they
don't come with FSF GNAT on windows (at least not with TDM-GCC
distribution...does another work on Windows yet?).  Does it make sense to
have them as outside dependencies?  I've tried building xmlada with TDM-GCC
GNAT and it has other dependencies that I haven't tracked down as of yet



On Wed, Apr 13, 2016 at 3:44 PM, Pascal  wrote:

> Hello Jeremiah, sorry for the delay, thanks for reporting the issue.
>
> Actually, zbtest, testing part of Zanyblue, requires XMLAda and also AUnit.
> They are present in GNAT GPL edition so I don't have the issue.
> Well, zbtest is not needed in Gnoga so it can be suppress of the build.
> A makefile patch would be:
>  zanyblue:
> -   cd deps/zanyblue && make -C src BUILD=Debug
> +   cd deps/zanyblue && make -C src BUILD=Debug setup library
> zbmcompile
>
> I'll push on SF since it is ok on your side.
>
>
>
--
Find and fix application performance issues faster with Applications Manager
Applications Manager provides deep performance insights into multiple tiers of
your business applications. It resolves application problems quickly and
reduces your MTTR. Get your free trial!
https://ad.doubleclick.net/ddm/clk/302982198;130105516;z___
Gnoga-list mailing list
Gnoga-list@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/gnoga-list


Re: [Gnoga-list] Zany Blue and Gnoga_Tools requirement?

2016-04-13 Thread Jeffrey R. Carter
On 04/13/2016 12:44 PM, Pascal wrote:
> Concerning Jeff, I don't see what is the error reported by gnat in:
>> zanyblue-text-codecs.adb:260:14: "Encode_UTF8" called at line 277
>> zanyblue-text-codecs.adb:260:14: "Find_Codecs" called at line 320
> Was it the whole gnat prints?
I provided everything that's output from the compilation of Zany Blue.

-- 
Jeff Carter
"Violence is the last refuge of the incompetent."
Foundation
151


--
Find and fix application performance issues faster with Applications Manager
Applications Manager provides deep performance insights into multiple tiers of
your business applications. It resolves application problems quickly and
reduces your MTTR. Get your free trial!
https://ad.doubleclick.net/ddm/clk/302982198;130105516;z
___
Gnoga-list mailing list
Gnoga-list@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/gnoga-list


Re: [Gnoga-list] Zany Blue and Gnoga_Tools requirement?

2016-04-13 Thread Pascal
Hello Jeremiah, sorry for the delay, thanks for reporting the issue.

Actually, zbtest, testing part of Zanyblue, requires XMLAda and also AUnit.
They are present in GNAT GPL edition so I don't have the issue.
Well, zbtest is not needed in Gnoga so it can be suppress of the build.
A makefile patch would be:
 zanyblue:
-   cd deps/zanyblue && make -C src BUILD=Debug
+   cd deps/zanyblue && make -C src BUILD=Debug setup library zbmcompile

I'll push on SF since it is ok on your side.

Concerning ticket 32, could you please be more specific about "errors related 
to end of line terminators" or send the fix you apply.
The error issue with cloning PragmaArc has been solved in previous commit on 
2016-04-06.

Concerning Jeff, I don't see what is the error reported by gnat in:
> zanyblue-text-codecs.adb:260:14: "Encode_UTF8" called at line 277
> zanyblue-text-codecs.adb:260:14: "Find_Codecs" called at line 320

Was it the whole gnat prints?

Regards, Pascal.
http://blady.pagesperso-orange.fr


> Le 10 avr. 2016 à 21:03, Jeremiah Breeden  a 
> écrit :
> 
> I initially built it for GNAT GPL which worked (aside from the line 
> terminator issue in the ticket I submitted a couple months ago [1]...but I do 
> a workaround for that).  I wonder if that got me past that step since GNAT 
> GPL comes with xmlada?
> 
> [1] https://sourceforge.net/p/gnoga/tickets/32/
> 
> On Sun, Apr 10, 2016 at 2:32 PM, Jeffrey R. Carter  wrote:
> On 04/10/2016 10:54 AM, Jeremiah Breeden wrote:
>> gnatbind -x 
>> D:\Program_Files\MinGW\msys\1.0\home\Jere\gnoga-code-2016_04_09\deps\zanyblue\src\obj\zbmcompile-main.ali
>> gnatlink 
>> D:\Program_Files\MinGW\msys\1.0\home\Jere\gnoga-code-2016_04_09\deps\zanyblue\src\obj\zbmcompile-main.ali
>>  -g 
>> D:\Program_Files\MinGW\msys\1.0\home\Jere\gnoga-code-2016_04_09\deps\zanyblue\lib\zanyblue\libzanyblue.a
>>  -o 
>> D:\Program_Files\MinGW\msys\1.0\home\Jere\gnoga-code-2016_04_09\deps\zanyblue\bin\zbmcompile.exe
>> make[2]: Leaving directory 
>> `/home/Jere/gnoga-code-2016_04_09/deps/zanyblue/src/zbmcompile'
>> make -C zbtest
>> make[2]: Entering directory 
>> `/home/Jere/gnoga-code-2016_04_09/deps/zanyblue/src/zbtest'
>> gnatmake -p -XOS=Windows_NT -XTYPE=static -XBUILD=Debug -aP../../lib/gnat 
>> -aP../../src -P zbtest
>> warning: gnatmake -P is obsolete and will not be available in the next 
>> release; use gprbuild instead
>> zbtest.gpr:36:06: unknown project file: "xmlada"
>> gnatmake: "zbtest" processing failed
> I get a different error:
> 
> $ git pull
> Already up-to-date.
> $ make
> ...
> cd deps/zanyblue && make -C src BUILD=Debug
> make[1]: Entering directory '/home/jrcarter/Code/gnoga/deps/zanyblue/src'
> gnatmake -p -XOS=unix -XTYPE=static -XBUILD=Debug -aP../lib/gnat -aP../src -P 
> zblib.gpr
> gcc-4.9 -c -gnat12 -gnatW8 -g -gnatf -gnato -gnatwale -gnatygO -gnatyo 
> -fstack-check -I- -gnatA 
> /home/jrcarter/Code/gnoga/deps/zanyblue/src/text/zanyblue-text-codecs.adb
> zanyblue-text-codecs.adb:260:14: "Encode_UTF8" called at line 277
> zanyblue-text-codecs.adb:260:14: "Find_Codecs" called at line 320
> gnatmake: 
> "/home/jrcarter/Code/gnoga/deps/zanyblue/src/text/zanyblue-text-codecs.adb" 
> compilation error
> Makefile:75: recipe for target 'library' failed
> make[1]: *** [library] Error 4
> make[1]: Leaving directory '/home/jrcarter/Code/gnoga/deps/zanyblue/src'
> Makefile:180: recipe for target 'zanyblue' failed
>  make: *** [zanyblue] Error 2
> jrcarter@jcarter-singo-laptop:~/Code/gnoga$
>  
> -- 
> Jeff Carter
> "My mind is a raging torrent, flooded with rivulets of
> thought, cascading into a waterfall of creative alternatives."
> Blazing Saddles
> 89
> 


--
Find and fix application performance issues faster with Applications Manager
Applications Manager provides deep performance insights into multiple tiers of
your business applications. It resolves application problems quickly and
reduces your MTTR. Get your free trial!
https://ad.doubleclick.net/ddm/clk/302982198;130105516;z
___
Gnoga-list mailing list
Gnoga-list@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/gnoga-list


Re: [Gnoga-list] Zany Blue and Gnoga_Tools requirement?

2016-04-10 Thread Jeremiah Breeden
I initially built it for GNAT GPL which worked (aside from the line
terminator issue in the ticket I submitted a couple months ago [1]...but I
do a workaround for that).  I wonder if that got me past that step since
GNAT GPL comes with xmlada?

[1] https://sourceforge.net/p/gnoga/tickets/32/

On Sun, Apr 10, 2016 at 2:32 PM, Jeffrey R. Carter  wrote:

> On 04/10/2016 10:54 AM, Jeremiah Breeden wrote:
>
> gnatbind -x
> D:\Program_Files\MinGW\msys\1.0\home\Jere\gnoga-code-2016_04_09\deps\zanyblue\src\obj\zbmcompile-main.ali
> gnatlink
> D:\Program_Files\MinGW\msys\1.0\home\Jere\gnoga-code-2016_04_09\deps\zanyblue\src\obj\zbmcompile-main.ali
> -g
> D:\Program_Files\MinGW\msys\1.0\home\Jere\gnoga-code-2016_04_09\deps\zanyblue\lib\zanyblue\libzanyblue.a
> -o
> D:\Program_Files\MinGW\msys\1.0\home\Jere\gnoga-code-2016_04_09\deps\zanyblue\bin\zbmcompile.exe
> make[2]: Leaving directory
> `/home/Jere/gnoga-code-2016_04_09/deps/zanyblue/src/zbmcompile'
> make -C zbtest
> make[2]: Entering directory
> `/home/Jere/gnoga-code-2016_04_09/deps/zanyblue/src/zbtest'
> gnatmake -p -XOS=Windows_NT -XTYPE=static -XBUILD=Debug -aP../../lib/gnat
> -aP../../src -P zbtest
> warning: gnatmake -P is obsolete and will not be available in the next
> release; use gprbuild instead
> zbtest.gpr:36:06: unknown project file: "xmlada"
> gnatmake: "zbtest" processing failed
>
> I get a different error:
>
> $ git pull
>
> Already up-to-date.
>
> $ make
>
> ...
>
> cd deps/zanyblue && make -C src BUILD=Debug
>
> make[1]: Entering directory '/home/jrcarter/Code/gnoga/deps/zanyblue/src'
>
> gnatmake -p -XOS=unix -XTYPE=static -XBUILD=Debug -aP../lib/gnat -aP../src -P 
> zblib.gpr
>
> gcc-4.9 -c -gnat12 -gnatW8 -g -gnatf -gnato -gnatwale -gnatygO -gnatyo 
> -fstack-check -I- -gnatA 
> /home/jrcarter/Code/gnoga/deps/zanyblue/src/text/zanyblue-text-codecs.adb
>
> zanyblue-text-codecs.adb:260:14: "Encode_UTF8" called at line 277
>
> zanyblue-text-codecs.adb:260:14: "Find_Codecs" called at line 320
>
> gnatmake: 
> "/home/jrcarter/Code/gnoga/deps/zanyblue/src/text/zanyblue-text-codecs.adb" 
> compilation error
>
> Makefile:75: recipe for target 'library' failed
>
> make[1]: *** [library] Error 4
>
> make[1]: Leaving directory '/home/jrcarter/Code/gnoga/deps/zanyblue/src'
>
> Makefile:180: recipe for target 'zanyblue' failed
>
> make: *** [zanyblue] Error 2
>
> jrcarter@jcarter-singo-laptop:~/Code/gnoga$
>
> --
> Jeff Carter
> "My mind is a raging torrent, flooded with rivulets of
> thought, cascading into a waterfall of creative alternatives."
> Blazing Saddles
> 89
>
>
>
> --
> Find and fix application performance issues faster with Applications
> Manager
> Applications Manager provides deep performance insights into multiple
> tiers of
> your business applications. It resolves application problems quickly and
> reduces your MTTR. Get your free trial! http://pubads.g.doubleclick.net/
> gampad/clk?id=1444514301=/ca-pub-7940484522588532
> ___
> Gnoga-list mailing list
> Gnoga-list@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/gnoga-list
>
>
--
Find and fix application performance issues faster with Applications Manager
Applications Manager provides deep performance insights into multiple tiers of
your business applications. It resolves application problems quickly and
reduces your MTTR. Get your free trial! http://pubads.g.doubleclick.net/
gampad/clk?id=1444514301=/ca-pub-7940484522588532___
Gnoga-list mailing list
Gnoga-list@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/gnoga-list


Re: [Gnoga-list] Zany Blue and Gnoga_Tools requirement?

2016-04-10 Thread Jeffrey R. Carter
On 04/10/2016 10:54 AM, Jeremiah Breeden wrote:
> gnatbind -x
> D:\Program_Files\MinGW\msys\1.0\home\Jere\gnoga-code-2016_04_09\deps\zanyblue\src\obj\zbmcompile-main.ali
> gnatlink
> D:\Program_Files\MinGW\msys\1.0\home\Jere\gnoga-code-2016_04_09\deps\zanyblue\src\obj\zbmcompile-main.ali
> -g
> D:\Program_Files\MinGW\msys\1.0\home\Jere\gnoga-code-2016_04_09\deps\zanyblue\lib\zanyblue\libzanyblue.a
> -o
> D:\Program_Files\MinGW\msys\1.0\home\Jere\gnoga-code-2016_04_09\deps\zanyblue\bin\zbmcompile.exe
> make[2]: Leaving directory
> `/home/Jere/gnoga-code-2016_04_09/deps/zanyblue/src/zbmcompile'
> make -C zbtest
> make[2]: Entering directory
> `/home/Jere/gnoga-code-2016_04_09/deps/zanyblue/src/zbtest'
> gnatmake -p -XOS=Windows_NT -XTYPE=static -XBUILD=Debug -aP../../lib/gnat
> -aP../../src -P zbtest
> warning: gnatmake -P is obsolete and will not be available in the next
> release; use gprbuild instead
> zbtest.gpr:36:06: unknown project file: "xmlada"
> gnatmake: "zbtest" processing failed
I get a different error:

$ git pull

Already up-to-date.

$ make

...

cd deps/zanyblue && make -C src BUILD=Debug

make[1]: Entering directory '/home/jrcarter/Code/gnoga/deps/zanyblue/src'

gnatmake -p -XOS=unix -XTYPE=static -XBUILD=Debug -aP../lib/gnat -aP../src -P
zblib.gpr

gcc-4.9 -c -gnat12 -gnatW8 -g -gnatf -gnato -gnatwale -gnatygO -gnatyo
-fstack-check -I- -gnatA
/home/jrcarter/Code/gnoga/deps/zanyblue/src/text/zanyblue-text-codecs.adb

zanyblue-text-codecs.adb:260:14: "Encode_UTF8" called at line 277

zanyblue-text-codecs.adb:260:14: "Find_Codecs" called at line 320

gnatmake:
"/home/jrcarter/Code/gnoga/deps/zanyblue/src/text/zanyblue-text-codecs.adb"
compilation error

Makefile:75: recipe for target 'library' failed

make[1]: *** [library] Error 4

make[1]: Leaving directory '/home/jrcarter/Code/gnoga/deps/zanyblue/src'

Makefile:180: recipe for target 'zanyblue' failed

make: *** [zanyblue] Error 2

jrcarter@jcarter-singo-laptop:~/Code/gnoga$

-- 
Jeff Carter
"My mind is a raging torrent, flooded with rivulets of
thought, cascading into a waterfall of creative alternatives."
Blazing Saddles
89

--
Find and fix application performance issues faster with Applications Manager
Applications Manager provides deep performance insights into multiple tiers of
your business applications. It resolves application problems quickly and
reduces your MTTR. Get your free trial! http://pubads.g.doubleclick.net/
gampad/clk?id=1444514301=/ca-pub-7940484522588532___
Gnoga-list mailing list
Gnoga-list@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/gnoga-list


Re: [Gnoga-list] Zany Blue and Gnoga_Tools requirement?

2016-04-10 Thread Jeremiah Breeden
Thanks, that's good to know.

Right now when I set my path to TMD gcc and do a "make install" when it
gets to the point of making zblib it fails on

gnatbind -x
D:\Program_Files\MinGW\msys\1.0\home\Jere\gnoga-code-2016_04_09\deps\zanyblue\src\obj\zbmcompile-main.ali
gnatlink
D:\Program_Files\MinGW\msys\1.0\home\Jere\gnoga-code-2016_04_09\deps\zanyblue\src\obj\zbmcompile-main.ali
-g
D:\Program_Files\MinGW\msys\1.0\home\Jere\gnoga-code-2016_04_09\deps\zanyblue\lib\zanyblue\libzanyblue.a
-o
D:\Program_Files\MinGW\msys\1.0\home\Jere\gnoga-code-2016_04_09\deps\zanyblue\bin\zbmcompile.exe
make[2]: Leaving directory
`/home/Jere/gnoga-code-2016_04_09/deps/zanyblue/src/zbmcompile'
make -C zbtest
make[2]: Entering directory
`/home/Jere/gnoga-code-2016_04_09/deps/zanyblue/src/zbtest'
gnatmake -p -XOS=Windows_NT -XTYPE=static -XBUILD=Debug -aP../../lib/gnat
-aP../../src -P zbtest
warning: gnatmake -P is obsolete and will not be available in the next
release; use gprbuild instead
zbtest.gpr:36:06: unknown project file: "xmlada"
gnatmake: "zbtest" processing failed
make[2]: *** [all] Error 4
make[2]: Leaving directory
`/home/Jere/gnoga-code-2016_04_09/deps/zanyblue/src/zbtest'
make[1]: *** [zbtest.app] Error 2
make[1]: Leaving directory
`/home/Jere/gnoga-code-2016_04_09/deps/zanyblue/src'
make: *** [zanyblue] Error 2

looking in the file:
\deps\zanyblue\src\zbtest\zbtest.gpr

It contains a
with "xmlada";

which is where it is failing.  I am guessing a random test file uses it.



On Sun, Apr 10, 2016 at 12:44 PM, Rabbi David Botton 
wrote:

> To my knowledge it doesn't require XMLAda (which I don't even have
> installed). Zany Blue is only needed for the Connect Four example. Nothing
> else. I'll be on top of things God willing this week and get things a bit
> cleaned up and in order and will double check this as well. It is important
> to me that nothing in the Gnoga git requires a GPL component like XMLAda.
>
> David Botton
>
>
> On Sun, Apr 10, 2016 at 12:14 PM Jeremiah Breeden <
> jeremiah.bree...@gmail.com> wrote:
>
>> Does anyone know if Gnoga requires Zany Blue or Gnoga_Tools?  I'm trying
>> to build and install Gnoga on windows for the FSF version of GNAT but it
>> keeps failing on Zany Blue due to lack of xmlada (which fails to build
>> because of another library and so on) and Gnoga_Tools due to some sort of
>> configuration issue I can't figure out.
>>
>> Right now, since both Zany blue fails to compile and gnoga_tools fails to
>> install, I have modified the Makefile to not do those.
>>
>> Will this cause a problem?  Anyone know?
>>
>> --
>> Find and fix application performance issues faster with Applications
>> Manager
>> Applications Manager provides deep performance insights into multiple
>> tiers of
>> your business applications. It resolves application problems quickly and
>> reduces your MTTR. Get your free trial! http://pubads.g.doubleclick.net/
>> gampad/clk?id=1444514301=/ca-pub-7940484522588532
>> 
>> ___
>> Gnoga-list mailing list
>> Gnoga-list@lists.sourceforge.net
>> https://lists.sourceforge.net/lists/listinfo/gnoga-list
>>
>
>
> --
> Find and fix application performance issues faster with Applications
> Manager
> Applications Manager provides deep performance insights into multiple
> tiers of
> your business applications. It resolves application problems quickly and
> reduces your MTTR. Get your free trial! http://pubads.g.doubleclick.net/
> gampad/clk?id=1444514301=/ca-pub-7940484522588532
> ___
> Gnoga-list mailing list
> Gnoga-list@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/gnoga-list
>
>
--
Find and fix application performance issues faster with Applications Manager
Applications Manager provides deep performance insights into multiple tiers of
your business applications. It resolves application problems quickly and
reduces your MTTR. Get your free trial! http://pubads.g.doubleclick.net/
gampad/clk?id=1444514301=/ca-pub-7940484522588532___
Gnoga-list mailing list
Gnoga-list@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/gnoga-list