summaryrefslogtreecommitdiff
path: root/configure.in
diff options
context:
space:
mode:
authorrpj <rpj>2001-12-18 07:38:07 +0000
committerrpj <rpj>2001-12-18 07:38:07 +0000
commitf3cbc4396f3f3e40e3fc2978df51c3ff32c1ac51 (patch)
tree77e0fdecb19fb6f5a1888107f55f9efa1b1b6db4 /configure.in
parent104d1669a344de413ea4c7f1106fcf4a5d95b610 (diff)
Include an interim complete Copyright notice in each source file;
Remove unused autoconf files; Add the file COPYING, which describes the pthread-win32 license relative to the FSF LGPL.
Diffstat (limited to 'configure.in')
-rw-r--r--configure.in23
1 files changed, 0 insertions, 23 deletions
diff --git a/configure.in b/configure.in
deleted file mode 100644
index 114891e..0000000
--- a/configure.in
+++ /dev/null
@@ -1,23 +0,0 @@
-dnl Process this file with autoconf to produce a configure script.
-
-AC_INIT(pthread.h)
-AC_CANONICAL_HOST
-AC_CONFIG_HEADER(config.h)
-AC_PROG_CC
-
-dnl Abort here if there is no windows.h
-AC_CHECK_HEADER([windows.h],,AC_MSG_ERROR([Target system must be Win32]))
-
-AC_CHECK_HEADER([signal.h],signal_h=yes,)
-if test x$signal_h = xyes
-then
- AC_CACHE_CHECK([for sigset_t], p32_cv_sigset_t,
- AC_TRY_COMPILE([#include <signal.h>], [sigset_t x;],
- p32_cv_sigset_t=yes, p32_cv_sigset_t=no))
-
- if test x$p32_cv_sigset_t = xyes ; then
- AC_DEFINE(HAVE_SIGSET_T)
- fi
-fi
-
-AC_OUTPUT(GNUmakefile)