diff options
| author | Matthias Melcher <fltk@matthiasm.com> | 2005-07-24 18:41:30 +0000 |
|---|---|---|
| committer | Matthias Melcher <fltk@matthiasm.com> | 2005-07-24 18:41:30 +0000 |
| commit | 458d1dc75d75af2535bc533dba21f61f0b9ae8fe (patch) | |
| tree | a627455f287b8f2308b42fac80542324c39f112b /makefiles | |
| parent | 65c23f81ff08937150a9622eab358da318ec5c1e (diff) | |
Attempt to make 'localeconv()' part of the configuration process. VC6 works, but I'll need feedback for all other platforms... . Trying OS X in a few minutes.
git-svn-id: file:///fltk/svn/fltk/branches/branch-1.1@4454 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
Diffstat (limited to 'makefiles')
| -rw-r--r-- | makefiles/config.mingw | 7 | ||||
| -rw-r--r-- | makefiles/config.os2x | 7 |
2 files changed, 14 insertions, 0 deletions
diff --git a/makefiles/config.mingw b/makefiles/config.mingw index 6f8486c25..f6b5b3d1e 100644 --- a/makefiles/config.mingw +++ b/makefiles/config.mingw @@ -169,6 +169,13 @@ /* #undef HAVE_STRLCPY */ /* + * Do we have POSIX locale support? + */ + +#define HAVE_LOCALE_H 1 +#define HAVE_LOCALECONV 1 + +/* * HAVE_SYS_SELECT_H: * * Whether or not select() call has its own header file. diff --git a/makefiles/config.os2x b/makefiles/config.os2x index 0fc4c52fc..868a428af 100644 --- a/makefiles/config.os2x +++ b/makefiles/config.os2x @@ -166,6 +166,13 @@ /* #undef HAVE_STRLCPY*/ /* + * Do we have POSIX locale support? + */ + +#define HAVE_LOCALE_H 1 +#define HAVE_LOCALECONV 1 + +/* * HAVE_SYS_SELECT_H: * * Whether or not select() call has its own header file. |
