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
2c5cef3b
Commit
2c5cef3b
authored
Jan 18, 2013
by
Ghislain MARY
Browse files
Fix library dependencies linking on Debian based systems.
parent
ade529b0
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
17 additions
and
9 deletions
+17
-9
configure.ac
configure.ac
+13
-0
console/Makefile.am
console/Makefile.am
+2
-5
gtk/Makefile.am
gtk/Makefile.am
+2
-4
No files found.
configure.ac
View file @
2c5cef3b
...
...
@@ -84,6 +84,19 @@ IT_PROG_INTLTOOL([0.40], [no-xml])
AM_CONDITIONAL(BUILD_TESTS,test x$build_tests != xno)
dnl Initialize libtool
LT_INIT([win32-dll shared disable-static])
dnl Enable library dependencies linking
AC_ARG_ENABLE(deplibs-link,
[AS_HELP_STRING([--disable-deplibs-link ], [Disable library dependencies linking (might break builds)])],
[enable_deplibs_linking="$enableval"],
[enable_deplibs_linking="yes"])
AC_MSG_NOTICE([Enable library dependencies linking: $enable_interlib_deps])
if test "${enable_deplibs_linking}" == "yes"; then
link_all_deplibs=yes
link_all_deplibs_CXX=yes
else
link_all_deplibs=no
link_all_deplibs_CXX=no
fi
AC_CONFIG_COMMANDS([libtool-hacking],[
if test "$mingw_found" = "yes" ; then
...
...
console/Makefile.am
View file @
2c5cef3b
...
...
@@ -26,11 +26,8 @@ endif
linphonec_SOURCES
=
linphonec.c linphonec.h commands.c
linphonec_CFLAGS
=
$(COMMON_CFLAGS)
$(CONSOLE_FLAGS)
linphonec_LDADD
=
$(top_builddir)
/coreapi/liblinphone.la
$(READLINE_LIBS)
\
$(MEDIASTREAMER_LIBS)
\
$(ORTP_LIBS)
\
$(SPEEX_LIBS)
\
$(OSIP_LIBS)
\
linphonec_LDADD
=
$(top_builddir)
/coreapi/liblinphone.la
\
$(READLINE_LIBS)
\
$(X11_LIBS)
if
BUILD_WIN32
...
...
gtk/Makefile.am
View file @
2c5cef3b
...
...
@@ -53,10 +53,8 @@ linphone_SOURCES+= \
setupwizard.c
endif
linphone_LDADD
=
$(ORTP_LIBS)
\
$(MEDIASTREAMER_LIBS)
\
$(top_builddir)
/coreapi/liblinphone.la
\
$(LIBGTK_LIBS)
$(NOTIFY1_LIBS)
$(NOTIFY4_LIBS)
$(LIBGTKMAC_LIBS)
$(INTLLIBS)
linphone_LDADD
=
$(top_builddir)
/coreapi/liblinphone.la
\
$(LIBGTK_LIBS)
$(NOTIFY1_LIBS)
$(NOTIFY4_LIBS)
$(LIBGTKMAC_LIBS)
$(INTLLIBS)
if
BUILD_WIN32
...
...
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