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
62c3b010
...
62c3b010baf59b4f6e7186846dab771e8d73454b
authored
2003-02-16 11:28:28 +0000
by
Sergey Poznyakoff
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
Added check for declaration of strerror.
Raised version number to 0.3
1 parent
a72c780e
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
3 deletions
configure.ac
configure.ac
View file @
62c3b01
...
...
@@ -17,7 +17,7 @@
# Foundation, Inc.
# 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
AC_INIT([GNU Mailutils], [0.
2.2
], [bug-mailutils@gnu.org], [mailutils])
AC_INIT([GNU Mailutils], [0.
3
], [bug-mailutils@gnu.org], [mailutils])
AC_CONFIG_SRCDIR([mailbox/mailbox.c])
AC_CONFIG_AUX_DIR([scripts])
AC_CANONICAL_TARGET([])
...
...
@@ -296,7 +296,8 @@ jm_INCLUDED_REGEX(lib/regex.c)
AC_FUNC_MMAP
AC_FUNC_FNMATCH
AC_CHECK_DECLS([strtok_r, strchrnul, strndup, asprintf, vasprintf] , , , [
AC_CHECK_DECLS([strtok_r, strchrnul, strndup, asprintf, vasprintf, strsignal],
, , [
#include <stdio.h>
#include <string.h>
#ifdef HAVE_STRINGS_H
...
...
@@ -310,7 +311,11 @@ AC_CHECK_DECLS(environ, , ,
AH_BOTTOM([
#if !HAVE_DECL_STRTOK_R
extern char *strtok_r (char *s, const char *delim, char **save_ptr);
#endif])
#endif
#if !HAVE_DECL_STRSIGNAL
extern char *strsignal (int);
#endif
])
AC_REPLACE_FUNCS(fgetpwent getpass setenv snprintf strncasecmp \
strcasecmp strsignal vasprintf)
...
...
Please
register
or
sign in
to post a comment