diff options
| author | Michael R Sweet <michael.r.sweet@gmail.com> | 2001-02-12 15:12:14 +0000 |
|---|---|---|
| committer | Michael R Sweet <michael.r.sweet@gmail.com> | 2001-02-12 15:12:14 +0000 |
| commit | 86b5507486164da7cd7a71c6a688666ee3fb5d83 (patch) | |
| tree | 730d6799520894c2cdaa2ac12d14f7a8cd8e8c53 /fluid | |
| parent | 7eae5f4f873fc3911bf8ee3556391e89b1ec597e (diff) | |
Configure script changes to support man pages, HTMLDOC, AIX/QNX with
strings.h, etc.
Add check for strings.h in fluid/factory.cxx.
Add directories and man page rules to makeinclude.in
Rename man page sources; these are formatted to the correct extensions.
git-svn-id: file:///fltk/svn/fltk/branches/branch-1.0@1368 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
Diffstat (limited to 'fluid')
| -rw-r--r-- | fluid/factory.cxx | 11 |
1 files changed, 8 insertions, 3 deletions
diff --git a/fluid/factory.cxx b/fluid/factory.cxx index f953aa162..a8f46c306 100644 --- a/fluid/factory.cxx +++ b/fluid/factory.cxx @@ -1,5 +1,5 @@ // -// "$Id: factory.cxx,v 1.4.2.9 2001/01/22 15:13:39 easysw Exp $" +// "$Id: factory.cxx,v 1.4.2.10 2001/02/12 15:12:14 easysw Exp $" // // Widget factory code for the Fast Light Tool Kit (FLTK). // @@ -34,10 +34,15 @@ #include <FL/Fl.H> #include <FL/Fl_Group.H> #include <FL/Fl_Menu_Item.H> -#include <string.h> #include <stdio.h> #include <config.h> +#include <string.h> + +#ifdef HAVE_STRINGS_H +# include <strings.h> +#endif // HAVE_STRINGS_H + #if defined(WIN32) || defined(__EMX__) #define strcasecmp stricmp #endif @@ -722,5 +727,5 @@ int lookup_symbol(const char *name, int &v, int numberok) { } // -// End of "$Id: factory.cxx,v 1.4.2.9 2001/01/22 15:13:39 easysw Exp $". +// End of "$Id: factory.cxx,v 1.4.2.10 2001/02/12 15:12:14 easysw Exp $". // |
