Author: ianmacarthur Date: 2010-12-20 05:45:26 -0800 (Mon, 20 Dec 2010) New Revision: 8074 Log: Recent changes to the include files meant that numericsort would no longer compile on WIN32 (at least under MSYS/mingw.) This change reintroduces the ref to filename.H, but ONLY for WIN32 compiles. This seems to allow numericsort to build once again, though I am unsure that this is the correct fix!
Modified: branches/branch-1.3/src/numericsort.c Modified: branches/branch-1.3/src/numericsort.c =================================================================== --- branches/branch-1.3/src/numericsort.c 2010-12-20 13:35:43 UTC (rev 8073) +++ branches/branch-1.3/src/numericsort.c 2010-12-20 13:45:26 UTC (rev 8074) @@ -48,6 +48,8 @@ # include <ndir.h> # endif /* HAVE_NDIR_H */ # endif /* HAVE_DIRENT_H */ +#else /* For WIN32 variants */ +# include <FL/filename.H> #endif /* !WIN32 || __CYGWIN__ */ /* _______________________________________________ fltk-commit mailing list [email protected] http://lists.easysw.com/mailman/listinfo/fltk-commit
