mirror of
https://git.notmuchmail.org/git/notmuch
synced 2024-11-25 04:18:08 +01:00
strsep: check for availability (Solaris support)
Solaris does not ship a version of the strsep() function. This change adds a check to "configure" to see whether notmuch needs to provide its own implementation, and if so, it uses the new version in "compat/strsep.c" (which was copied from Mutt, and apparently before that from glibc). Signed-off-by: Vladimir Marek <vlmarek@volny.cz>
This commit is contained in:
parent
49a0b96486
commit
43843745dc
5 changed files with 101 additions and 0 deletions
|
@ -13,4 +13,8 @@ ifneq ($(HAVE_STRCASESTR),1)
|
||||||
notmuch_compat_srcs += $(dir)/strcasestr.c
|
notmuch_compat_srcs += $(dir)/strcasestr.c
|
||||||
endif
|
endif
|
||||||
|
|
||||||
|
ifneq ($(HAVE_STRSEP),1)
|
||||||
|
notmuch_compat_srcs += $(dir)/strsep.c
|
||||||
|
endif
|
||||||
|
|
||||||
SRCS := $(SRCS) $(notmuch_compat_srcs)
|
SRCS := $(SRCS) $(notmuch_compat_srcs)
|
||||||
|
|
|
@ -53,6 +53,10 @@ getdelim (char **lineptr, size_t *n, int delimiter, FILE *fp);
|
||||||
char* strcasestr(const char *haystack, const char *needle);
|
char* strcasestr(const char *haystack, const char *needle);
|
||||||
#endif /* !HAVE_STRCASESTR */
|
#endif /* !HAVE_STRCASESTR */
|
||||||
|
|
||||||
|
#if !HAVE_STRSEP
|
||||||
|
char *strsep(char **stringp, const char *delim);
|
||||||
|
#endif /* !HAVE_STRSEP */
|
||||||
|
|
||||||
/* Silence gcc warnings about unused results. These warnings exist
|
/* Silence gcc warnings about unused results. These warnings exist
|
||||||
* for a reason; any use of this needs to be justified. */
|
* for a reason; any use of this needs to be justified. */
|
||||||
#ifdef __GNUC__
|
#ifdef __GNUC__
|
||||||
|
|
11
compat/have_strsep.c
Normal file
11
compat/have_strsep.c
Normal file
|
@ -0,0 +1,11 @@
|
||||||
|
#define _GNU_SOURCE
|
||||||
|
#include <string.h>
|
||||||
|
|
||||||
|
int main()
|
||||||
|
{
|
||||||
|
char *found;
|
||||||
|
char **stringp;
|
||||||
|
const char *delim;
|
||||||
|
|
||||||
|
found = strsep(stringp, delim);
|
||||||
|
}
|
65
compat/strsep.c
Normal file
65
compat/strsep.c
Normal file
|
@ -0,0 +1,65 @@
|
||||||
|
/* Copyright (C) 1992, 93, 96, 97, 98, 99, 2004 Free Software Foundation, Inc.
|
||||||
|
This file is part of the GNU C Library.
|
||||||
|
|
||||||
|
The GNU C Library is free software; you can redistribute it and/or
|
||||||
|
modify it under the terms of the GNU Lesser General Public
|
||||||
|
License as published by the Free Software Foundation; either
|
||||||
|
version 2.1 of the License, or (at your option) any later version.
|
||||||
|
|
||||||
|
The GNU C Library is distributed in the hope that it will be useful,
|
||||||
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||||||
|
Lesser General Public License for more details.
|
||||||
|
|
||||||
|
You should have received a copy of the GNU Lesser General Public
|
||||||
|
License along with the GNU C Library; if not, write to the Free
|
||||||
|
Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
|
||||||
|
02111-1307 USA. */
|
||||||
|
|
||||||
|
#include <string.h>
|
||||||
|
|
||||||
|
/* Taken from glibc 2.6.1 */
|
||||||
|
|
||||||
|
char *strsep (char **stringp, const char *delim)
|
||||||
|
{
|
||||||
|
char *begin, *end;
|
||||||
|
|
||||||
|
begin = *stringp;
|
||||||
|
if (begin == NULL)
|
||||||
|
return NULL;
|
||||||
|
|
||||||
|
/* A frequent case is when the delimiter string contains only one
|
||||||
|
character. Here we don't need to call the expensive `strpbrk'
|
||||||
|
function and instead work using `strchr'. */
|
||||||
|
if (delim[0] == '\0' || delim[1] == '\0')
|
||||||
|
{
|
||||||
|
char ch = delim[0];
|
||||||
|
|
||||||
|
if (ch == '\0')
|
||||||
|
end = NULL;
|
||||||
|
else
|
||||||
|
{
|
||||||
|
if (*begin == ch)
|
||||||
|
end = begin;
|
||||||
|
else if (*begin == '\0')
|
||||||
|
end = NULL;
|
||||||
|
else
|
||||||
|
end = strchr (begin + 1, ch);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
else
|
||||||
|
/* Find the end of the token. */
|
||||||
|
end = strpbrk (begin, delim);
|
||||||
|
|
||||||
|
if (end)
|
||||||
|
{
|
||||||
|
/* Terminate the token and set *STRINGP past NUL character. */
|
||||||
|
*end++ = '\0';
|
||||||
|
*stringp = end;
|
||||||
|
}
|
||||||
|
else
|
||||||
|
/* No more delimiters; this is the last token. */
|
||||||
|
*stringp = NULL;
|
||||||
|
|
||||||
|
return begin;
|
||||||
|
}
|
17
configure
vendored
17
configure
vendored
|
@ -519,6 +519,17 @@ else
|
||||||
fi
|
fi
|
||||||
rm -f compat/have_strcasestr
|
rm -f compat/have_strcasestr
|
||||||
|
|
||||||
|
printf "Checking for strsep... "
|
||||||
|
if ${CC} -o compat/have_strsep "$srcdir"/compat/have_strsep.c > /dev/null 2>&1
|
||||||
|
then
|
||||||
|
printf "Yes.\n"
|
||||||
|
have_strsep="1"
|
||||||
|
else
|
||||||
|
printf "No (will use our own instead).\n"
|
||||||
|
have_strsep="0"
|
||||||
|
fi
|
||||||
|
rm -f compat/have_strsep
|
||||||
|
|
||||||
printf "Checking for standard version of getpwuid_r... "
|
printf "Checking for standard version of getpwuid_r... "
|
||||||
if ${CC} -o compat/check_getpwuid "$srcdir"/compat/check_getpwuid.c > /dev/null 2>&1
|
if ${CC} -o compat/check_getpwuid "$srcdir"/compat/check_getpwuid.c > /dev/null 2>&1
|
||||||
then
|
then
|
||||||
|
@ -703,6 +714,10 @@ HAVE_GETLINE = ${have_getline}
|
||||||
# build its own version)
|
# build its own version)
|
||||||
HAVE_STRCASESTR = ${have_strcasestr}
|
HAVE_STRCASESTR = ${have_strcasestr}
|
||||||
|
|
||||||
|
# Whether the strsep function is available (if not, then notmuch will
|
||||||
|
# build its own version)
|
||||||
|
HAVE_STRSEP = ${have_strsep}
|
||||||
|
|
||||||
# Whether the getpwuid_r function is standards-compliant
|
# Whether the getpwuid_r function is standards-compliant
|
||||||
# (if not, then notmuch will #define _POSIX_PTHREAD_SEMANTICS
|
# (if not, then notmuch will #define _POSIX_PTHREAD_SEMANTICS
|
||||||
# to enable the standards-compliant version -- needed for Solaris)
|
# to enable the standards-compliant version -- needed for Solaris)
|
||||||
|
@ -759,12 +774,14 @@ CONFIGURE_CFLAGS = -DHAVE_GETLINE=\$(HAVE_GETLINE) \$(GMIME_CFLAGS) \\
|
||||||
\$(TALLOC_CFLAGS) -DHAVE_VALGRIND=\$(HAVE_VALGRIND) \\
|
\$(TALLOC_CFLAGS) -DHAVE_VALGRIND=\$(HAVE_VALGRIND) \\
|
||||||
\$(VALGRIND_CFLAGS) \\
|
\$(VALGRIND_CFLAGS) \\
|
||||||
-DHAVE_STRCASESTR=\$(HAVE_STRCASESTR) \\
|
-DHAVE_STRCASESTR=\$(HAVE_STRCASESTR) \\
|
||||||
|
-DHAVE_STRSEP=\$(HAVE_STRSEP) \\
|
||||||
-DSTD_GETPWUID=\$(STD_GETPWUID) \\
|
-DSTD_GETPWUID=\$(STD_GETPWUID) \\
|
||||||
-DSTD_ASCTIME=\$(STD_ASCTIME)
|
-DSTD_ASCTIME=\$(STD_ASCTIME)
|
||||||
CONFIGURE_CXXFLAGS = -DHAVE_GETLINE=\$(HAVE_GETLINE) \$(GMIME_CFLAGS) \\
|
CONFIGURE_CXXFLAGS = -DHAVE_GETLINE=\$(HAVE_GETLINE) \$(GMIME_CFLAGS) \\
|
||||||
\$(TALLOC_CFLAGS) -DHAVE_VALGRIND=\$(HAVE_VALGRIND) \\
|
\$(TALLOC_CFLAGS) -DHAVE_VALGRIND=\$(HAVE_VALGRIND) \\
|
||||||
\$(VALGRIND_CFLAGS) \$(XAPIAN_CXXFLAGS) \\
|
\$(VALGRIND_CFLAGS) \$(XAPIAN_CXXFLAGS) \\
|
||||||
-DHAVE_STRCASESTR=\$(HAVE_STRCASESTR) \\
|
-DHAVE_STRCASESTR=\$(HAVE_STRCASESTR) \\
|
||||||
|
-DHAVE_STRSEP=\$(HAVE_STRSEP) \\
|
||||||
-DSTD_GETPWUID=\$(STD_GETPWUID) \\
|
-DSTD_GETPWUID=\$(STD_GETPWUID) \\
|
||||||
-DSTD_ASCTIME=\$(STD_ASCTIME)
|
-DSTD_ASCTIME=\$(STD_ASCTIME)
|
||||||
CONFIGURE_LDFLAGS = \$(GMIME_LDFLAGS) \$(TALLOC_LDFLAGS) \$(XAPIAN_LDFLAGS)
|
CONFIGURE_LDFLAGS = \$(GMIME_LDFLAGS) \$(TALLOC_LDFLAGS) \$(XAPIAN_LDFLAGS)
|
||||||
|
|
Loading…
Reference in a new issue