Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
jami-daemon
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Requirements
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Deploy
Releases
Model registry
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Issue analytics
Insights
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
savoirfairelinux
jami-daemon
Commits
4465e9b3
Commit
4465e9b3
authored
10 years ago
by
Vittorio Giovara
Committed by
Tristan Matthews
10 years ago
Browse files
Options
Downloads
Patches
Plain Diff
configure: apply different flags on platforms
Refs: #46762 Change-Id: I0a5ec68c26f583a5e4fb9a6b120ec6ae5ba06f82
parent
88bae295
No related branches found
No related tags found
No related merge requests found
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
daemon/configure.ac
+15
-0
15 additions, 0 deletions
daemon/configure.ac
with
15 additions
and
0 deletions
daemon/configure.ac
+
15
−
0
View file @
4465e9b3
...
@@ -147,6 +147,21 @@ AS_IF([test -n "${CONTRIB_DIR}"], [
...
@@ -147,6 +147,21 @@ AS_IF([test -n "${CONTRIB_DIR}"], [
AC_SUBST(CONTRIB_DIR)
AC_SUBST(CONTRIB_DIR)
#TODO: convert this in proper autoconf/autotool tests
AC_CANONICAL_HOST
case $host_os in
linux*)
# Necessary for linking .a to a .so
LDFLAGS+=" -Wl,-Bsymbolic"
;;
darwin*)
# Link with the old C++ ABI
# (equivalent to setting minimum osx target to 10.8)
LDFLAGS+=" -lstdc++"
;;
esac
dnl Check for pjproject
dnl Check for pjproject
PKG_CHECK_MODULES(PJPROJECT, libpjproject,, AC_MSG_ERROR([Missing pjproject files]))
PKG_CHECK_MODULES(PJPROJECT, libpjproject,, AC_MSG_ERROR([Missing pjproject files]))
...
...
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