--- /dev/null
+/* acconfig.h - used by autoheader to make config.h.in
+ */
+#ifndef GPA_CONFIG_H
+#define GPA_CONFIG_H
+
+/* Need this, because some autoconf tests rely on this (e.g. stpcpy)
+ * and it should be used for new programs anyway. */
+#define _GNU_SOURCE 1
+
+@TOP@
+
+#undef HAVE_BYTE_TYPEDEF
+
+
+@BOTTOM@
+
+
+#endif /*GPA_CONFIG_H*/
--- /dev/null
+dnl
+dnl Configure script source for GNUTLS
+dnl
+dnl (Process this file with autoconf to produce a configure script.)
+AC_REVISION($Revision$)dnl
+AC_PREREQ(2.13)
+
+AC_INIT(src/gnutls.c)
+AM_CONFIG_HEADER(config.h)
+
+dnl
+dnl The version number goes here
+dnl
+AM_INIT_AUTOMAKE(gnutls,0.0.0)
+
+dnl
+dnl Setup some stuff depending on host/target.
+dnl
+case "${target}" in
+ *-*-mingw32)
+ # special stuff for Windoze NT
+ # Do we need to set cross_compiling here or is it sufficient
+ # to rely on AC_PROG_CC which is called later?
+ CC="${target}-gcc"
+ CPP="${target}-gcc -E"
+ RANLIB="${target}-ranlib"
+ ;;
+ *)
+ ;;
+esac
+
+
+AM_MAINTAINER_MODE
+
+dnl
+dnl Checks for programs
+dnl
+AC_PROG_CC
+AC_STDC_HEADERS
+AC_ARG_PROGRAM
+AC_PROG_RANLIB
+
+
+dnl
+dnl Checks for libraries
+dnl
+
+
+dnl
+dnl Checks for header files
+dnl
+
+
+dnl
+dnl Checks for typedefs and structures
+dnl
+
+
+
+dnl
+dnl Checks for compiler features
+dnl
+
+dnl
+dnl Checks for library functions
+dnl
+
+
+dnl
+dnl Checks for system services
+dnl
+
+
+AC_OUTPUT([
+Makefile
+lib/Makefile
+src/Makefile
+])
+
+
+dnl *-*wedit:notab*-* Please keep this as the last line.