[fltk.development] [RFE] STR #2945: Virus is detected when being compiled in MSVS 2010

2013-04-06 Thread faywong
DO NOT REPLY TO THIS MESSAGE.  INSTEAD, POST ANY RESPONSES TO THE LINK BELOW.

[STR New]

Link: http://www.fltk.org/str.php?L2945
Version: 1.3-feature


Operate Environment: Windows 7 SP1 32bit, MSVS 2010, Avira Free Anti-virus
2013
Actual Steps:
1) import/open the projects for MSVS 2010, and compile them totally
2) when compile is in progress, the Avira starts to complain and request
me to delete several files generated from FLTK's source code
And I will take one as an example:
in file: C:\Users\faywong\Downloads\fltk-1.3.2\test\CubeViewd.exe
found a virus: TR/Crypt.XPACK.Gen2


Link: http://www.fltk.org/str.php?L2945
Version: 1.3-featureattachment: virus_fltk.png___
fltk-dev mailing list
fltk-dev@easysw.com
http://lists.easysw.com/mailman/listinfo/fltk-dev


Re: [fltk.development] [RFE] STR #2945: Virus is detected when being compiled in MSVS 2010

2013-04-06 Thread Greg Ercolano

DO NOT REPLY TO THIS MESSAGE.  INSTEAD, POST ANY RESPONSES TO THE LINK BELOW.

[STR New]

Link: http://www.fltk.org/str.php?L2945
Version: 1.3-feature


Have you ruled out this might be a problem with your own machine?

Have you had problems with viruses recently? (ie. if you have an out
of data java interpreter, etc. that is causing binaries that link
against possibly corrupt libraries on your machine to, by extension,
appear to be corrupt themselves?)

Have you ruled out building code from other toolkits causes the same
problem, eg. try building wxwidgets or the opengl demos.

Is there a pattern in the files Avira is detecting, such as all the
opengl oriented demos? (CubeViewd.exe is a debug build of an opengl
oriented app)

Please include a list of all files it detected, as there may
be a pattern in the files it detects, ie. all the opengl oriented
applications, or the opengl debug libraries. (You mentioned cubeviewd,
which uses opengl) If there is a pattern, it's possible the problem
is a corrupt library on your machine (eg. opengl related) that is
getting linked into the executables causing the problem.

Let's rule all that out first.


Link: http://www.fltk.org/str.php?L2945
Version: 1.3-feature

___
fltk-dev mailing list
fltk-dev@easysw.com
http://lists.easysw.com/mailman/listinfo/fltk-dev


Re: [fltk.development] src/Fl_mac.cxx -- dead code?

2013-04-06 Thread Manolo Gouy
 Seems nutty, but is the entire file src/Fl_mac.cxx unused code?

 If I remove the file, I can rebuild FLTK without it.

 A 'grep -r Fl_mac.cxx' on the entire fltk directory shows
 only one reference to it; an #include in Fl_x.cxx which is
 commented out.

 Perhaps it should be removed from SVN, or is it there for
 post-cocoa reference?

Yes, Fl_mac.cxx is now totally useless, being replaced by
Fl_cocoa.mm.
I believe it can be deleted, since one can recover it from svn
in the unlikely case it becomes necessary.
___
fltk-dev mailing list
fltk-dev@easysw.com
http://lists.easysw.com/mailman/listinfo/fltk-dev


Re: [fltk.development] mods to fltk-config.cmake.in in r9861

2013-04-06 Thread Manolo Gouy

   Hmm, aren't we loosing the close of /dict with this change?

 Modified: branches/branch-1.3/fltk-config.cmake.in
 ===
 --- branches/branch-1.3/fltk-config.cmake.in  2013-04-05 15:09:50 UTC (rev 
 9860)
 +++ branches/branch-1.3/fltk-config.cmake.in  2013-04-05 15:28:43 UTC (rev 
 9861)
 @@ -317,7 +317,8 @@
   string$post/string
   keyCFBundlePackageType/key
   stringAPPL/string
 -/dict
 + keyNSHighResolutionCapable/key
 + true/
  /plist
  EOF

Exact, the /dict line shouldn't have been removed.
Thanks for spotting that. It's now repaired in the svn repository.
___
fltk-dev mailing list
fltk-dev@easysw.com
http://lists.easysw.com/mailman/listinfo/fltk-dev


Re: [fltk.development] src/Fl_mac.cxx -- dead code?

2013-04-06 Thread Greg Ercolano
On 04/06/13 09:02, Manolo Gouy wrote:
 Seems nutty, but is the entire file src/Fl_mac.cxx unused code?
 Perhaps it should be removed from SVN,
 
 Yes, Fl_mac.cxx is now totally useless, being replaced by Fl_cocoa.mm.
 I believe it can be deleted, since one can recover it from svn
 in the unlikely case it becomes necessary.

Thanks, Manolo!

Done; r9863 (remove, CHANGES mod) and r9864 (src comment mods).

___
fltk-dev mailing list
fltk-dev@easysw.com
http://lists.easysw.com/mailman/listinfo/fltk-dev


Re: [fltk.development] [RFE] STR #2945: Virus is detected when being compiled in MSVS 2010

2013-04-06 Thread Ian MacArthur
Actually, I suspect it is more likely to be a false positive than anything else.At various times in the past I have had AVG, Norton or McAfee all throw warnings when configure was running; and not just on fltk builds but on other packages too.I suspect that the AV authors aren't particularly focussed on the developer community and there may be things configure does that look suspect if viewed in a general context...That said, I'm not sure any of that's pertinent to the OP's case, where I can't imagine configure is involved at all...!-- IanSent, much to my surprise, from my Palm Pre3On 6 Apr 2013 14:51, Greg Ercolano e...@seriss.com wrote: 
DO NOT REPLY TO THIS MESSAGE.  INSTEAD, POST ANY RESPONSES TO THE LINK BELOW.

[STR New]

Link: http://www.fltk.org/str.php?L2945
Version: 1.3-feature


Have you ruled out this might be a problem with your own machine?

Have you had problems with viruses recently? (ie. if you have an out
of data java interpreter, etc. that is causing binaries that link
against possibly corrupt libraries on your machine to, by extension,
appear to be corrupt themselves?)

Have you ruled out building code from other toolkits causes the same
problem, eg. try building wxwidgets or the opengl demos.

Is there a pattern in the files Avira is detecting, such as all the
opengl oriented demos? (CubeViewd.exe is a debug build of an opengl
oriented app)

Please include a list of all files it detected, as there may
be a pattern in the files it detects, ie. all the opengl oriented
applications, or the opengl debug libraries. (You mentioned cubeviewd,
which uses opengl) If there is a pattern, it's possible the problem
is a corrupt library on your machine (eg. opengl related) that is
getting linked into the executables causing the problem.

Let's rule all that out first.


Link: http://www.fltk.org/str.php?L2945
Version: 1.3-feature

___
fltk-dev mailing list
fltk-dev@easysw.com
http://lists.easysw.com/mailman/listinfo/fltk-dev
___
fltk-dev mailing list
fltk-dev@easysw.com
http://lists.easysw.com/mailman/listinfo/fltk-dev


Re: [fltk.development] [RFE] STR #2945: Virus is detected when being compiled in MSVS 2010

2013-04-06 Thread Ian MacArthur
Oh, and it's probably worth saying that I've run a variety of virus scanners over my current stock of fltk builds, with no warnings flagged.That said, I can't reproduce the OP's environment since I have neither VS2010 nor Avira readily to hand.Does look a lot like a false positive... Or maybe the OP's machine is compromised?-- IanSent, much to my surprise, from my Palm Pre3On 6 Apr 2013 14:07, faywong philip584...@gmail.com wrote: DO NOT REPLY TO THIS MESSAGE.  INSTEAD, POST ANY RESPONSES TO THE LINK BELOW.

[STR New]

Link: http://www.fltk.org/str.php?L2945
Version: 1.3-feature


Operate Environment: Windows 7 SP1 32bit, MSVS 2010, Avira Free Anti-virus
2013
Actual Steps:
1) import/open the projects for MSVS 2010, and compile them totally
2) when compile is in progress, the Avira starts to complain and request
me to delete several files generated from FLTK's source code
And I will take one as an example:
in file: C:\Users\faywong\Downloads\fltk-1.3.2\test\CubeViewd.exe
found a virus: TR/Crypt.XPACK.Gen2


Link: http://www.fltk.org/str.php?L2945
Version: 1.3-feature___
fltk-dev mailing list
fltk-dev@easysw.com
http://lists.easysw.com/mailman/listinfo/fltk-dev