aboutsummaryrefslogtreecommitdiffstats
path: root/packages/stunnel
diff options
context:
space:
mode:
authorMarcin Juszkiewicz <hrw@openembedded.org>2006-12-19 10:28:52 +0000
committerMarcin Juszkiewicz <hrw@openembedded.org>2006-12-19 10:28:52 +0000
commit7933603336c1676e79f6baa4bbd72b2b27fa4c49 (patch)
treea8f75f301c621ea4e9e7c5111dace9c9bbd08dfb /packages/stunnel
parent497d1931f83b6a15b4bed0276605e1243cf58725 (diff)
downloadopenembedded-7933603336c1676e79f6baa4bbd72b2b27fa4c49.tar.gz
stunnel: dropped 4.05 obsoleted by upstream
Diffstat (limited to 'packages/stunnel')
-rw-r--r--packages/stunnel/stunnel-4.05/.mtn2git_empty0
-rw-r--r--packages/stunnel/stunnel-4.05/automake.patch9
-rw-r--r--packages/stunnel/stunnel-4.05/configure.patch37
-rw-r--r--packages/stunnel/stunnel_4.05.bb8
4 files changed, 0 insertions, 54 deletions
diff --git a/packages/stunnel/stunnel-4.05/.mtn2git_empty b/packages/stunnel/stunnel-4.05/.mtn2git_empty
deleted file mode 100644
index e69de29bb2..0000000000
--- a/packages/stunnel/stunnel-4.05/.mtn2git_empty
+++ /dev/null
diff --git a/packages/stunnel/stunnel-4.05/automake.patch b/packages/stunnel/stunnel-4.05/automake.patch
deleted file mode 100644
index a1baa151d5..0000000000
--- a/packages/stunnel/stunnel-4.05/automake.patch
+++ /dev/null
@@ -1,9 +0,0 @@
-diff -urN stunnel-4.05.orig/Makefile.am stunnel-4.05/Makefile.am
---- stunnel-4.05.orig/Makefile.am 2003-01-11 23:30:48.000000000 -0500
-+++ stunnel-4.05/Makefile.am 2004-03-21 20:57:58.000000000 -0500
-@@ -1,4 +1,4 @@
--SUBDIRS = src doc tools
-+SUBDIRS = src doc
-
- # extra_src = src/gui.c src/resources.rc src/stunnel.ico src/stunnel.exe
- # extra_doc = doc/stunnel.pod doc/stunnel.8 doc/stunnel.html doc/en doc/pl
diff --git a/packages/stunnel/stunnel-4.05/configure.patch b/packages/stunnel/stunnel-4.05/configure.patch
deleted file mode 100644
index 5764796aaa..0000000000
--- a/packages/stunnel/stunnel-4.05/configure.patch
+++ /dev/null
@@ -1,37 +0,0 @@
-Index: stunnel-4.05/configure.ac
-===================================================================
---- stunnel-4.05.orig/configure.ac 2003-12-28 15:47:49.000000000 -0500
-+++ stunnel-4.05/configure.ac 2005-04-01 22:14:39.751121880 -0500
-@@ -176,8 +176,30 @@
- [AC_MSG_RESULT([no])]; LIBS="$saved_LIBS")
-
- dnl Check PTY device files.
--AC_CHECK_FILE("/dev/ptmx", AC_DEFINE(HAVE_DEV_PTMX))
--AC_CHECK_FILE("/dev/ptc", AC_DEFINE(HAVE_DEV_PTS_AND_PTC))
-+AC_ARG_WITH(ptmx,
-+ [ --with-ptmx /dev/ptmx exists (default: check for existance)],
-+ [
-+ if test x"$withval" = "xyes"; then
-+ AC_DEFINE(HAVE_DEV_PTMX)
-+ fi
-+ ],
-+ [
-+ # Check for ptmx device
-+ AC_CHECK_FILE("/dev/ptmx", AC_DEFINE(HAVE_DEV_PTMX))
-+ ]
-+)
-+AC_ARG_WITH(ptc,
-+ [ --with-ptc /dev/ptc exists (default: check for existance)],
-+ [
-+ if test x"$withval" = "xyes"; then
-+ AC_DEFINE(HAVE_DEV_PTS_AND_PTC)
-+ fi
-+ ],
-+ [
-+ # Check for ptc device
-+ AC_CHECK_FILE("/dev/ptc", AC_DEFINE(HAVE_DEV_PTS_AND_PTC))
-+ ]
-+)
-
- dnl Checks for header files.
- # AC_HEADER_DIRENT
diff --git a/packages/stunnel/stunnel_4.05.bb b/packages/stunnel/stunnel_4.05.bb
deleted file mode 100644
index 5f61b1c125..0000000000
--- a/packages/stunnel/stunnel_4.05.bb
+++ /dev/null
@@ -1,8 +0,0 @@
-require stunnel.inc
-
-PR = "r1"
-SRC_URI = "ftp://stunnel.mirt.net/stunnel/OBSOLETE/stunnel-${PV}.tar.gz \
- file://configure.patch;patch=1 \
- file://automake.patch;patch=1 \
- file://init \
- file://stunnel.conf"