Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
BC
public
liblinphone
Commits
e3113fa6
Commit
e3113fa6
authored
Feb 08, 2011
by
Simon Morlat
Browse files
fix missing X11 library in some cases
parent
14ef6eac
Changes
2
Hide whitespace changes
Inline
Side-by-side
configure.ac
View file @
e3113fa6
...
...
@@ -298,7 +298,9 @@ AC_ARG_ENABLE(x11,
if test "$video" = "true"; then
if test "$enable_x11" = "true"; then
AC_CHECK_HEADERS(X11/Xlib.h)
AC_CHECK_HEADERS(X11/Xlib.h)
AC_CHECK_LIB(X11,XUnmapWindow, X11_LIBS="-lX11")
AC_SUBST(X11_LIBS)
fi
AC_DEFINE(VIDEO_ENABLED,1,[defined if video support is available])
fi
...
...
console/Makefile.am
View file @
e3113fa6
...
...
@@ -23,7 +23,8 @@ linphonec_LDADD = $(top_builddir)/coreapi/liblinphone.la $(READLINE_LIBS) \
$(MEDIASTREAMER_LIBS)
\
$(ORTP_LIBS)
\
$(SPEEX_LIBS)
\
$(OSIP_LIBS)
$(OSIP_LIBS)
\
$(X11_LIBS)
if
BUILD_WIN32
#special build of linphonec to detach from the windows console
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment