diff options
author | Chris Larson <clarson@kergoth.com> | 2005-04-02 03:18:04 +0000 |
---|---|---|
committer | Chris Larson <clarson@kergoth.com> | 2005-04-02 03:18:04 +0000 |
commit | 9f6c8550e721bb7f16f98edf6203922d5f0d6eee (patch) | |
tree | 825d2e52277191fc6cbe2b93f7ff28e287f654ef /packages/stunnel/stunnel-4.05 | |
parent | a983c318609026685769f3ec83866e01e0f39789 (diff) |
Merge oe-devel@oe-devel.bkbits.net:openembedded
into handhelds.org:/home/kergoth/code/openembedded
2005/04/01 22:17:39-05:00 handhelds.org!kergoth
Add stunnel 4.09, fix the stunnel configure patch to be a proper fix rather than a hack so that it can be sent upstream, and consolodate metadata into a .inc.
BKrev: 424e0eecxQOI96UmxS4cwaEYAv3Szg
Diffstat (limited to 'packages/stunnel/stunnel-4.05')
-rw-r--r-- | packages/stunnel/stunnel-4.05/configure.patch | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/packages/stunnel/stunnel-4.05/configure.patch b/packages/stunnel/stunnel-4.05/configure.patch index e69de29bb2..5764796aaa 100644 --- a/packages/stunnel/stunnel-4.05/configure.patch +++ b/packages/stunnel/stunnel-4.05/configure.patch @@ -0,0 +1,37 @@ +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 |