Greg Ercolano wrote: > Vote? > > a) #if defined(__GNUC__) > b) #if (!defined(WIN32) || defined(__GNUC__)) && !defined(sgi) > c) #if !defined(_MSC_VER) && !defined(sgi) > d) #if !defined(_MSC_VER) && !defined(sgi) || defined(__CYGWIN__) > e) other > f) undecided > g) await more info > > If #warning is a gnu only thing, I vote (a). > > Unless I'm missing something I think what I'm hearing > is only gnu supports this; borland, VS, and sgi (native) do not. > I don't know what else we support.
Let's use a), and we're done with it. We can assume that the core developers have at least one gcc compiler, and that's what we need. The core developers will see the warnings, end users may or may not, but it doesn't break anybody's compile. Albrecht _______________________________________________ fltk-dev mailing list [email protected] http://lists.easysw.com/mailman/listinfo/fltk-dev
