diff options
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() { : |