mirror of
https://git.openldap.org/openldap/openldap.git
synced 2025-12-20 22:59:34 -05:00
ITS#10011 -- Regenerate configure
This commit is contained in:
parent
b260205fd5
commit
9b9434ee4a
1 changed files with 219 additions and 8 deletions
227
configure
vendored
227
configure
vendored
|
|
@ -1,5 +1,5 @@
|
||||||
#! /bin/sh
|
#! /bin/sh
|
||||||
# From configure.ac Id: b04119f616a7fcb43b925c853fc5853929a98bec .
|
# From configure.ac Id: 7d291e863fc45c02b6ff195c031dfbaf1d3a06bb .
|
||||||
# Guess values for system-dependent variables and create Makefiles.
|
# Guess values for system-dependent variables and create Makefiles.
|
||||||
# Generated by GNU Autoconf 2.69.
|
# Generated by GNU Autoconf 2.69.
|
||||||
#
|
#
|
||||||
|
|
@ -15020,6 +15020,7 @@ else
|
||||||
cat confdefs.h - <<_ACEOF >conftest.$ac_ext
|
cat confdefs.h - <<_ACEOF >conftest.$ac_ext
|
||||||
/* end confdefs.h. */
|
/* end confdefs.h. */
|
||||||
#include <ctype.h>
|
#include <ctype.h>
|
||||||
|
#include <stdlib.h>
|
||||||
#ifndef HAVE_EBCDIC
|
#ifndef HAVE_EBCDIC
|
||||||
# define ISLOWER(c) ('a' <= (c) && (c) <= 'z')
|
# define ISLOWER(c) ('a' <= (c) && (c) <= 'z')
|
||||||
# define TOUPPER(c) (ISLOWER(c) ? 'A' + ((c) - 'a') : (c))
|
# define TOUPPER(c) (ISLOWER(c) ? 'A' + ((c) - 'a') : (c))
|
||||||
|
|
@ -15988,6 +15989,10 @@ $as_echo "no" >&6; }
|
||||||
else
|
else
|
||||||
cat confdefs.h - <<_ACEOF >conftest.$ac_ext
|
cat confdefs.h - <<_ACEOF >conftest.$ac_ext
|
||||||
/* end confdefs.h. */
|
/* end confdefs.h. */
|
||||||
|
#include <stdlib.h>
|
||||||
|
#ifdef HAVE_SYS_POLL_H
|
||||||
|
#include <sys/epoll.h>
|
||||||
|
#endif
|
||||||
int main(int argc, char **argv)
|
int main(int argc, char **argv)
|
||||||
{
|
{
|
||||||
int epfd = epoll_create(256);
|
int epfd = epoll_create(256);
|
||||||
|
|
@ -16168,7 +16173,7 @@ else
|
||||||
cat confdefs.h - <<_ACEOF >conftest.$ac_ext
|
cat confdefs.h - <<_ACEOF >conftest.$ac_ext
|
||||||
/* end confdefs.h. */
|
/* end confdefs.h. */
|
||||||
|
|
||||||
main() {
|
int main(void) {
|
||||||
char buf[100];
|
char buf[100];
|
||||||
buf[0] = 0;
|
buf[0] = 0;
|
||||||
strerror_r( 1, buf, sizeof buf );
|
strerror_r( 1, buf, sizeof buf );
|
||||||
|
|
@ -16368,7 +16373,7 @@ else
|
||||||
#include <sys/types.h>
|
#include <sys/types.h>
|
||||||
#include <regex.h>
|
#include <regex.h>
|
||||||
static char *pattern, *string;
|
static char *pattern, *string;
|
||||||
main()
|
int main(void)
|
||||||
{
|
{
|
||||||
int rc;
|
int rc;
|
||||||
regex_t re;
|
regex_t re;
|
||||||
|
|
@ -17601,16 +17606,24 @@ else
|
||||||
#define NULL (void*)0
|
#define NULL (void*)0
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
#ifdef __STDC__
|
||||||
|
static void *task(void *p)
|
||||||
|
#else
|
||||||
static void *task(p)
|
static void *task(p)
|
||||||
void *p;
|
void *p;
|
||||||
|
#endif
|
||||||
{
|
{
|
||||||
return (void *) (p == NULL);
|
return (void *) (p == NULL);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
#ifdef __STDC__
|
||||||
|
int main(int argc, char **argv)
|
||||||
|
#else
|
||||||
int main(argc, argv)
|
int main(argc, argv)
|
||||||
int argc;
|
int argc;
|
||||||
char **argv;
|
char **argv;
|
||||||
|
#endif
|
||||||
{
|
{
|
||||||
|
|
||||||
/* pthread test function */
|
/* pthread test function */
|
||||||
|
|
@ -17706,8 +17719,12 @@ else
|
||||||
#define NULL (void*)0
|
#define NULL (void*)0
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
#ifdef __STDC__
|
||||||
|
static void *task(void *p)
|
||||||
|
#else
|
||||||
static void *task(p)
|
static void *task(p)
|
||||||
void *p;
|
void *p;
|
||||||
|
#endif
|
||||||
{
|
{
|
||||||
return (void *) (p == NULL);
|
return (void *) (p == NULL);
|
||||||
}
|
}
|
||||||
|
|
@ -17786,16 +17803,24 @@ else
|
||||||
#define NULL (void*)0
|
#define NULL (void*)0
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
#ifdef __STDC__
|
||||||
|
static void *task(void *p)
|
||||||
|
#else
|
||||||
static void *task(p)
|
static void *task(p)
|
||||||
void *p;
|
void *p;
|
||||||
|
#endif
|
||||||
{
|
{
|
||||||
return (void *) (p == NULL);
|
return (void *) (p == NULL);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
#ifdef __STDC__
|
||||||
|
int main(int argc, char **argv)
|
||||||
|
#else
|
||||||
int main(argc, argv)
|
int main(argc, argv)
|
||||||
int argc;
|
int argc;
|
||||||
char **argv;
|
char **argv;
|
||||||
|
#endif
|
||||||
{
|
{
|
||||||
|
|
||||||
/* pthread test function */
|
/* pthread test function */
|
||||||
|
|
@ -17896,8 +17921,12 @@ else
|
||||||
#define NULL (void*)0
|
#define NULL (void*)0
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
#ifdef __STDC__
|
||||||
|
static void *task(void *p)
|
||||||
|
#else
|
||||||
static void *task(p)
|
static void *task(p)
|
||||||
void *p;
|
void *p;
|
||||||
|
#endif
|
||||||
{
|
{
|
||||||
return (void *) (p == NULL);
|
return (void *) (p == NULL);
|
||||||
}
|
}
|
||||||
|
|
@ -17976,16 +18005,24 @@ else
|
||||||
#define NULL (void*)0
|
#define NULL (void*)0
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
#ifdef __STDC__
|
||||||
|
static void *task(void *p)
|
||||||
|
#else
|
||||||
static void *task(p)
|
static void *task(p)
|
||||||
void *p;
|
void *p;
|
||||||
|
#endif
|
||||||
{
|
{
|
||||||
return (void *) (p == NULL);
|
return (void *) (p == NULL);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
#ifdef __STDC__
|
||||||
|
int main(int argc, char **argv)
|
||||||
|
#else
|
||||||
int main(argc, argv)
|
int main(argc, argv)
|
||||||
int argc;
|
int argc;
|
||||||
char **argv;
|
char **argv;
|
||||||
|
#endif
|
||||||
{
|
{
|
||||||
|
|
||||||
/* pthread test function */
|
/* pthread test function */
|
||||||
|
|
@ -18086,8 +18123,12 @@ else
|
||||||
#define NULL (void*)0
|
#define NULL (void*)0
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
#ifdef __STDC__
|
||||||
|
static void *task(void *p)
|
||||||
|
#else
|
||||||
static void *task(p)
|
static void *task(p)
|
||||||
void *p;
|
void *p;
|
||||||
|
#endif
|
||||||
{
|
{
|
||||||
return (void *) (p == NULL);
|
return (void *) (p == NULL);
|
||||||
}
|
}
|
||||||
|
|
@ -18166,16 +18207,24 @@ else
|
||||||
#define NULL (void*)0
|
#define NULL (void*)0
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
#ifdef __STDC__
|
||||||
|
static void *task(void *p)
|
||||||
|
#else
|
||||||
static void *task(p)
|
static void *task(p)
|
||||||
void *p;
|
void *p;
|
||||||
|
#endif
|
||||||
{
|
{
|
||||||
return (void *) (p == NULL);
|
return (void *) (p == NULL);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
#ifdef __STDC__
|
||||||
|
int main(int argc, char **argv)
|
||||||
|
#else
|
||||||
int main(argc, argv)
|
int main(argc, argv)
|
||||||
int argc;
|
int argc;
|
||||||
char **argv;
|
char **argv;
|
||||||
|
#endif
|
||||||
{
|
{
|
||||||
|
|
||||||
/* pthread test function */
|
/* pthread test function */
|
||||||
|
|
@ -18276,8 +18325,12 @@ else
|
||||||
#define NULL (void*)0
|
#define NULL (void*)0
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
#ifdef __STDC__
|
||||||
|
static void *task(void *p)
|
||||||
|
#else
|
||||||
static void *task(p)
|
static void *task(p)
|
||||||
void *p;
|
void *p;
|
||||||
|
#endif
|
||||||
{
|
{
|
||||||
return (void *) (p == NULL);
|
return (void *) (p == NULL);
|
||||||
}
|
}
|
||||||
|
|
@ -18356,16 +18409,24 @@ else
|
||||||
#define NULL (void*)0
|
#define NULL (void*)0
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
#ifdef __STDC__
|
||||||
|
static void *task(void *p)
|
||||||
|
#else
|
||||||
static void *task(p)
|
static void *task(p)
|
||||||
void *p;
|
void *p;
|
||||||
|
#endif
|
||||||
{
|
{
|
||||||
return (void *) (p == NULL);
|
return (void *) (p == NULL);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
#ifdef __STDC__
|
||||||
|
int main(int argc, char **argv)
|
||||||
|
#else
|
||||||
int main(argc, argv)
|
int main(argc, argv)
|
||||||
int argc;
|
int argc;
|
||||||
char **argv;
|
char **argv;
|
||||||
|
#endif
|
||||||
{
|
{
|
||||||
|
|
||||||
/* pthread test function */
|
/* pthread test function */
|
||||||
|
|
@ -18466,8 +18527,12 @@ else
|
||||||
#define NULL (void*)0
|
#define NULL (void*)0
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
#ifdef __STDC__
|
||||||
|
static void *task(void *p)
|
||||||
|
#else
|
||||||
static void *task(p)
|
static void *task(p)
|
||||||
void *p;
|
void *p;
|
||||||
|
#endif
|
||||||
{
|
{
|
||||||
return (void *) (p == NULL);
|
return (void *) (p == NULL);
|
||||||
}
|
}
|
||||||
|
|
@ -18546,16 +18611,24 @@ else
|
||||||
#define NULL (void*)0
|
#define NULL (void*)0
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
#ifdef __STDC__
|
||||||
|
static void *task(void *p)
|
||||||
|
#else
|
||||||
static void *task(p)
|
static void *task(p)
|
||||||
void *p;
|
void *p;
|
||||||
|
#endif
|
||||||
{
|
{
|
||||||
return (void *) (p == NULL);
|
return (void *) (p == NULL);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
#ifdef __STDC__
|
||||||
|
int main(int argc, char **argv)
|
||||||
|
#else
|
||||||
int main(argc, argv)
|
int main(argc, argv)
|
||||||
int argc;
|
int argc;
|
||||||
char **argv;
|
char **argv;
|
||||||
|
#endif
|
||||||
{
|
{
|
||||||
|
|
||||||
/* pthread test function */
|
/* pthread test function */
|
||||||
|
|
@ -18657,8 +18730,12 @@ else
|
||||||
#define NULL (void*)0
|
#define NULL (void*)0
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
#ifdef __STDC__
|
||||||
|
static void *task(void *p)
|
||||||
|
#else
|
||||||
static void *task(p)
|
static void *task(p)
|
||||||
void *p;
|
void *p;
|
||||||
|
#endif
|
||||||
{
|
{
|
||||||
return (void *) (p == NULL);
|
return (void *) (p == NULL);
|
||||||
}
|
}
|
||||||
|
|
@ -18737,16 +18814,24 @@ else
|
||||||
#define NULL (void*)0
|
#define NULL (void*)0
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
#ifdef __STDC__
|
||||||
|
static void *task(void *p)
|
||||||
|
#else
|
||||||
static void *task(p)
|
static void *task(p)
|
||||||
void *p;
|
void *p;
|
||||||
|
#endif
|
||||||
{
|
{
|
||||||
return (void *) (p == NULL);
|
return (void *) (p == NULL);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
#ifdef __STDC__
|
||||||
|
int main(int argc, char **argv)
|
||||||
|
#else
|
||||||
int main(argc, argv)
|
int main(argc, argv)
|
||||||
int argc;
|
int argc;
|
||||||
char **argv;
|
char **argv;
|
||||||
|
#endif
|
||||||
{
|
{
|
||||||
|
|
||||||
/* pthread test function */
|
/* pthread test function */
|
||||||
|
|
@ -18847,8 +18932,12 @@ else
|
||||||
#define NULL (void*)0
|
#define NULL (void*)0
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
#ifdef __STDC__
|
||||||
|
static void *task(void *p)
|
||||||
|
#else
|
||||||
static void *task(p)
|
static void *task(p)
|
||||||
void *p;
|
void *p;
|
||||||
|
#endif
|
||||||
{
|
{
|
||||||
return (void *) (p == NULL);
|
return (void *) (p == NULL);
|
||||||
}
|
}
|
||||||
|
|
@ -18927,16 +19016,24 @@ else
|
||||||
#define NULL (void*)0
|
#define NULL (void*)0
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
#ifdef __STDC__
|
||||||
|
static void *task(void *p)
|
||||||
|
#else
|
||||||
static void *task(p)
|
static void *task(p)
|
||||||
void *p;
|
void *p;
|
||||||
|
#endif
|
||||||
{
|
{
|
||||||
return (void *) (p == NULL);
|
return (void *) (p == NULL);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
#ifdef __STDC__
|
||||||
|
int main(int argc, char **argv)
|
||||||
|
#else
|
||||||
int main(argc, argv)
|
int main(argc, argv)
|
||||||
int argc;
|
int argc;
|
||||||
char **argv;
|
char **argv;
|
||||||
|
#endif
|
||||||
{
|
{
|
||||||
|
|
||||||
/* pthread test function */
|
/* pthread test function */
|
||||||
|
|
@ -19038,8 +19135,12 @@ else
|
||||||
#define NULL (void*)0
|
#define NULL (void*)0
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
#ifdef __STDC__
|
||||||
|
static void *task(void *p)
|
||||||
|
#else
|
||||||
static void *task(p)
|
static void *task(p)
|
||||||
void *p;
|
void *p;
|
||||||
|
#endif
|
||||||
{
|
{
|
||||||
return (void *) (p == NULL);
|
return (void *) (p == NULL);
|
||||||
}
|
}
|
||||||
|
|
@ -19118,16 +19219,24 @@ else
|
||||||
#define NULL (void*)0
|
#define NULL (void*)0
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
#ifdef __STDC__
|
||||||
|
static void *task(void *p)
|
||||||
|
#else
|
||||||
static void *task(p)
|
static void *task(p)
|
||||||
void *p;
|
void *p;
|
||||||
|
#endif
|
||||||
{
|
{
|
||||||
return (void *) (p == NULL);
|
return (void *) (p == NULL);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
#ifdef __STDC__
|
||||||
|
int main(int argc, char **argv)
|
||||||
|
#else
|
||||||
int main(argc, argv)
|
int main(argc, argv)
|
||||||
int argc;
|
int argc;
|
||||||
char **argv;
|
char **argv;
|
||||||
|
#endif
|
||||||
{
|
{
|
||||||
|
|
||||||
/* pthread test function */
|
/* pthread test function */
|
||||||
|
|
@ -19229,8 +19338,12 @@ else
|
||||||
#define NULL (void*)0
|
#define NULL (void*)0
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
#ifdef __STDC__
|
||||||
|
static void *task(void *p)
|
||||||
|
#else
|
||||||
static void *task(p)
|
static void *task(p)
|
||||||
void *p;
|
void *p;
|
||||||
|
#endif
|
||||||
{
|
{
|
||||||
return (void *) (p == NULL);
|
return (void *) (p == NULL);
|
||||||
}
|
}
|
||||||
|
|
@ -19309,16 +19422,24 @@ else
|
||||||
#define NULL (void*)0
|
#define NULL (void*)0
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
#ifdef __STDC__
|
||||||
|
static void *task(void *p)
|
||||||
|
#else
|
||||||
static void *task(p)
|
static void *task(p)
|
||||||
void *p;
|
void *p;
|
||||||
|
#endif
|
||||||
{
|
{
|
||||||
return (void *) (p == NULL);
|
return (void *) (p == NULL);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
#ifdef __STDC__
|
||||||
|
int main(int argc, char **argv)
|
||||||
|
#else
|
||||||
int main(argc, argv)
|
int main(argc, argv)
|
||||||
int argc;
|
int argc;
|
||||||
char **argv;
|
char **argv;
|
||||||
|
#endif
|
||||||
{
|
{
|
||||||
|
|
||||||
/* pthread test function */
|
/* pthread test function */
|
||||||
|
|
@ -19419,8 +19540,12 @@ else
|
||||||
#define NULL (void*)0
|
#define NULL (void*)0
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
#ifdef __STDC__
|
||||||
|
static void *task(void *p)
|
||||||
|
#else
|
||||||
static void *task(p)
|
static void *task(p)
|
||||||
void *p;
|
void *p;
|
||||||
|
#endif
|
||||||
{
|
{
|
||||||
return (void *) (p == NULL);
|
return (void *) (p == NULL);
|
||||||
}
|
}
|
||||||
|
|
@ -19499,16 +19624,24 @@ else
|
||||||
#define NULL (void*)0
|
#define NULL (void*)0
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
#ifdef __STDC__
|
||||||
|
static void *task(void *p)
|
||||||
|
#else
|
||||||
static void *task(p)
|
static void *task(p)
|
||||||
void *p;
|
void *p;
|
||||||
|
#endif
|
||||||
{
|
{
|
||||||
return (void *) (p == NULL);
|
return (void *) (p == NULL);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
#ifdef __STDC__
|
||||||
|
int main(int argc, char **argv)
|
||||||
|
#else
|
||||||
int main(argc, argv)
|
int main(argc, argv)
|
||||||
int argc;
|
int argc;
|
||||||
char **argv;
|
char **argv;
|
||||||
|
#endif
|
||||||
{
|
{
|
||||||
|
|
||||||
/* pthread test function */
|
/* pthread test function */
|
||||||
|
|
@ -19610,8 +19743,12 @@ else
|
||||||
#define NULL (void*)0
|
#define NULL (void*)0
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
#ifdef __STDC__
|
||||||
|
static void *task(void *p)
|
||||||
|
#else
|
||||||
static void *task(p)
|
static void *task(p)
|
||||||
void *p;
|
void *p;
|
||||||
|
#endif
|
||||||
{
|
{
|
||||||
return (void *) (p == NULL);
|
return (void *) (p == NULL);
|
||||||
}
|
}
|
||||||
|
|
@ -19690,16 +19827,24 @@ else
|
||||||
#define NULL (void*)0
|
#define NULL (void*)0
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
#ifdef __STDC__
|
||||||
|
static void *task(void *p)
|
||||||
|
#else
|
||||||
static void *task(p)
|
static void *task(p)
|
||||||
void *p;
|
void *p;
|
||||||
|
#endif
|
||||||
{
|
{
|
||||||
return (void *) (p == NULL);
|
return (void *) (p == NULL);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
#ifdef __STDC__
|
||||||
|
int main(int argc, char **argv)
|
||||||
|
#else
|
||||||
int main(argc, argv)
|
int main(argc, argv)
|
||||||
int argc;
|
int argc;
|
||||||
char **argv;
|
char **argv;
|
||||||
|
#endif
|
||||||
{
|
{
|
||||||
|
|
||||||
/* pthread test function */
|
/* pthread test function */
|
||||||
|
|
@ -19801,8 +19946,12 @@ else
|
||||||
#define NULL (void*)0
|
#define NULL (void*)0
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
#ifdef __STDC__
|
||||||
|
static void *task(void *p)
|
||||||
|
#else
|
||||||
static void *task(p)
|
static void *task(p)
|
||||||
void *p;
|
void *p;
|
||||||
|
#endif
|
||||||
{
|
{
|
||||||
return (void *) (p == NULL);
|
return (void *) (p == NULL);
|
||||||
}
|
}
|
||||||
|
|
@ -19881,16 +20030,24 @@ else
|
||||||
#define NULL (void*)0
|
#define NULL (void*)0
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
#ifdef __STDC__
|
||||||
|
static void *task(void *p)
|
||||||
|
#else
|
||||||
static void *task(p)
|
static void *task(p)
|
||||||
void *p;
|
void *p;
|
||||||
|
#endif
|
||||||
{
|
{
|
||||||
return (void *) (p == NULL);
|
return (void *) (p == NULL);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
#ifdef __STDC__
|
||||||
|
int main(int argc, char **argv)
|
||||||
|
#else
|
||||||
int main(argc, argv)
|
int main(argc, argv)
|
||||||
int argc;
|
int argc;
|
||||||
char **argv;
|
char **argv;
|
||||||
|
#endif
|
||||||
{
|
{
|
||||||
|
|
||||||
/* pthread test function */
|
/* pthread test function */
|
||||||
|
|
@ -19991,8 +20148,12 @@ else
|
||||||
#define NULL (void*)0
|
#define NULL (void*)0
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
#ifdef __STDC__
|
||||||
|
static void *task(void *p)
|
||||||
|
#else
|
||||||
static void *task(p)
|
static void *task(p)
|
||||||
void *p;
|
void *p;
|
||||||
|
#endif
|
||||||
{
|
{
|
||||||
return (void *) (p == NULL);
|
return (void *) (p == NULL);
|
||||||
}
|
}
|
||||||
|
|
@ -20071,16 +20232,24 @@ else
|
||||||
#define NULL (void*)0
|
#define NULL (void*)0
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
#ifdef __STDC__
|
||||||
|
static void *task(void *p)
|
||||||
|
#else
|
||||||
static void *task(p)
|
static void *task(p)
|
||||||
void *p;
|
void *p;
|
||||||
|
#endif
|
||||||
{
|
{
|
||||||
return (void *) (p == NULL);
|
return (void *) (p == NULL);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
#ifdef __STDC__
|
||||||
|
int main(int argc, char **argv)
|
||||||
|
#else
|
||||||
int main(argc, argv)
|
int main(argc, argv)
|
||||||
int argc;
|
int argc;
|
||||||
char **argv;
|
char **argv;
|
||||||
|
#endif
|
||||||
{
|
{
|
||||||
|
|
||||||
/* pthread test function */
|
/* pthread test function */
|
||||||
|
|
@ -20181,8 +20350,12 @@ else
|
||||||
#define NULL (void*)0
|
#define NULL (void*)0
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
#ifdef __STDC__
|
||||||
|
static void *task(void *p)
|
||||||
|
#else
|
||||||
static void *task(p)
|
static void *task(p)
|
||||||
void *p;
|
void *p;
|
||||||
|
#endif
|
||||||
{
|
{
|
||||||
return (void *) (p == NULL);
|
return (void *) (p == NULL);
|
||||||
}
|
}
|
||||||
|
|
@ -20261,16 +20434,24 @@ else
|
||||||
#define NULL (void*)0
|
#define NULL (void*)0
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
#ifdef __STDC__
|
||||||
|
static void *task(void *p)
|
||||||
|
#else
|
||||||
static void *task(p)
|
static void *task(p)
|
||||||
void *p;
|
void *p;
|
||||||
|
#endif
|
||||||
{
|
{
|
||||||
return (void *) (p == NULL);
|
return (void *) (p == NULL);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
#ifdef __STDC__
|
||||||
|
int main(int argc, char **argv)
|
||||||
|
#else
|
||||||
int main(argc, argv)
|
int main(argc, argv)
|
||||||
int argc;
|
int argc;
|
||||||
char **argv;
|
char **argv;
|
||||||
|
#endif
|
||||||
{
|
{
|
||||||
|
|
||||||
/* pthread test function */
|
/* pthread test function */
|
||||||
|
|
@ -20372,8 +20553,12 @@ else
|
||||||
#define NULL (void*)0
|
#define NULL (void*)0
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
#ifdef __STDC__
|
||||||
|
static void *task(void *p)
|
||||||
|
#else
|
||||||
static void *task(p)
|
static void *task(p)
|
||||||
void *p;
|
void *p;
|
||||||
|
#endif
|
||||||
{
|
{
|
||||||
return (void *) (p == NULL);
|
return (void *) (p == NULL);
|
||||||
}
|
}
|
||||||
|
|
@ -20452,16 +20637,24 @@ else
|
||||||
#define NULL (void*)0
|
#define NULL (void*)0
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
#ifdef __STDC__
|
||||||
|
static void *task(void *p)
|
||||||
|
#else
|
||||||
static void *task(p)
|
static void *task(p)
|
||||||
void *p;
|
void *p;
|
||||||
|
#endif
|
||||||
{
|
{
|
||||||
return (void *) (p == NULL);
|
return (void *) (p == NULL);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
#ifdef __STDC__
|
||||||
|
int main(int argc, char **argv)
|
||||||
|
#else
|
||||||
int main(argc, argv)
|
int main(argc, argv)
|
||||||
int argc;
|
int argc;
|
||||||
char **argv;
|
char **argv;
|
||||||
|
#endif
|
||||||
{
|
{
|
||||||
|
|
||||||
/* pthread test function */
|
/* pthread test function */
|
||||||
|
|
@ -20673,14 +20866,12 @@ else
|
||||||
/* end confdefs.h. */
|
/* end confdefs.h. */
|
||||||
|
|
||||||
#include <pthread.h>
|
#include <pthread.h>
|
||||||
#ifndef NULL
|
pthread_t thread;
|
||||||
#define NULL (void*)0
|
|
||||||
#endif
|
|
||||||
|
|
||||||
int
|
int
|
||||||
main ()
|
main ()
|
||||||
{
|
{
|
||||||
pthread_detach(NULL);
|
pthread_detach(thread);
|
||||||
;
|
;
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
@ -20794,16 +20985,24 @@ else
|
||||||
#define NULL (void*)0
|
#define NULL (void*)0
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
#ifdef __STDC__
|
||||||
|
static void *task(void *p)
|
||||||
|
#else
|
||||||
static void *task(p)
|
static void *task(p)
|
||||||
void *p;
|
void *p;
|
||||||
|
#endif
|
||||||
{
|
{
|
||||||
return (void *) (p == NULL);
|
return (void *) (p == NULL);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
#ifdef __STDC__
|
||||||
|
int main(int argc, char **argv)
|
||||||
|
#else
|
||||||
int main(argc, argv)
|
int main(argc, argv)
|
||||||
int argc;
|
int argc;
|
||||||
char **argv;
|
char **argv;
|
||||||
|
#endif
|
||||||
{
|
{
|
||||||
|
|
||||||
/* pthread test function */
|
/* pthread test function */
|
||||||
|
|
@ -20893,6 +21092,9 @@ else
|
||||||
cat confdefs.h - <<_ACEOF >conftest.$ac_ext
|
cat confdefs.h - <<_ACEOF >conftest.$ac_ext
|
||||||
/* end confdefs.h. */
|
/* end confdefs.h. */
|
||||||
|
|
||||||
|
#define _XOPEN_SOURCE 500 /* For pthread_setconcurrency() on glibc */
|
||||||
|
#include <stdlib.h>
|
||||||
|
#include <stdio.h>
|
||||||
#include <sys/types.h>
|
#include <sys/types.h>
|
||||||
#include <sys/time.h>
|
#include <sys/time.h>
|
||||||
#include <unistd.h>
|
#include <unistd.h>
|
||||||
|
|
@ -20903,8 +21105,12 @@ else
|
||||||
|
|
||||||
static int fildes[2];
|
static int fildes[2];
|
||||||
|
|
||||||
|
#ifdef __STDC__
|
||||||
|
static void *task(void *p)
|
||||||
|
#else
|
||||||
static void *task(p)
|
static void *task(p)
|
||||||
void *p;
|
void *p;
|
||||||
|
#endif
|
||||||
{
|
{
|
||||||
int i;
|
int i;
|
||||||
struct timeval tv;
|
struct timeval tv;
|
||||||
|
|
@ -20928,9 +21134,13 @@ static void *task(p)
|
||||||
exit(0); /* if we exit here, the select blocked the whole process */
|
exit(0); /* if we exit here, the select blocked the whole process */
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#ifdef __STDC__
|
||||||
|
int main(int argc, char **argv)
|
||||||
|
#else
|
||||||
int main(argc, argv)
|
int main(argc, argv)
|
||||||
int argc;
|
int argc;
|
||||||
char **argv;
|
char **argv;
|
||||||
|
#endif
|
||||||
{
|
{
|
||||||
pthread_t t;
|
pthread_t t;
|
||||||
|
|
||||||
|
|
@ -23283,7 +23493,8 @@ else
|
||||||
/* end confdefs.h. */
|
/* end confdefs.h. */
|
||||||
|
|
||||||
#include <ctype.h>
|
#include <ctype.h>
|
||||||
main()
|
#include <stdlib.h>
|
||||||
|
int main(void)
|
||||||
{
|
{
|
||||||
if ('C' == toupper('C'))
|
if ('C' == toupper('C'))
|
||||||
exit(0);
|
exit(0);
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue