From a7324bb0c2a26bb02be3362dff2126dc6c6af3a4 Mon Sep 17 00:00:00 2001 From: "Aaron M. Ucko" Date: Fri, 20 Jan 2006 02:00:49 +0000 Subject: Load /tmp/.../fltk1.1-1.1.7 into branches/upstream/current. --- configh.in | 54 ++++++++++++++++++++++++++++++++++++++++++++++++++---- 1 file changed, 50 insertions(+), 4 deletions(-) (limited to 'configh.in') diff --git a/configh.in b/configh.in index 0d9a081..6211cb6 100644 --- a/configh.in +++ b/configh.in @@ -1,10 +1,10 @@ /* - * "$Id: configh.in,v 1.11.2.11.2.18 2004/08/25 00:20:24 matthiaswm Exp $" + * "$Id: configh.in 4702 2005-12-14 00:39:55Z mike $" * * Configuration file for the Fast Light Tool Kit (FLTK). * @configure_input@ * - * Copyright 1998-2004 by Bill Spitzak and others. + * Copyright 1998-2005 by Bill Spitzak and others. * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Library General Public @@ -21,7 +21,9 @@ * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 * USA. * - * Please report all bugs and problems to "fltk-bugs@fltk.org". + * Please report all bugs and problems on the following page: + * + * http://www.fltk.org/str.php */ /* @@ -74,6 +76,14 @@ #define USE_COLORMAP 1 +/* + * HAVE_XINERAMA + * + * Do we have the Xinerama library to support multi-head displays? + */ + +#define HAVE_XINERAMA 0 + /* * USE_XFT * @@ -179,6 +189,13 @@ #undef HAVE_STRLCAT #undef HAVE_STRLCPY +/* + * Do we have POSIX locale support? + */ + +#undef HAVE_LOCALE_H +#undef HAVE_LOCALECONV + /* * HAVE_SYS_SELECT_H: * @@ -232,7 +249,36 @@ #undef HAVE_PTHREAD #undef HAVE_PTHREAD_H +/* + * Do we have the ALSA library? + */ + +#undef HAVE_ALSA_ASOUNDLIB_H + +/* + * Do we have the long long type? + */ + +#undef HAVE_LONG_LONG + +#ifdef HAVE_LONG_LONG +# define FLTK_LLFMT "%lld" +# define FLTK_LLCAST (long long) +#else +# define FLTK_LLFMT "%ld" +# define FLTK_LLCAST (long) +#endif /* HAVE_LONG_LONG */ + +/* + * Do we have the strtoll() function? + */ + +#undef HAVE_STRTOLL + +#ifndef HAVE_STRTOLL +# define strtoll(nptr,endptr,base) strtol((nptr), (endptr), (base)) +#endif /* !HAVE_STRTOLL */ /* - * End of "$Id: configh.in,v 1.11.2.11.2.18 2004/08/25 00:20:24 matthiaswm Exp $". + * End of "$Id: configh.in 4702 2005-12-14 00:39:55Z mike $". */ -- cgit v1.2.3