summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorWerner Koch <wk@gnupg.org>2000-03-07 14:02:00 +0000
committerWerner Koch <wk@gnupg.org>2000-03-07 14:02:00 +0000
commit8aef5fff2e54b67c694fa4ef9190cbedf1ff00c1 (patch)
tree2e6e79f629bae65bf761a821219ace178ed05741
downloadgnutls-8aef5fff2e54b67c694fa4ef9190cbedf1ff00c1.tar.gz
Initialized repository for GNU TLS
-rw-r--r--Makefile.am3
-rw-r--r--NEWS0
-rw-r--r--README0
-rw-r--r--THANKS0
-rw-r--r--acconfig.h18
-rw-r--r--acinclude.m40
-rw-r--r--configure.in81
-rw-r--r--lib/Makefile.am0
-rw-r--r--src/Makefile.am8
9 files changed, 110 insertions, 0 deletions
diff --git a/Makefile.am b/Makefile.am
new file mode 100644
index 0000000000..3bd3cb9072
--- /dev/null
+++ b/Makefile.am
@@ -0,0 +1,3 @@
+
+SUBDIRS = lib src
+
diff --git a/NEWS b/NEWS
new file mode 100644
index 0000000000..e69de29bb2
--- /dev/null
+++ b/NEWS
diff --git a/README b/README
new file mode 100644
index 0000000000..e69de29bb2
--- /dev/null
+++ b/README
diff --git a/THANKS b/THANKS
new file mode 100644
index 0000000000..e69de29bb2
--- /dev/null
+++ b/THANKS
diff --git a/acconfig.h b/acconfig.h
new file mode 100644
index 0000000000..c864fca155
--- /dev/null
+++ b/acconfig.h
@@ -0,0 +1,18 @@
+/* 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*/
diff --git a/acinclude.m4 b/acinclude.m4
new file mode 100644
index 0000000000..e69de29bb2
--- /dev/null
+++ b/acinclude.m4
diff --git a/configure.in b/configure.in
new file mode 100644
index 0000000000..6c097839bd
--- /dev/null
+++ b/configure.in
@@ -0,0 +1,81 @@
+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.
diff --git a/lib/Makefile.am b/lib/Makefile.am
new file mode 100644
index 0000000000..e69de29bb2
--- /dev/null
+++ b/lib/Makefile.am
diff --git a/src/Makefile.am b/src/Makefile.am
new file mode 100644
index 0000000000..f36936bec5
--- /dev/null
+++ b/src/Makefile.am
@@ -0,0 +1,8 @@
+## Process this file with automake to produce Makefile.in
+
+bin_PROGRAMS = foo
+
+
+foo_SOURCES = foo.c foo.h
+
+