Skip to content
Toggle navigation
Toggle navigation
This project
Loading...
Sign in
John McEleney
/
mailutils
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Network
Create a new issue
Builds
Commits
Issue Boards
Files
Commits
Network
Compare
Branches
Tags
Commit
c6541c0b
...
c6541c0bb7e1497ec863e8fa2b74fd01ac0d66fd
authored
2001-07-09 07:32:46 +0000
by
Sergey Poznyakoff
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
Settings specific to maintainer-mode.
1 parent
47fef894
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
31 additions
and
0 deletions
m4/maintain.m4
m4/maintain.m4
0 → 100644
View file @
c6541c0
dnl This file is part of GNU mailutils.
dnl Copyright (C) 2001 Free Software Foundation, Inc.
dnl
dnl This file is free software; as a special exception the author gives
dnl unlimited permission to copy and/or distribute it, with or without
dnl modifications, as long as this notice is preserved.
dnl
dnl This program is distributed in the hope that it will be useful, but
dnl WITHOUT ANY WARRANTY, to the extent permitted by law; without even the
dnl implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
dnl
dnl Check for --enable-maintainer-mode and enable maintainer-specific
dnl settings.
AC_DEFUN(MU_MAINTAINER_MODE,
[AM_MAINTAINER_MODE
if test x"$USE_MAINTAINER_MODE" = xyes; then
if test x"$GCC" = xyes; then
AC_MSG_CHECKING(whether gcc accepts -ggdb)
CFLAGS="-ggdb"
AC_TRY_COMPILE([],void f(){},
AC_MSG_RESULT(yes),
[if test x"$ac_cv_prog_cc_g" = xyes; then
CFLAGS=-g
else
CFLAGS=
fi
AC_MSG_RESULT(no)])
CFLAGS="$CFLAGS -DMAINTAINER_MODE"
fi
fi])
Please
register
or
sign in
to post a comment