diff options
author | Denys Dmytriyenko <denis@denix.org> | 2009-03-17 14:32:59 -0400 |
---|---|---|
committer | Denys Dmytriyenko <denis@denix.org> | 2009-03-17 14:32:59 -0400 |
commit | 709c4d66e0b107ca606941b988bad717c0b45d9b (patch) | |
tree | 37ee08b1eb308f3b2b6426d5793545c38396b838 /recipes/stunnel/stunnel-4.09 | |
parent | fa6cd5a3b993f16c27de4ff82b42684516d433ba (diff) |
rename packages/ to recipes/ per earlier agreement
See links below for more details:
http://thread.gmane.org/gmane.comp.handhelds.openembedded/21326
http://thread.gmane.org/gmane.comp.handhelds.openembedded/21816
Signed-off-by: Denys Dmytriyenko <denis@denix.org>
Acked-by: Mike Westerhof <mwester@dls.net>
Acked-by: Philip Balister <philip@balister.org>
Acked-by: Khem Raj <raj.khem@gmail.com>
Acked-by: Marcin Juszkiewicz <hrw@openembedded.org>
Acked-by: Koen Kooi <koen@openembedded.org>
Acked-by: Frans Meulenbroeks <fransmeulenbroeks@gmail.com>
Diffstat (limited to 'recipes/stunnel/stunnel-4.09')
-rw-r--r-- | recipes/stunnel/stunnel-4.09/automake.patch | 12 | ||||
-rw-r--r-- | recipes/stunnel/stunnel-4.09/configure.patch | 37 |
2 files changed, 49 insertions, 0 deletions
diff --git a/recipes/stunnel/stunnel-4.09/automake.patch b/recipes/stunnel/stunnel-4.09/automake.patch new file mode 100644 index 0000000000..ea93933aba --- /dev/null +++ b/recipes/stunnel/stunnel-4.09/automake.patch @@ -0,0 +1,12 @@ +Index: stunnel-4.09/Makefile.am +=================================================================== +--- stunnel-4.09.orig/Makefile.am 2004-10-10 01:37:15.000000000 -0400 ++++ stunnel-4.09/Makefile.am 2005-04-01 22:09:06.819735144 -0500 +@@ -1,6 +1,6 @@ + ## Process this file with automake to produce Makefile.in + +-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/recipes/stunnel/stunnel-4.09/configure.patch b/recipes/stunnel/stunnel-4.09/configure.patch new file mode 100644 index 0000000000..1cd7cc2791 --- /dev/null +++ b/recipes/stunnel/stunnel-4.09/configure.patch @@ -0,0 +1,37 @@ +Index: stunnel-4.09/configure.ac +=================================================================== +--- stunnel-4.09.orig/configure.ac 2005-02-28 11:24:17.000000000 -0500 ++++ stunnel-4.09/configure.ac 2005-04-01 22:12:06.007494464 -0500 +@@ -35,8 +35,30 @@ + AC_CHECK_SIZEOF(unsigned long) + + AC_MSG_NOTICE([**************************************** 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)) ++ ] ++) + + AC_MSG_NOTICE([**************************************** SSL and entropy]) + checkssldir() { : |