diff options
| author | Michael R Sweet <michael.r.sweet@gmail.com> | 2005-03-31 16:01:24 +0000 |
|---|---|---|
| committer | Michael R Sweet <michael.r.sweet@gmail.com> | 2005-03-31 16:01:24 +0000 |
| commit | cc593f6b647bb7aa0c283b77dc90527300becbef (patch) | |
| tree | 4bbbd4dbe9ea5b2f060dad51f318ecfc0b1b0466 /configure.in | |
| parent | 81fd6777b28786413ca990f4261f4c6a7813fd6e (diff) | |
Add Fl::screen_count() and Fl::screen_xywh() APIs to support multi-
screen displays (currently only X11 support with Xinerama)
git-svn-id: file:///fltk/svn/fltk/branches/branch-1.1@4223 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
Diffstat (limited to 'configure.in')
| -rw-r--r-- | configure.in | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/configure.in b/configure.in index 7c6fad501..5fb0dc6a9 100644 --- a/configure.in +++ b/configure.in @@ -607,6 +607,15 @@ case $uname in GLDEMOS="" fi + dnl Check for Xinerama support unless disabled... + AC_ARG_ENABLE(xinerama, [ --enable-xinerama turn on Xinerama support [default=no]]) + + if test x$enable_xinerama = xyes; then + AC_CHECK_LIB(Xinerama,XineramaIsActive, + AC_DEFINE(HAVE_XINERAMA) + LIBS="-lXinerama $LIBS") + fi + dnl Check for the Xft library unless disabled... AC_ARG_ENABLE(xft, [ --enable-xft turn on Xft support [default=no]]) |
