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
31a7df16
Commit
31a7df16
authored
11 years ago
by
Vittorio Giovara
Committed by
Tristan Matthews
11 years ago
Browse files
Options
Downloads
Patches
Plain Diff
daemon: check whether we are using clang
Refs: #46066 Change-Id: I373fa76d49ebadda8a8b69cb54aef88426d4e20d
parent
601b3a7a
Branches
Branches containing commit
Tags
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
daemon/configure.ac
+11
-0
11 additions, 0 deletions
daemon/configure.ac
with
11 additions
and
0 deletions
daemon/configure.ac
+
11
−
0
View file @
31a7df16
...
...
@@ -61,6 +61,17 @@ AC_CHECK_TYPES([ptrdiff_t])
dnl Check for GNU ccRTP
PKG_PROG_PKG_CONFIG
dnl Check if we are using clang
AC_MSG_CHECKING([if compiling with clang])
AC_COMPILE_IFELSE(
[AC_LANG_PROGRAM([], [[
#ifndef __clang__
not clang
#endif
]])],
[CLANG=yes], [CLANG=no])
AC_MSG_RESULT([$CLANG])
dnl Check for uuid development package - name: uuid-dev
UUID_MIN_VERSION=1.0
...
...
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