mirror of
https://git.notmuchmail.org/git/notmuch
synced 2024-11-22 19:08:09 +01:00
49a0b96486
Add checks to "configure" to see whether _POSIX_PTHREAD_SEMANTICS needs to be defined to get the right number of arguments in the prototypes for asctime_r(). Solaris' default implementation conforms to POSIX.1c Draft 6, rather than the final POSIX.1c spec. The standards-compliant version can be used by defining _POSIX_PTHREAD_SEMANTICS. This change also adds the file "compat/check_asctime.c", which configure uses to perform its check, and modifies compat/compat.h to define _POSIX_PTHREAD_SEMANTICS if configure detected it was needed. Signed-off-by: Vladimir Marek <vlmarek@volny.cz>
11 lines
123 B
C
11 lines
123 B
C
#include <time.h>
|
|
#include <stdio.h>
|
|
|
|
int main()
|
|
{
|
|
struct tm tm;
|
|
|
|
(void) asctime_r (&tm, NULL);
|
|
|
|
return (0);
|
|
}
|