summaryrefslogtreecommitdiff
path: root/configh.in
diff options
context:
space:
mode:
authorAaron M. Ucko <ucko@debian.org>2006-01-20 02:00:49 +0000
committerAaron M. Ucko <ucko@debian.org>2006-01-20 02:00:49 +0000
commita7324bb0c2a26bb02be3362dff2126dc6c6af3a4 (patch)
tree64e6a26efbbc09e90a07afcf91a4b968d906955e /configh.in
parent561e57f79c1c365a2ff6c31fc32f36ba70d21cae (diff)
Load /tmp/.../fltk1.1-1.1.7 into
branches/upstream/current.
Diffstat (limited to 'configh.in')
-rw-r--r--configh.in54
1 files changed, 50 insertions, 4 deletions
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
*/
/*
@@ -75,6 +77,14 @@
#define USE_COLORMAP 1
/*
+ * HAVE_XINERAMA
+ *
+ * Do we have the Xinerama library to support multi-head displays?
+ */
+
+#define HAVE_XINERAMA 0
+
+/*
* USE_XFT
*
* Use the new Xft library to draw anti-aliased text.
@@ -180,6 +190,13 @@
#undef HAVE_STRLCPY
/*
+ * Do we have POSIX locale support?
+ */
+
+#undef HAVE_LOCALE_H
+#undef HAVE_LOCALECONV
+
+/*
* HAVE_SYS_SELECT_H:
*
* Whether or not select() call has its own header file.
@@ -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 $".
*/