Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
W
weston
Manage
Activity
Members
Labels
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Deploy
Releases
Model registry
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Pekka Paalanen
weston
Commits
a94e285b
Commit
a94e285b
authored
11 years ago
by
Armin K
Committed by
Kristian Høgsberg
11 years ago
Browse files
Options
Downloads
Patches
Plain Diff
clients/nested: Fix compilation
parent
a2326ed7
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
clients/Makefile.am
+7
-4
7 additions, 4 deletions
clients/Makefile.am
configure.ac
+4
-0
4 additions, 0 deletions
configure.ac
with
11 additions
and
4 deletions
clients/Makefile.am
+
7
−
4
View file @
a94e285b
...
@@ -60,15 +60,14 @@ clients_programs = \
...
@@ -60,15 +60,14 @@ clients_programs = \
dnd
\
dnd
\
smoke
\
smoke
\
resizor
\
resizor
\
nested
\
nested-client
\
eventdemo
\
eventdemo
\
clickdot
\
clickdot
\
transformed
\
transformed
\
fullscreen
\
fullscreen
\
calibrator
\
calibrator
\
$(
subsurfaces
)
\
$(
subsurfaces
)
\
$(
full_gl_client_programs
)
$(
full_gl_client_programs
)
\
$(
cairo_glesv2_programs
)
desktop_shell
=
weston-desktop-shell
desktop_shell
=
weston-desktop-shell
...
@@ -123,11 +122,15 @@ smoke_LDADD = libtoytoolkit.la
...
@@ -123,11 +122,15 @@ smoke_LDADD = libtoytoolkit.la
resizor_SOURCES
=
resizor.c
resizor_SOURCES
=
resizor.c
resizor_LDADD
=
libtoytoolkit.la
resizor_LDADD
=
libtoytoolkit.la
if
HAVE_CAIRO_GLESV2
cairo_glesv2_programs
=
nested nested-client
nested_SOURCES
=
nested.c
nested_SOURCES
=
nested.c
nested_LDADD
=
libtoytoolkit.la
nested_LDADD
=
libtoytoolkit.la
$(
SERVER_LIBS
)
nested_client_SOURCES
=
nested-client.c
nested_client_SOURCES
=
nested-client.c
nested_client_LDADD
=
$(
SIMPLE_EGL_CLIENT_LIBS
)
-lm
nested_client_LDADD
=
$(
SIMPLE_EGL_CLIENT_LIBS
)
-lm
endif
eventdemo_SOURCES
=
eventdemo.c
eventdemo_SOURCES
=
eventdemo.c
eventdemo_LDADD
=
libtoytoolkit.la
eventdemo_LDADD
=
libtoytoolkit.la
...
...
This diff is collapsed.
Click to expand it.
configure.ac
+
4
−
0
View file @
a94e285b
...
@@ -236,6 +236,7 @@ if test x$enable_clients = xyes; then
...
@@ -236,6 +236,7 @@ if test x$enable_clients = xyes; then
AC_DEFINE([BUILD_CLIENTS], [1], [Build the Wayland clients])
AC_DEFINE([BUILD_CLIENTS], [1], [Build the Wayland clients])
PKG_CHECK_MODULES(CLIENT, [wayland-client cairo >= 1.10.0 xkbcommon wayland-cursor])
PKG_CHECK_MODULES(CLIENT, [wayland-client cairo >= 1.10.0 xkbcommon wayland-cursor])
PKG_CHECK_MODULES(SERVER, [wayland-server])
PKG_CHECK_MODULES(WESTON_INFO, [wayland-client])
PKG_CHECK_MODULES(WESTON_INFO, [wayland-client])
PKG_CHECK_MODULES(POPPLER, [poppler-glib glib-2.0 gobject-2.0 gio-2.0 ],
PKG_CHECK_MODULES(POPPLER, [poppler-glib glib-2.0 gobject-2.0 gio-2.0 ],
...
@@ -281,6 +282,9 @@ AM_CONDITIONAL(HAVE_POPPLER, test "x$have_poppler" = "xyes")
...
@@ -281,6 +282,9 @@ AM_CONDITIONAL(HAVE_POPPLER, test "x$have_poppler" = "xyes")
AM_CONDITIONAL(HAVE_PANGO, test "x$have_pango" = "xyes")
AM_CONDITIONAL(HAVE_PANGO, test "x$have_pango" = "xyes")
AM_CONDITIONAL(HAVE_CAIRO_GLESV2,
[test "x$have_cairo_egl" = "xyes" -a "x$cairo_modules" = "xcairo-glesv2" -a "x$enable_egl" = "xyes"])
AM_CONDITIONAL(BUILD_FULL_GL_CLIENTS,
AM_CONDITIONAL(BUILD_FULL_GL_CLIENTS,
test x$cairo_modules = "xcairo-gl" -a "x$have_cairo_egl" = "xyes" -a "x$enable_egl" = "xyes")
test x$cairo_modules = "xcairo-gl" -a "x$have_cairo_egl" = "xyes" -a "x$enable_egl" = "xyes")
...
...
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