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
bc7dbbd9
...
bc7dbbd9ec449ad2ec7b14727031b5b3710d24ef
authored
2001-10-17 09:54:54 +0000
by
Sergey Poznyakoff
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
removed maintainer-mode quirks
1 parent
507cbc81
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
0 additions
and
31 deletions
m4/maintain.m4
m4/maintain.m4
deleted
100644 → 0
View file @
507cbc8
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