]> git.ipfire.org Git - thirdparty/gnutls.git/commitdiff
Initialized repository for GNU TLS
authorWerner Koch <wk@gnupg.org>
Tue, 7 Mar 2000 14:02:00 +0000 (14:02 +0000)
committerWerner Koch <wk@gnupg.org>
Tue, 7 Mar 2000 14:02:00 +0000 (14:02 +0000)
Makefile.am [new file with mode: 0644]
NEWS [new file with mode: 0644]
README [new file with mode: 0644]
THANKS [new file with mode: 0644]
acconfig.h [new file with mode: 0644]
acinclude.m4 [new file with mode: 0644]
configure.in [new file with mode: 0644]
lib/Makefile.am [new file with mode: 0644]
src/Makefile.am [new file with mode: 0644]

diff --git a/Makefile.am b/Makefile.am
new file mode 100644 (file)
index 0000000..3bd3cb9
--- /dev/null
@@ -0,0 +1,3 @@
+
+SUBDIRS = lib src
+
diff --git a/NEWS b/NEWS
new file mode 100644 (file)
index 0000000..e69de29
diff --git a/README b/README
new file mode 100644 (file)
index 0000000..e69de29
diff --git a/THANKS b/THANKS
new file mode 100644 (file)
index 0000000..e69de29
diff --git a/acconfig.h b/acconfig.h
new file mode 100644 (file)
index 0000000..c864fca
--- /dev/null
@@ -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 (file)
index 0000000..e69de29
diff --git a/configure.in b/configure.in
new file mode 100644 (file)
index 0000000..6c09783
--- /dev/null
@@ -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 (file)
index 0000000..e69de29
diff --git a/src/Makefile.am b/src/Makefile.am
new file mode 100644 (file)
index 0000000..f36936b
--- /dev/null
@@ -0,0 +1,8 @@
+## Process this file with automake to produce Makefile.in
+
+bin_PROGRAMS = foo
+
+
+foo_SOURCES = foo.c foo.h 
+
+