- update cadaver to 0.23.3

This commit is contained in:
jasper 2010-04-30 09:41:20 +00:00
parent faf325748a
commit 68c76a3d0a
4 changed files with 54 additions and 26 deletions

View File

@ -1,8 +1,8 @@
# $OpenBSD: Makefile,v 1.14 2009/09/08 15:33:15 jasper Exp $
# $OpenBSD: Makefile,v 1.15 2010/04/30 09:41:20 jasper Exp $
COMMENT= command-line WebDAV client
DISTNAME= cadaver-0.23.2
DISTNAME= cadaver-0.23.3
CATEGORIES= net www
HOMEPAGE= http://www.webdav.org/cadaver/

View File

@ -1,5 +1,5 @@
MD5 (cadaver-0.23.2.tar.gz) = WseeQfO3tPaL9AA77tXcJg==
RMD160 (cadaver-0.23.2.tar.gz) = b+Uco8BeDY/QLFGGMAKinbVKtNM=
SHA1 (cadaver-0.23.2.tar.gz) = BRxwon9LGF6/R9o+X9meucmAWFo=
SHA256 (cadaver-0.23.2.tar.gz) = mIVRH+mMOJpX4E2dcjNKw7B1JTTohxCwYjsvaqkBWEQ=
SIZE (cadaver-0.23.2.tar.gz) = 757303
MD5 (cadaver-0.23.3.tar.gz) = UC7NYB5Gf4sWBW0qzKOabw==
RMD160 (cadaver-0.23.3.tar.gz) = EE9ofP0SGwkbovUJs3V0UJtP+r0=
SHA1 (cadaver-0.23.3.tar.gz) = StjqI0G3fn3uJrRuSopJbxopYs0=
SHA256 (cadaver-0.23.3.tar.gz) = /UzmijIwukWakry3R/xq+pHkbYA8HV/+lktmF5PBP8o=
SIZE (cadaver-0.23.3.tar.gz) = 831884

View File

@ -1,16 +1,16 @@
$OpenBSD: patch-configure,v 1.1 2009/09/08 15:33:32 jasper Exp $
--- configure.orig Tue Sep 8 16:41:24 2009
+++ configure Tue Sep 8 16:42:00 2009
@@ -23914,13 +23914,13 @@ rm -f core conftest.err conftest.$ac_objext conftest_i
$OpenBSD: patch-configure,v 1.2 2010/04/30 09:41:20 jasper Exp $
--- configure.orig Tue Dec 15 23:36:26 2009
+++ configure Fri Apr 30 11:39:15 2010
@@ -24397,13 +24397,13 @@ rm -f core conftest.err conftest.$ac_objext conftest_i
if test -n "$gl_have_pthread"; then
# The program links fine without libpthread. But it may actually
# need to link with libpthread in order to create multiple threads.
- { echo "$as_me:$LINENO: checking for pthread_kill in -lpthread" >&5
-echo $ECHO_N "checking for pthread_kill in -lpthread... $ECHO_C" >&6; }
+ { echo "$as_me:$LINENO: checking for pthread_kill in -pthread" >&5
+echo $ECHO_N "checking for pthread_kill in -pthread... $ECHO_C" >&6; }
- { $as_echo "$as_me:$LINENO: checking for pthread_kill in -lpthread" >&5
-$as_echo_n "checking for pthread_kill in -lpthread... " >&6; }
+ { $as_echo "$as_me:$LINENO: checking for pthread_kill in -pthread" >&5
+$as_echo_n "checking for pthread_kill in -pthread... " >&6; }
if test "${ac_cv_lib_pthread_pthread_kill+set}" = set; then
echo $ECHO_N "(cached) $ECHO_C" >&6
$as_echo_n "(cached) " >&6
else
ac_check_lib_save_LIBS=$LIBS
-LIBS="-lpthread $LIBS"
@ -18,12 +18,40 @@ $OpenBSD: patch-configure,v 1.1 2009/09/08 15:33:32 jasper Exp $
cat >conftest.$ac_ext <<_ACEOF
/* confdefs.h. */
_ACEOF
@@ -23976,7 +23976,7 @@ fi
{ echo "$as_me:$LINENO: result: $ac_cv_lib_pthread_pthread_kill" >&5
echo "${ECHO_T}$ac_cv_lib_pthread_pthread_kill" >&6; }
if test $ac_cv_lib_pthread_pthread_kill = yes; then
@@ -24463,7 +24463,7 @@ fi
{ $as_echo "$as_me:$LINENO: result: $ac_cv_lib_pthread_pthread_kill" >&5
$as_echo "$ac_cv_lib_pthread_pthread_kill" >&6; }
if test "x$ac_cv_lib_pthread_pthread_kill" = x""yes; then
- LIBMULTITHREAD=-lpthread LTLIBMULTITHREAD=-lpthread
+ LIBMULTITHREAD=-pthread LTLIBMULTITHREAD=-pthread
# On Solaris and HP-UX, most pthread functions exist also in libc.
# Therefore pthread_in_use() needs to actually try to create a
# thread: pthread_create from libc will fail, whereas
@@ -24481,13 +24481,13 @@ fi
else
# Some library is needed. Try libpthread and libc_r.
- { $as_echo "$as_me:$LINENO: checking for pthread_kill in -lpthread" >&5
-$as_echo_n "checking for pthread_kill in -lpthread... " >&6; }
+ { $as_echo "$as_me:$LINENO: checking for pthread_kill in -pthread" >&5
+$as_echo_n "checking for pthread_kill in -pthread... " >&6; }
if test "${ac_cv_lib_pthread_pthread_kill+set}" = set; then
$as_echo_n "(cached) " >&6
else
ac_check_lib_save_LIBS=$LIBS
-LIBS="-lpthread $LIBS"
+LIBS="-pthread $LIBS"
cat >conftest.$ac_ext <<_ACEOF
/* confdefs.h. */
_ACEOF
@@ -24548,8 +24548,8 @@ fi
$as_echo "$ac_cv_lib_pthread_pthread_kill" >&6; }
if test "x$ac_cv_lib_pthread_pthread_kill" = x""yes; then
gl_have_pthread=yes
- LIBTHREAD=-lpthread LTLIBTHREAD=-lpthread
- LIBMULTITHREAD=-lpthread LTLIBMULTITHREAD=-lpthread
+ LIBTHREAD=-pthread LTLIBTHREAD=-pthread
+ LIBMULTITHREAD=-pthread LTLIBMULTITHREAD=-pthread
fi
if test -z "$gl_have_pthread"; then

View File

@ -1,7 +1,7 @@
$OpenBSD: patch-src_cadaver_c,v 1.2 2009/09/08 15:33:15 jasper Exp $
--- src/cadaver.c.orig Tue Sep 8 16:35:26 2009
+++ src/cadaver.c Tue Sep 8 16:35:44 2009
@@ -707,7 +707,7 @@ static char **completion(const char *text, int start,
$OpenBSD: patch-src_cadaver_c,v 1.3 2010/04/30 09:41:20 jasper Exp $
--- src/cadaver.c.orig Wed Oct 29 10:35:33 2008
+++ src/cadaver.c Fri Apr 30 11:38:11 2010
@@ -724,7 +724,7 @@ static char **completion(const char *text, int start,
char *sep = strchr(rl_line_buffer, ' ');
if (start == 0) {
@ -10,7 +10,7 @@ $OpenBSD: patch-src_cadaver_c,v 1.2 2009/09/08 15:33:15 jasper Exp $
}
else if (sep != NULL) {
char *cname = ne_strndup(rl_line_buffer, sep - rl_line_buffer);
@@ -719,7 +719,7 @@ static char **completion(const char *text, int start,
@@ -736,7 +736,7 @@ static char **completion(const char *text, int start,
case parmscope_none:
break;
case parmscope_local:
@ -19,7 +19,7 @@ $OpenBSD: patch-src_cadaver_c,v 1.2 2009/09/08 15:33:15 jasper Exp $
rl_filename_completion_function);
break;
case parmscope_option:
@@ -727,7 +727,7 @@ static char **completion(const char *text, int start,
@@ -744,7 +744,7 @@ static char **completion(const char *text, int start,
break;
case parmscope_remote:
if (session.connected) {