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
5e17b219
Commit
5e17b219
authored
15 years ago
by
Olivier Fourdan
Browse files
Options
Downloads
Patches
Plain Diff
Add linkage to libm when compositor is used (bug #6231)
parent
234d44a3
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
configure.ac.in
+5
-0
5 additions, 0 deletions
configure.ac.in
src/Makefile.am
+2
-1
2 additions, 1 deletion
src/Makefile.am
with
7 additions
and
1 deletion
configure.ac.in
+
5
−
0
View file @
5e17b219
...
...
@@ -164,6 +164,7 @@ dnl Xcomposite and related extensions
dnl
compositor="no"
ENABLE_COMPOSITOR=""
MATH_LIBS=""
AC_ARG_ENABLE([compositor],
AC_HELP_STRING([--enable-compositor], [enable compositor in xfwm4 (default)])
AC_HELP_STRING([--disable-compositor], [disable compositor in xfwm4]),
...
...
@@ -175,10 +176,14 @@ if test x"$enable_compositor" = x"yes"; then
PKG_CHECK_MODULES(COMPOSITOR, xcomposite >= [xcomposite_minimum_version] xfixes xdamage)
AC_DEFINE([HAVE_COMPOSITOR], [1], [Define to enable compositor])
ENABLE_COMPOSITOR="--enable-compositor"
AC_DEFINE([HAVE_COMPOSITOR], [1], [Define to enable compositor])
compositor="yes"
dnl Math lib is required for compositor internals
MATH_LIBS=" -lm"
fi
fi
fi
AC_SUBST([MATH_LIBS])
AC_SUBST(ENABLE_COMPOSITOR)
dnl
...
...
This diff is collapsed.
Click to expand it.
src/Makefile.am
+
2
−
1
View file @
5e17b219
...
...
@@ -107,7 +107,8 @@ xfwm4_LDADD = \
$(
LIBSTARTUP_NOTIFICATION_LIBS
)
\
$(
RENDER_LIBS
)
\
$(
COMPOSITOR_LIBS
)
\
$(
RANDR_LIBS
)
$(
RANDR_LIBS
)
\
$(
MATH_LIBS
)
EXTRA_DIST
=
\
inline-default-icon.h default_icon.png default_icon.svg
\
...
...
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