diff options
author | Koen Kooi <koen@openembedded.org> | 2005-06-30 08:19:37 +0000 |
---|---|---|
committer | OpenEmbedded Project <openembedded-devel@lists.openembedded.org> | 2005-06-30 08:19:37 +0000 |
commit | c8e5702127e507e82e6f68a4b8c546803accea9d (patch) | |
tree | 00583491f40ecc640f2b28452af995e3a63a09d7 /packages/ssmtp/ssmtp-2.60.9/configure.patch | |
parent | 87ec8ca4d2e2eb4d1c1e1e1a6b46a395d56805b9 (diff) |
import clean BK tree at cset 1.3670
Diffstat (limited to 'packages/ssmtp/ssmtp-2.60.9/configure.patch')
-rw-r--r-- | packages/ssmtp/ssmtp-2.60.9/configure.patch | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/packages/ssmtp/ssmtp-2.60.9/configure.patch b/packages/ssmtp/ssmtp-2.60.9/configure.patch index e69de29bb2..2feaa8a80c 100644 --- a/packages/ssmtp/ssmtp-2.60.9/configure.patch +++ b/packages/ssmtp/ssmtp-2.60.9/configure.patch @@ -0,0 +1,32 @@ + +# +# Patch managed by http://www.mn-logistik.de/unsupported/pxa250/patcher +# + +--- ssmtp-2.60/./configure.in~configure ++++ ssmtp-2.60/./configure.in +@@ -1,5 +1,6 @@ + dnl Process this file with autoconf to produce a configure script. +-AC_INIT(ssmtp.c) ++AC_INIT ++AC_CONFIG_SRCDIR([ssmtp.c]) + + dnl Checks for programs. + AC_PROG_INSTALL +@@ -13,8 +14,7 @@ + + + AC_CACHE_CHECK([for obsolete openlog],ssmtp_cv_obsolete_openlog, +- [ AC_TRY_COMPILE([#include <syslog.h> ] , [ openlog("xx",1); ] , +- ssmtp_cv_obsolete_openlog=yes, ssmtp_cv_obsolete_openlog=no)] ++ [ AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[#include <syslog.h> ]], [[ openlog("xx",1); ]])],[ssmtp_cv_obsolete_openlog=yes],[ssmtp_cv_obsolete_openlog=no])] + ) + + +@@ -70,4 +70,5 @@ + fi + enableval="" + +-AC_OUTPUT(Makefile) ++AC_CONFIG_FILES([Makefile]) ++AC_OUTPUT |