Author: pebender
Date: Fri Feb 27 21:33:40 2009
New Revision: 4413
Added:
trunk/gar-minimyth/script/net/openssh/files/openssh-5.2p1.patch
Removed:
trunk/gar-minimyth/script/net/openssh/files/openssh-5.1p1.patch
Modified:
trunk/gar-minimyth/html/minimyth/document-changelog.txt
trunk/gar-minimyth/script/net/openssh/Makefile
trunk/gar-minimyth/script/net/openssh/checksums
Log:
- Updated package net/openssh.
Modified: trunk/gar-minimyth/html/minimyth/document-changelog.txt
==============================================================================
--- trunk/gar-minimyth/html/minimyth/document-changelog.txt (original)
+++ trunk/gar-minimyth/html/minimyth/document-changelog.txt Fri Feb 27
21:33:40 2009
@@ -62,6 +62,7 @@
Updated lib/libsndfile.
Updated mediaplayers/mplayer-svn.
Updated net/mount.cifs.
+ Updated net/openssh.
Updated qt/qt4.
Updated system/lirc.
Updated system/zoneinfo.
Modified: trunk/gar-minimyth/script/net/openssh/Makefile
==============================================================================
--- trunk/gar-minimyth/script/net/openssh/Makefile (original)
+++ trunk/gar-minimyth/script/net/openssh/Makefile Fri Feb 27 21:33:40 2009
@@ -1,5 +1,5 @@
GARNAME = openssh
-GARVERSION = 5.1p1
+GARVERSION = 5.2p1
CATEGORIES = net
MASTER_SITES = ftp://ftp.openbsd.org/pub/OpenBSD/OpenSSH/portable/
MASTER_SITES += ftp://ftp.openbsd.org/pub/OpenBSD/OpenSSH/portable/old/
Modified: trunk/gar-minimyth/script/net/openssh/checksums
==============================================================================
--- trunk/gar-minimyth/script/net/openssh/checksums (original)
+++ trunk/gar-minimyth/script/net/openssh/checksums Fri Feb 27 21:33:40 2009
@@ -1,2 +1,2 @@
-03f2d0c1b5ec60d4ac9997a146d2faec download/openssh-5.1p1.tar.gz
-fae8295fba1246fd68d4d23755693c20 download/openssh-5.1p1.patch
+ada79c7328a8551bdf55c95e631e7dad download/openssh-5.2p1.tar.gz
+5ecf5a1d448ec48e73e2d2afe14c537d download/openssh-5.2p1.patch
Added: trunk/gar-minimyth/script/net/openssh/files/openssh-5.2p1.patch
==============================================================================
--- (empty file)
+++ trunk/gar-minimyth/script/net/openssh/files/openssh-5.2p1.patch Fri Feb
27 21:33:40 2009
@@ -0,0 +1,53 @@
+diff -Naur openssh-5.2p1-old/configure.ac openssh-5.2p1-new/configure.ac
+--- openssh-5.2p1-old/configure.ac 2009-02-15 20:37:03.000000000 -0800
++++ openssh-5.2p1-new/configure.ac 2009-02-26 08:20:12.000000000 -0800
+@@ -29,7 +29,7 @@
+ AC_PROG_RANLIB
+ AC_PROG_INSTALL
+ AC_PROG_EGREP
+-AC_PATH_PROG(AR, ar)
++AC_PATH_TOOL(AR, ar)
+ AC_PATH_PROG(CAT, cat)
+ AC_PATH_PROG(KILL, kill)
+ AC_PATH_PROGS(PERL, perl5 perl)
+@@ -1105,25 +1105,25 @@
+
+ AC_CHECK_DECLS(GLOB_NOMATCH, , , [#include <glob.h>])
+
+-AC_MSG_CHECKING([whether struct dirent allocates space for d_name])
+-AC_RUN_IFELSE(
+- [AC_LANG_SOURCE([[
++AC_CACHE_CHECK(
++ [whether struct dirent allocates space for d_name],
++ [ac_cv_have_space_for_dirent_d_name],
++ [AC_RUN_IFELSE(
++ [AC_LANG_SOURCE([[
+ #include <sys/types.h>
+ #include <dirent.h>
+ int main(void){struct dirent d;exit(sizeof(d.d_name)<=sizeof(char));}
+- ]])],
+- [AC_MSG_RESULT(yes)],
+- [
+- AC_MSG_RESULT(no)
+- AC_DEFINE(BROKEN_ONE_BYTE_DIRENT_D_NAME, 1,
+- [Define if your struct dirent expects you to
+- allocate extra space for d_name])
+- ],
+- [
+- AC_MSG_WARN([cross compiling: assuming
BROKEN_ONE_BYTE_DIRENT_D_NAME])
+- AC_DEFINE(BROKEN_ONE_BYTE_DIRENT_D_NAME)
+- ]
++ ]])],
++ [ ac_cv_have_space_for_dirent_d_name="yes" ],
++ [ ac_cv_have_space_for_dirent_d_name="no" ],
++ [ ac_cv_have_space_for_dirent_d_name="no" ]
++ )]
+ )
++if test "x$ac_cv_have_space_for_dirent_d_name" = "xno" ; then
++ AC_DEFINE(BROKEN_ONE_BYTE_DIRENT_D_NAME, 1,
++ [Define if your struct dirent expects you to
++ allocate extra space for d_name])
++fi
+
+ AC_MSG_CHECKING([for /proc/pid/fd directory])
+ if test -d "/proc/$$/fd" ; then
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"minimyth-commits" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/minimyth-commits?hl=en
-~----------~----~----~----~------~----~------~--~---