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
83471e9c
...
83471e9c6b2c5ac291c8e226b3db5b7b301e5217
authored
2003-03-22 13:25:59 +0000
by
Sergey Poznyakoff
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
Raised version number to 0.3.1
Define macro ATTRIBUTE_UNUSED.
1 parent
42569a59
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
13 additions
and
1 deletions
configure.ac
configure.ac
View file @
83471e9
...
...
@@ -17,7 +17,7 @@
# Foundation, Inc.
# 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
AC_INIT([GNU Mailutils], [0.3], [bug-mailutils@gnu.org], [mailutils])
AC_INIT([GNU Mailutils], [0.3
.1
], [bug-mailutils@gnu.org], [mailutils])
AC_CONFIG_SRCDIR([mailbox/mailbox.c])
AC_CONFIG_AUX_DIR([scripts])
AC_CANONICAL_TARGET([])
...
...
@@ -634,6 +634,18 @@ if test "$EMACS" != "no"; then
fi
AC_SUBST(lisp_LISP)
dnl Define ATTRIBUTE_UNUSED macro
dnl
AH_BOTTOM([
#if __GNUC__ < 2 || (__GNUC__ == 2 && __GNUC_MINOR__ < 7)
# define __attribute__(x)
#endif
#ifndef ATTRIBUTE_UNUSED
# define ATTRIBUTE_UNUSED __attribute__ ((__unused__))
#endif
])
dnl Make sysconfdir available to the application
dnl This must be done LAST, since CPPFLAGS is passed by configure
dnl to build tests, but this relies on being run in make to
...
...
Please
register
or
sign in
to post a comment