Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Sign in / Register
Toggle navigation
J
jami-daemon
Project overview
Project overview
Details
Activity
Releases
Cycle Analytics
Insights
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Locked Files
Issues
87
Issues
87
List
Boards
Labels
Milestones
Security & Compliance
Security & Compliance
Dependency List
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Commits
Issue Boards
Open sidebar
savoirfairelinux
jami-daemon
Commits
4647fa22
Commit
4647fa22
authored
Aug 24, 2006
by
yanmorin
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Adding --with-debug option
parent
fbf041f0
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
16 additions
and
0 deletions
+16
-0
configure.ac
configure.ac
+1
-0
m4/sfl-internal.m4
m4/sfl-internal.m4
+15
-0
No files found.
configure.ac
View file @
4647fa22
...
...
@@ -73,6 +73,7 @@ AC_SUBST(PKGADD_VENDOR)
dnl Check for programs
AC_PROG_CC
SFL_CXX_WITH_DEBUG
AC_PROG_CXX
AC_PROG_CPP
AC_PROG_INSTALL
...
...
m4/sfl-internal.m4
0 → 100644
View file @
4647fa22
AC_DEFUN([SFL_CXX_WITH_DEBUG],[
AC_ARG_WITH(debug,
AS_HELP_STRING(
[--with-debug],
[Set 'full' to enable debugging information @<:@default=no@:>@]
),
[with_debug=${withval}],
[with_debug=no]
)
if test "x$with_debug" = "xfull" -o "x$with_debug" = "xyes"; then
CXXFLAGS="$CXXFLAGS -g"
CPPFLAGS="$CPPFLAGS -DDEBUG"
fi
])
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