Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
xfwm4
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Analyze
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Xfce
xfwm4
Commits
db7bb3c4
Commit
db7bb3c4
authored
18 years ago
by
Olivier Fourdan
Browse files
Options
Downloads
Patches
Plain Diff
Add support for XSync protocol in configure script.
(Old svn revision: 23585)
parent
cc290357
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
configure.ac.in
+19
-0
19 additions, 0 deletions
configure.ac.in
with
19 additions
and
0 deletions
configure.ac.in
+
19
−
0
View file @
db7bb3c4
...
...
@@ -71,6 +71,24 @@ XDT_CHECK_OPTIONAL_PACKAGE([LIBSTARTUP_NOTIFICATION],
[startup notification library], [yes])
dnl
dnl XSync support
dnl
XSYNC_LIBS=
AC_ARG_ENABLE([xsync],
AC_HELP_STRING([--enable-xsync], [try to use the xsync extension])
AC_HELP_STRING([--disable-xsync], [don't try to use the xsync extension]),
[], [enable_xsync=yes])
have_xsync="no"
if test x"$enable_xsync" = x"yes"; then
AC_CHECK_LIB([Xext], [XSyncQueryExtension],
[ have_xsync="yes"
XSYNC_LIBS=" -lXext"
AC_DEFINE([HAVE_XSYNC], [1], [Define to enable xsync])
],[])
fi
AC_SUBST([XSYNC_LIBS])
dnl
dnl Render support
dnl
...
...
@@ -206,6 +224,7 @@ xfwm4.spec
echo
echo "Build Configuration for $PACKAGE version $VERSION revision $REVISION:"
echo " Startup notification support: $LIBSTARTUP_NOTIFICATION_FOUND"
echo " XSync support: $have_xsync"
echo " Render support: $have_render"
echo " Xrandr support: $have_xrandr"
echo " Embedded compositor: $compositor"
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment