CVS update: /ccvs/
[email protected] 6 May 2005 15:50:38 -0000
| Newsgroups | gmane.comp.version-control.cvs.cvs |
|---|---|
| Message-ID | <[email protected]> |
User: dprice Date: 05/05/06 08:50:38 Modified: /ccvs/ ChangeLog, NEWS, configure Log: Issue number: 248 * NEWS: Note Solaris 10 command option parsing fix. File Changes: Directory: /ccvs/ ================= File [changed]: ChangeLog Url: https://ccvs.cvshome.org/source/browse/ccvs/ChangeLog?r1=1.1205&r2=1.1206 Delta lines: +4 -0 ------------------- --- ChangeLog 4 May 2005 21:10:24 -0000 1.1205 +++ ChangeLog 6 May 2005 15:50:36 -0000 1.1206 @@ -1,3 +1,7 @@ +2005-05-06 Derek Price <[email protected]> + + * NEWS: Note Solaris 10 command option parsing fix. + 2005-05-04 Mark D. Baushke <[email protected]> * maint-aux/gnulib-update: Depend on maint-aux/gnulib-modules File [changed]: NEWS Url: https://ccvs.cvshome.org/source/browse/ccvs/NEWS?r1=1.317&r2=1.318 Delta lines: +3 -0 ------------------- --- NEWS 3 May 2005 14:59:54 -0000 1.317 +++ NEWS 6 May 2005 15:50:36 -0000 1.318 @@ -3,6 +3,9 @@ NEW FEATURES +* CVS on Solaris 10 was refusing to parse command options. This has been + fixed. + * The Windows client now creates locks compatible with older versions of CVS by default. This should only be relevant if your client is accessing a local repository concurrently with another, older client. If you would like to File [changed]: configure Url: https://ccvs.cvshome.org/source/browse/ccvs/configure?r1=1.386&r2=1.387 Delta lines: +69 -1 -------------------- --- configure 3 May 2005 14:59:54 -0000 1.386 +++ configure 6 May 2005 15:50:36 -0000 1.387 @@ -19246,6 +19246,7 @@ done + if test -z "$GETOPT_H"; then for ac_func in getopt_long_only do @@ -19350,7 +19351,9 @@ fi done + fi + if test -z "$GETOPT_H"; then echo "$as_me:$LINENO: checking whether optreset is declared" >&5 echo $ECHO_N "checking whether optreset is declared... $ECHO_C" >&6 if test "${ac_cv_have_decl_optreset+set}" = set; then @@ -19412,6 +19415,71 @@ GETOPT_H=getopt.h fi + fi + + if test -z "$GETOPT_H"; then + echo "$as_me:$LINENO: checking whether getopt_clip is declared" >&5 +echo $ECHO_N "checking whether getopt_clip is declared... $ECHO_C" >&6 +if test "${ac_cv_have_decl_getopt_clip+set}" = set; then + echo $ECHO_N "(cached) $ECHO_C" >&6 +else + cat >conftest.$ac_ext <<_ACEOF +/* confdefs.h. */ +_ACEOF +cat confdefs.h >>conftest.$ac_ext +cat >>conftest.$ac_ext <<_ACEOF +/* end confdefs.h. */ +#include <getopt.h> + +int +main () +{ +#ifndef getopt_clip + char *p = (char *) getopt_clip; +#endif + + ; + return 0; +} +_ACEOF +rm -f conftest.$ac_objext +if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 + (eval $ac_compile) 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 + echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && + { ac_try='test -z "$ac_c_werror_flag" + || test ! -s conftest.err' + { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 + (eval $ac_try) 2>&5 + ac_status=$? + echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); }; } && + { ac_try='test -s conftest.$ac_objext' + { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 + (eval $ac_try) 2>&5 + ac_status=$? + echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); }; }; then + ac_cv_have_decl_getopt_clip=yes +else + echo "$as_me: failed program was:" >&5 +sed 's/^/| /' conftest.$ac_ext >&5 + +ac_cv_have_decl_getopt_clip=no +fi +rm -f conftest.err conftest.$ac_objext conftest.$ac_ext +fi +echo "$as_me:$LINENO: result: $ac_cv_have_decl_getopt_clip" >&5 +echo "${ECHO_T}$ac_cv_have_decl_getopt_clip" >&6 +if test $ac_cv_have_decl_getopt_clip = yes; then + GETOPT_H=getopt.h +fi + + fi if test -n "$GETOPT_H"; then