1656 lines
70 KiB
Diff
1656 lines
70 KiB
Diff
diff -Naupr ucarp-1.2/ChangeLog ucarp-1.3/ChangeLog
|
||
--- ucarp-1.2/ChangeLog 2006-02-25 17:32:53.000000000 +0100
|
||
+++ ucarp-1.3/ChangeLog 2006-07-05 00:59:22.000000000 +0200
|
||
@@ -1,3 +1,14 @@
|
||
+* Version 1.3:
|
||
+ -n option wasn't properly parsed while --neutral was. Reported by Stefan
|
||
+Behte.
|
||
+ gratuitous ARP packets should now be properly sent. Thanks to Marcus
|
||
+Rueckert for indirectly pointing out that the code was wrong.
|
||
+ New -m option, and the virtual IP address is now passed to up/down scripts
|
||
+as well. By Fabrice Dulaunoy and Dirk Jagdmann who provided different
|
||
+implementations of the same idea.
|
||
+ A bogus return statement has been removed, thanks to Alessio Cervellin.
|
||
+ All interfaces should now be discovered on Solaris.
|
||
+
|
||
* Version 1.2:
|
||
fakesnprintf/bsd-getopt_long updates from pure-ftpd 1.0.21.
|
||
Avoid processing our own multicasts. Thanks to Gregory McGarry.
|
||
diff -Naupr ucarp-1.2/config.guess ucarp-1.3/config.guess
|
||
--- ucarp-1.2/config.guess 2006-02-01 20:59:57.000000000 +0100
|
||
+++ ucarp-1.3/config.guess 2006-05-27 23:12:33.000000000 +0200
|
||
@@ -1,9 +1,10 @@
|
||
#! /bin/sh
|
||
# Attempt to guess a canonical system name.
|
||
# Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999,
|
||
-# 2000, 2001, 2002, 2003, 2004, 2005 Free Software Foundation, Inc.
|
||
+# 2000, 2001, 2002, 2003, 2004, 2005, 2006 Free Software Foundation,
|
||
+# Inc.
|
||
|
||
-timestamp='2005-07-08'
|
||
+timestamp='2006-05-13'
|
||
|
||
# This file is free software; you can redistribute it and/or modify it
|
||
# under the terms of the GNU General Public License as published by
|
||
@@ -106,7 +107,7 @@ set_cc_for_build='
|
||
trap "exitcode=\$?; (rm -f \$tmpfiles 2>/dev/null; rmdir \$tmp 2>/dev/null) && exit \$exitcode" 0 ;
|
||
trap "rm -f \$tmpfiles 2>/dev/null; rmdir \$tmp 2>/dev/null; exit 1" 1 2 13 15 ;
|
||
: ${TMPDIR=/tmp} ;
|
||
- { tmp=`(umask 077 && mktemp -d -q "$TMPDIR/cgXXXXXX") 2>/dev/null` && test -n "$tmp" && test -d "$tmp" ; } ||
|
||
+ { tmp=`(umask 077 && mktemp -d "$TMPDIR/cgXXXXXX") 2>/dev/null` && test -n "$tmp" && test -d "$tmp" ; } ||
|
||
{ test -n "$RANDOM" && tmp=$TMPDIR/cg$$-$RANDOM && (umask 077 && mkdir $tmp) ; } ||
|
||
{ tmp=$TMPDIR/cg-$$ && (umask 077 && mkdir $tmp) && echo "Warning: creating insecure temp directory" >&2 ; } ||
|
||
{ echo "$me: cannot create a temporary directory in $TMPDIR" >&2 ; exit 1 ; } ;
|
||
@@ -206,6 +207,9 @@ case "${UNAME_MACHINE}:${UNAME_SYSTEM}:$
|
||
*:ekkoBSD:*:*)
|
||
echo ${UNAME_MACHINE}-unknown-ekkobsd${UNAME_RELEASE}
|
||
exit ;;
|
||
+ *:SolidBSD:*:*)
|
||
+ echo ${UNAME_MACHINE}-unknown-solidbsd${UNAME_RELEASE}
|
||
+ exit ;;
|
||
macppc:MirBSD:*:*)
|
||
echo powerppc-unknown-mirbsd${UNAME_RELEASE}
|
||
exit ;;
|
||
@@ -764,7 +768,14 @@ EOF
|
||
echo ${UNAME_MACHINE}-unknown-bsdi${UNAME_RELEASE}
|
||
exit ;;
|
||
*:FreeBSD:*:*)
|
||
- echo ${UNAME_MACHINE}-unknown-freebsd`echo ${UNAME_RELEASE}|sed -e 's/[-(].*//'`
|
||
+ case ${UNAME_MACHINE} in
|
||
+ pc98)
|
||
+ echo i386-unknown-freebsd`echo ${UNAME_RELEASE}|sed -e 's/[-(].*//'` ;;
|
||
+ amd64)
|
||
+ echo x86_64-unknown-freebsd`echo ${UNAME_RELEASE}|sed -e 's/[-(].*//'` ;;
|
||
+ *)
|
||
+ echo ${UNAME_MACHINE}-unknown-freebsd`echo ${UNAME_RELEASE}|sed -e 's/[-(].*//'` ;;
|
||
+ esac
|
||
exit ;;
|
||
i*:CYGWIN*:*)
|
||
echo ${UNAME_MACHINE}-pc-cygwin
|
||
@@ -779,8 +790,11 @@ EOF
|
||
i*:PW*:*)
|
||
echo ${UNAME_MACHINE}-pc-pw32
|
||
exit ;;
|
||
- x86:Interix*:[34]*)
|
||
- echo i586-pc-interix${UNAME_RELEASE}|sed -e 's/\..*//'
|
||
+ x86:Interix*:[345]*)
|
||
+ echo i586-pc-interix${UNAME_RELEASE}
|
||
+ exit ;;
|
||
+ EM64T:Interix*:[345]*)
|
||
+ echo x86_64-unknown-interix${UNAME_RELEASE}
|
||
exit ;;
|
||
[345]86:Windows_95:* | [345]86:Windows_98:* | [345]86:Windows_NT:*)
|
||
echo i${UNAME_MACHINE}-pc-mks
|
||
@@ -794,7 +808,7 @@ EOF
|
||
i*:UWIN*:*)
|
||
echo ${UNAME_MACHINE}-pc-uwin
|
||
exit ;;
|
||
- amd64:CYGWIN*:*:*)
|
||
+ amd64:CYGWIN*:*:* | x86_64:CYGWIN*:*:*)
|
||
echo x86_64-unknown-cygwin
|
||
exit ;;
|
||
p*:CYGWIN*:*)
|
||
@@ -851,7 +865,11 @@ EOF
|
||
#endif
|
||
#endif
|
||
EOF
|
||
- eval `$CC_FOR_BUILD -E $dummy.c 2>/dev/null | grep ^CPU=`
|
||
+ eval "`$CC_FOR_BUILD -E $dummy.c 2>/dev/null | sed -n '
|
||
+ /^CPU/{
|
||
+ s: ::g
|
||
+ p
|
||
+ }'`"
|
||
test x"${CPU}" != x && { echo "${CPU}-unknown-linux-gnu"; exit; }
|
||
;;
|
||
mips64:Linux:*:*)
|
||
@@ -870,9 +888,16 @@ EOF
|
||
#endif
|
||
#endif
|
||
EOF
|
||
- eval `$CC_FOR_BUILD -E $dummy.c 2>/dev/null | grep ^CPU=`
|
||
+ eval "`$CC_FOR_BUILD -E $dummy.c 2>/dev/null | sed -n '
|
||
+ /^CPU/{
|
||
+ s: ::g
|
||
+ p
|
||
+ }'`"
|
||
test x"${CPU}" != x && { echo "${CPU}-unknown-linux-gnu"; exit; }
|
||
;;
|
||
+ or32:Linux:*:*)
|
||
+ echo or32-unknown-linux-gnu
|
||
+ exit ;;
|
||
ppc:Linux:*:*)
|
||
echo powerpc-unknown-linux-gnu
|
||
exit ;;
|
||
@@ -916,6 +941,9 @@ EOF
|
||
sparc:Linux:*:* | sparc64:Linux:*:*)
|
||
echo ${UNAME_MACHINE}-unknown-linux-gnu
|
||
exit ;;
|
||
+ vax:Linux:*:*)
|
||
+ echo ${UNAME_MACHINE}-dec-linux-gnu
|
||
+ exit ;;
|
||
x86_64:Linux:*:*)
|
||
echo x86_64-unknown-linux-gnu
|
||
exit ;;
|
||
@@ -961,7 +989,7 @@ EOF
|
||
LIBC=gnulibc1
|
||
# endif
|
||
#else
|
||
- #ifdef __INTEL_COMPILER
|
||
+ #if defined(__INTEL_COMPILER) || defined(__PGI) || defined(__SUNPRO_C) || defined(__SUNPRO_CC)
|
||
LIBC=gnu
|
||
#else
|
||
LIBC=gnuaout
|
||
@@ -971,7 +999,11 @@ EOF
|
||
LIBC=dietlibc
|
||
#endif
|
||
EOF
|
||
- eval `$CC_FOR_BUILD -E $dummy.c 2>/dev/null | grep ^LIBC=`
|
||
+ eval "`$CC_FOR_BUILD -E $dummy.c 2>/dev/null | sed -n '
|
||
+ /^LIBC/{
|
||
+ s: ::g
|
||
+ p
|
||
+ }'`"
|
||
test x"${LIBC}" != x && {
|
||
echo "${UNAME_MACHINE}-pc-linux-${LIBC}"
|
||
exit
|
||
@@ -1182,7 +1214,6 @@ EOF
|
||
*:Darwin:*:*)
|
||
UNAME_PROCESSOR=`uname -p` || UNAME_PROCESSOR=unknown
|
||
case $UNAME_PROCESSOR in
|
||
- *86) UNAME_PROCESSOR=i686 ;;
|
||
unknown) UNAME_PROCESSOR=powerpc ;;
|
||
esac
|
||
echo ${UNAME_PROCESSOR}-apple-darwin${UNAME_RELEASE}
|
||
@@ -1261,6 +1292,9 @@ EOF
|
||
i*86:skyos:*:*)
|
||
echo ${UNAME_MACHINE}-pc-skyos`echo ${UNAME_RELEASE}` | sed -e 's/ .*$//'
|
||
exit ;;
|
||
+ i*86:rdos:*:*)
|
||
+ echo ${UNAME_MACHINE}-pc-rdos
|
||
+ exit ;;
|
||
esac
|
||
|
||
#echo '(No uname command or uname output not recognized.)' 1>&2
|
||
diff -Naupr ucarp-1.2/config.sub ucarp-1.3/config.sub
|
||
--- ucarp-1.2/config.sub 2006-02-01 20:59:57.000000000 +0100
|
||
+++ ucarp-1.3/config.sub 2006-05-27 23:12:38.000000000 +0200
|
||
@@ -1,9 +1,10 @@
|
||
#! /bin/sh
|
||
# Configuration validation subroutine script.
|
||
# Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999,
|
||
-# 2000, 2001, 2002, 2003, 2004, 2005 Free Software Foundation, Inc.
|
||
+# 2000, 2001, 2002, 2003, 2004, 2005, 2006 Free Software Foundation,
|
||
+# Inc.
|
||
|
||
-timestamp='2005-07-08'
|
||
+timestamp='2006-05-13'
|
||
|
||
# This file is (in principle) common to ALL GNU software.
|
||
# The presence of a machine in this file suggests that SOME GNU software
|
||
@@ -119,8 +120,9 @@ esac
|
||
# Here we must recognize all the valid KERNEL-OS combinations.
|
||
maybe_os=`echo $1 | sed 's/^\(.*\)-\([^-]*-[^-]*\)$/\2/'`
|
||
case $maybe_os in
|
||
- nto-qnx* | linux-gnu* | linux-dietlibc | linux-uclibc* | uclinux-uclibc* | uclinux-gnu* | \
|
||
- kfreebsd*-gnu* | knetbsd*-gnu* | netbsd*-gnu* | storm-chaos* | os2-emx* | rtmk-nova*)
|
||
+ nto-qnx* | linux-gnu* | linux-dietlibc | linux-newlib* | linux-uclibc* | \
|
||
+ uclinux-uclibc* | uclinux-gnu* | kfreebsd*-gnu* | knetbsd*-gnu* | netbsd*-gnu* | \
|
||
+ storm-chaos* | os2-emx* | rtmk-nova*)
|
||
os=-$maybe_os
|
||
basic_machine=`echo $1 | sed 's/^\(.*\)-\([^-]*-[^-]*\)$/\1/'`
|
||
;;
|
||
@@ -171,6 +173,10 @@ case $os in
|
||
-hiux*)
|
||
os=-hiuxwe2
|
||
;;
|
||
+ -sco6)
|
||
+ os=-sco5v6
|
||
+ basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'`
|
||
+ ;;
|
||
-sco5)
|
||
os=-sco3.2v5
|
||
basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'`
|
||
@@ -187,6 +193,10 @@ case $os in
|
||
# Don't forget version if it is 3.2v4 or newer.
|
||
basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'`
|
||
;;
|
||
+ -sco5v6*)
|
||
+ # Don't forget version if it is 3.2v4 or newer.
|
||
+ basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'`
|
||
+ ;;
|
||
-sco*)
|
||
os=-sco3.2v2
|
||
basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'`
|
||
@@ -239,7 +249,8 @@ case $basic_machine in
|
||
| h8300 | h8500 | hppa | hppa1.[01] | hppa2.0 | hppa2.0[nw] | hppa64 \
|
||
| i370 | i860 | i960 | ia64 \
|
||
| ip2k | iq2000 \
|
||
- | m32r | m32rle | m68000 | m68k | m88k | maxq | mcore \
|
||
+ | m32c | m32r | m32rle | m68000 | m68k | m88k \
|
||
+ | maxq | mb | microblaze | mcore \
|
||
| mips | mipsbe | mipseb | mipsel | mipsle \
|
||
| mips16 \
|
||
| mips64 | mips64el \
|
||
@@ -257,18 +268,19 @@ case $basic_machine in
|
||
| mipsisa64sr71k | mipsisa64sr71kel \
|
||
| mipstx39 | mipstx39el \
|
||
| mn10200 | mn10300 \
|
||
- | ms1 \
|
||
+ | mt \
|
||
| msp430 \
|
||
+ | nios | nios2 \
|
||
| ns16k | ns32k \
|
||
| or32 \
|
||
| pdp10 | pdp11 | pj | pjl \
|
||
| powerpc | powerpc64 | powerpc64le | powerpcle | ppcbe \
|
||
| pyramid \
|
||
- | sh | sh[1234] | sh[24]a | sh[23]e | sh[34]eb | shbe | shle | sh[1234]le | sh3ele \
|
||
+ | sh | sh[1234] | sh[24]a | sh[23]e | sh[34]eb | sheb | shbe | shle | sh[1234]le | sh3ele \
|
||
| sh64 | sh64le \
|
||
- | sparc | sparc64 | sparc64b | sparc86x | sparclet | sparclite \
|
||
- | sparcv8 | sparcv9 | sparcv9b \
|
||
- | strongarm \
|
||
+ | sparc | sparc64 | sparc64b | sparc64v | sparc86x | sparclet | sparclite \
|
||
+ | sparcv8 | sparcv9 | sparcv9b | sparcv9v \
|
||
+ | spu | strongarm \
|
||
| tahoe | thumb | tic4x | tic80 | tron \
|
||
| v850 | v850e \
|
||
| we32k \
|
||
@@ -276,9 +288,6 @@ case $basic_machine in
|
||
| z8k)
|
||
basic_machine=$basic_machine-unknown
|
||
;;
|
||
- m32c)
|
||
- basic_machine=$basic_machine-unknown
|
||
- ;;
|
||
m6811 | m68hc11 | m6812 | m68hc12)
|
||
# Motorola 68HC11/12.
|
||
basic_machine=$basic_machine-unknown
|
||
@@ -286,6 +295,9 @@ case $basic_machine in
|
||
;;
|
||
m88110 | m680[12346]0 | m683?2 | m68360 | m5200 | v70 | w65 | z8k)
|
||
;;
|
||
+ ms1)
|
||
+ basic_machine=mt-unknown
|
||
+ ;;
|
||
|
||
# We use `pc' rather than `unknown'
|
||
# because (1) that's what they normally are, and
|
||
@@ -316,7 +328,7 @@ case $basic_machine in
|
||
| hppa-* | hppa1.[01]-* | hppa2.0-* | hppa2.0[nw]-* | hppa64-* \
|
||
| i*86-* | i860-* | i960-* | ia64-* \
|
||
| ip2k-* | iq2000-* \
|
||
- | m32r-* | m32rle-* \
|
||
+ | m32c-* | m32r-* | m32rle-* \
|
||
| m68000-* | m680[012346]0-* | m68360-* | m683?2-* | m68k-* \
|
||
| m88110-* | m88k-* | maxq-* | mcore-* \
|
||
| mips-* | mipsbe-* | mipseb-* | mipsel-* | mipsle-* \
|
||
@@ -336,19 +348,20 @@ case $basic_machine in
|
||
| mipsisa64sr71k-* | mipsisa64sr71kel-* \
|
||
| mipstx39-* | mipstx39el-* \
|
||
| mmix-* \
|
||
- | ms1-* \
|
||
+ | mt-* \
|
||
| msp430-* \
|
||
+ | nios-* | nios2-* \
|
||
| none-* | np1-* | ns16k-* | ns32k-* \
|
||
| orion-* \
|
||
| pdp10-* | pdp11-* | pj-* | pjl-* | pn-* | power-* \
|
||
| powerpc-* | powerpc64-* | powerpc64le-* | powerpcle-* | ppcbe-* \
|
||
| pyramid-* \
|
||
| romp-* | rs6000-* \
|
||
- | sh-* | sh[1234]-* | sh[24]a-* | sh[23]e-* | sh[34]eb-* | shbe-* \
|
||
+ | sh-* | sh[1234]-* | sh[24]a-* | sh[23]e-* | sh[34]eb-* | sheb-* | shbe-* \
|
||
| shle-* | sh[1234]le-* | sh3ele-* | sh64-* | sh64le-* \
|
||
- | sparc-* | sparc64-* | sparc64b-* | sparc86x-* | sparclet-* \
|
||
+ | sparc-* | sparc64-* | sparc64b-* | sparc64v-* | sparc86x-* | sparclet-* \
|
||
| sparclite-* \
|
||
- | sparcv8-* | sparcv9-* | sparcv9b-* | strongarm-* | sv1-* | sx?-* \
|
||
+ | sparcv8-* | sparcv9-* | sparcv9b-* | sparcv9v-* | strongarm-* | sv1-* | sx?-* \
|
||
| tahoe-* | thumb-* \
|
||
| tic30-* | tic4x-* | tic54x-* | tic55x-* | tic6x-* | tic80-* \
|
||
| tron-* \
|
||
@@ -359,8 +372,6 @@ case $basic_machine in
|
||
| ymp-* \
|
||
| z8k-*)
|
||
;;
|
||
- m32c-*)
|
||
- ;;
|
||
# Recognize the various machine names and aliases which stand
|
||
# for a CPU type and a company and sometimes even an OS.
|
||
386bsd)
|
||
@@ -696,6 +707,9 @@ case $basic_machine in
|
||
basic_machine=i386-pc
|
||
os=-msdos
|
||
;;
|
||
+ ms1-*)
|
||
+ basic_machine=`echo $basic_machine | sed -e 's/ms1-/mt-/'`
|
||
+ ;;
|
||
mvs)
|
||
basic_machine=i370-ibm
|
||
os=-mvs
|
||
@@ -803,6 +817,12 @@ case $basic_machine in
|
||
pc532 | pc532-*)
|
||
basic_machine=ns32k-pc532
|
||
;;
|
||
+ pc98)
|
||
+ basic_machine=i386-pc
|
||
+ ;;
|
||
+ pc98-*)
|
||
+ basic_machine=i386-`echo $basic_machine | sed 's/^[^-]*-//'`
|
||
+ ;;
|
||
pentium | p5 | k5 | k6 | nexgen | viac3)
|
||
basic_machine=i586-pc
|
||
;;
|
||
@@ -859,6 +879,10 @@ case $basic_machine in
|
||
basic_machine=i586-unknown
|
||
os=-pw32
|
||
;;
|
||
+ rdos)
|
||
+ basic_machine=i386-pc
|
||
+ os=-rdos
|
||
+ ;;
|
||
rom68k)
|
||
basic_machine=m68k-rom68k
|
||
os=-coff
|
||
@@ -1101,7 +1125,7 @@ case $basic_machine in
|
||
sh[1234] | sh[24]a | sh[34]eb | sh[1234]le | sh[23]ele)
|
||
basic_machine=sh-unknown
|
||
;;
|
||
- sparc | sparcv8 | sparcv9 | sparcv9b)
|
||
+ sparc | sparcv8 | sparcv9 | sparcv9b | sparcv9v)
|
||
basic_machine=sparc-sun
|
||
;;
|
||
cydra)
|
||
@@ -1174,21 +1198,23 @@ case $os in
|
||
| -aos* \
|
||
| -nindy* | -vxsim* | -vxworks* | -ebmon* | -hms* | -mvs* \
|
||
| -clix* | -riscos* | -uniplus* | -iris* | -rtu* | -xenix* \
|
||
- | -hiux* | -386bsd* | -knetbsd* | -mirbsd* | -netbsd* | -openbsd* \
|
||
+ | -hiux* | -386bsd* | -knetbsd* | -mirbsd* | -netbsd* \
|
||
+ | -openbsd* | -solidbsd* \
|
||
| -ekkobsd* | -kfreebsd* | -freebsd* | -riscix* | -lynxos* \
|
||
| -bosx* | -nextstep* | -cxux* | -aout* | -elf* | -oabi* \
|
||
| -ptx* | -coff* | -ecoff* | -winnt* | -domain* | -vsta* \
|
||
| -udi* | -eabi* | -lites* | -ieee* | -go32* | -aux* \
|
||
| -chorusos* | -chorusrdb* \
|
||
| -cygwin* | -pe* | -psos* | -moss* | -proelf* | -rtems* \
|
||
- | -mingw32* | -linux-gnu* | -linux-uclibc* | -uxpv* | -beos* | -mpeix* | -udk* \
|
||
+ | -mingw32* | -linux-gnu* | -linux-newlib* | -linux-uclibc* \
|
||
+ | -uxpv* | -beos* | -mpeix* | -udk* \
|
||
| -interix* | -uwin* | -mks* | -rhapsody* | -darwin* | -opened* \
|
||
| -openstep* | -oskit* | -conix* | -pw32* | -nonstopux* \
|
||
| -storm-chaos* | -tops10* | -tenex* | -tops20* | -its* \
|
||
| -os2* | -vos* | -palmos* | -uclinux* | -nucleus* \
|
||
| -morphos* | -superux* | -rtmk* | -rtmk-nova* | -windiss* \
|
||
| -powermax* | -dnix* | -nx6 | -nx7 | -sei* | -dragonfly* \
|
||
- | -skyos* | -haiku*)
|
||
+ | -skyos* | -haiku* | -rdos*)
|
||
# Remember, each alternative MUST END IN *, to match a version number.
|
||
;;
|
||
-qnx*)
|
||
@@ -1340,6 +1366,9 @@ else
|
||
# system, and we'll never get to this point.
|
||
|
||
case $basic_machine in
|
||
+ spu-*)
|
||
+ os=-elf
|
||
+ ;;
|
||
*-acorn)
|
||
os=-riscix1.2
|
||
;;
|
||
@@ -1349,9 +1378,9 @@ case $basic_machine in
|
||
arm*-semi)
|
||
os=-aout
|
||
;;
|
||
- c4x-* | tic4x-*)
|
||
- os=-coff
|
||
- ;;
|
||
+ c4x-* | tic4x-*)
|
||
+ os=-coff
|
||
+ ;;
|
||
# This must come before the *-dec entry.
|
||
pdp10-*)
|
||
os=-tops20
|
||
diff -Naupr ucarp-1.2/configure ucarp-1.3/configure
|
||
--- ucarp-1.2/configure 2006-02-25 17:32:42.000000000 +0100
|
||
+++ ucarp-1.3/configure 2006-05-27 23:14:51.000000000 +0200
|
||
@@ -1,6 +1,6 @@
|
||
#! /bin/sh
|
||
# Guess values for system-dependent variables and create Makefiles.
|
||
-# Generated by GNU Autoconf 2.59 for ucarp 1.2.
|
||
+# Generated by GNU Autoconf 2.59 for ucarp 1.3.
|
||
#
|
||
# Report bugs to <bugs@ucarp.org>.
|
||
#
|
||
@@ -269,8 +269,8 @@ SHELL=${CONFIG_SHELL-/bin/sh}
|
||
# Identity of this package.
|
||
PACKAGE_NAME='ucarp'
|
||
PACKAGE_TARNAME='ucarp'
|
||
-PACKAGE_VERSION='1.2'
|
||
-PACKAGE_STRING='ucarp 1.2'
|
||
+PACKAGE_VERSION='1.3'
|
||
+PACKAGE_STRING='ucarp 1.3'
|
||
PACKAGE_BUGREPORT='bugs@ucarp.org'
|
||
|
||
ac_config_libobj_dir=src
|
||
@@ -780,7 +780,7 @@ if test "$ac_init_help" = "long"; then
|
||
# Omit some internal or obsolete options to make the list less imposing.
|
||
# This message is too long to be a string in the A/UX 3.1 sh.
|
||
cat <<_ACEOF
|
||
-\`configure' configures ucarp 1.2 to adapt to many kinds of systems.
|
||
+\`configure' configures ucarp 1.3 to adapt to many kinds of systems.
|
||
|
||
Usage: $0 [OPTION]... [VAR=VALUE]...
|
||
|
||
@@ -846,7 +846,7 @@ fi
|
||
|
||
if test -n "$ac_init_help"; then
|
||
case $ac_init_help in
|
||
- short | recursive ) echo "Configuration of ucarp 1.2:";;
|
||
+ short | recursive ) echo "Configuration of ucarp 1.3:";;
|
||
esac
|
||
cat <<\_ACEOF
|
||
|
||
@@ -976,7 +976,7 @@ fi
|
||
test -n "$ac_init_help" && exit 0
|
||
if $ac_init_version; then
|
||
cat <<\_ACEOF
|
||
-ucarp configure 1.2
|
||
+ucarp configure 1.3
|
||
generated by GNU Autoconf 2.59
|
||
|
||
Copyright (C) 2003 Free Software Foundation, Inc.
|
||
@@ -990,7 +990,7 @@ cat >&5 <<_ACEOF
|
||
This file contains any messages produced by compilers while
|
||
running configure, to aid debugging if configure makes a mistake.
|
||
|
||
-It was created by ucarp $as_me 1.2, which was
|
||
+It was created by ucarp $as_me 1.3, which was
|
||
generated by GNU Autoconf 2.59. Invocation command line was
|
||
|
||
$ $0 $@
|
||
@@ -1635,7 +1635,7 @@ fi
|
||
|
||
# Define the identity of the package.
|
||
PACKAGE='ucarp'
|
||
- VERSION='1.2'
|
||
+ VERSION='1.3'
|
||
|
||
|
||
cat >>confdefs.h <<_ACEOF
|
||
@@ -12000,7 +12000,7 @@ sysconfdir="$CONFDIR"
|
||
CPPFLAGS="$CPPFLAGS -DCONFDIR=\\\"$sysconfdir\\\""
|
||
|
||
|
||
- ac_config_files="$ac_config_files Makefile src/Makefile examples/Makefile po/Makefile.in examples/linux/Makefile examples/bsd/Makefile m4/Makefile"
|
||
+ ac_config_files="$ac_config_files Makefile src/Makefile examples/Makefile examples/linux/Makefile examples/bsd/Makefile po/Makefile.in m4/Makefile"
|
||
|
||
|
||
cat >confcache <<\_ACEOF
|
||
@@ -12379,7 +12379,7 @@ _ASBOX
|
||
} >&5
|
||
cat >&5 <<_CSEOF
|
||
|
||
-This file was extended by ucarp $as_me 1.2, which was
|
||
+This file was extended by ucarp $as_me 1.3, which was
|
||
generated by GNU Autoconf 2.59. Invocation command line was
|
||
|
||
CONFIG_FILES = $CONFIG_FILES
|
||
@@ -12442,7 +12442,7 @@ _ACEOF
|
||
|
||
cat >>$CONFIG_STATUS <<_ACEOF
|
||
ac_cs_version="\\
|
||
-ucarp config.status 1.2
|
||
+ucarp config.status 1.3
|
||
configured by $0, generated by GNU Autoconf 2.59,
|
||
with options \\"`echo "$ac_configure_args" | sed 's/[\\""\`\$]/\\\\&/g'`\\"
|
||
|
||
@@ -12562,9 +12562,9 @@ do
|
||
"Makefile" ) CONFIG_FILES="$CONFIG_FILES Makefile" ;;
|
||
"src/Makefile" ) CONFIG_FILES="$CONFIG_FILES src/Makefile" ;;
|
||
"examples/Makefile" ) CONFIG_FILES="$CONFIG_FILES examples/Makefile" ;;
|
||
- "po/Makefile.in" ) CONFIG_FILES="$CONFIG_FILES po/Makefile.in" ;;
|
||
"examples/linux/Makefile" ) CONFIG_FILES="$CONFIG_FILES examples/linux/Makefile" ;;
|
||
"examples/bsd/Makefile" ) CONFIG_FILES="$CONFIG_FILES examples/bsd/Makefile" ;;
|
||
+ "po/Makefile.in" ) CONFIG_FILES="$CONFIG_FILES po/Makefile.in" ;;
|
||
"m4/Makefile" ) CONFIG_FILES="$CONFIG_FILES m4/Makefile" ;;
|
||
"depfiles" ) CONFIG_COMMANDS="$CONFIG_COMMANDS depfiles" ;;
|
||
"default-1" ) CONFIG_COMMANDS="$CONFIG_COMMANDS default-1" ;;
|
||
diff -Naupr ucarp-1.2/configure.ac ucarp-1.3/configure.ac
|
||
--- ucarp-1.2/configure.ac 2006-02-25 17:25:46.000000000 +0100
|
||
+++ ucarp-1.3/configure.ac 2006-05-27 23:04:41.000000000 +0200
|
||
@@ -1,6 +1,6 @@
|
||
AC_PREREQ(2.59)
|
||
|
||
-AC_INIT([ucarp],[1.2],[bugs@ucarp.org])
|
||
+AC_INIT([ucarp],[1.3],[bugs@ucarp.org])
|
||
AC_CONFIG_HEADERS([config.h])
|
||
AM_INIT_AUTOMAKE([1.9 dist-bzip2])
|
||
AC_CONFIG_LIBOBJ_DIR(src)
|
||
@@ -259,9 +259,9 @@ CPPFLAGS="$CPPFLAGS -DCONFDIR=\\\"$sysco
|
||
|
||
dnl Output
|
||
|
||
-AC_CONFIG_FILES(Makefile src/Makefile examples/Makefile po/Makefile.in
|
||
+AC_CONFIG_FILES(Makefile src/Makefile examples/Makefile
|
||
examples/linux/Makefile examples/bsd/Makefile
|
||
- m4/Makefile )
|
||
+ po/Makefile.in m4/Makefile )
|
||
|
||
AC_OUTPUT
|
||
|
||
diff -Naupr ucarp-1.2/examples/bsd/vip-down.sh ucarp-1.3/examples/bsd/vip-down.sh
|
||
--- ucarp-1.2/examples/bsd/vip-down.sh 2004-08-28 12:16:55.000000000 +0200
|
||
+++ ucarp-1.3/examples/bsd/vip-down.sh 2006-05-27 22:38:40.000000000 +0200
|
||
@@ -1,4 +1,4 @@
|
||
#! /bin/sh
|
||
exec 2> /dev/null
|
||
|
||
-/sbin/ifconfig "$1" -alias 10.1.1.252
|
||
+/sbin/ifconfig "$1" -alias "$2"
|
||
diff -Naupr ucarp-1.2/examples/bsd/vip-up.sh ucarp-1.3/examples/bsd/vip-up.sh
|
||
--- ucarp-1.2/examples/bsd/vip-up.sh 2004-08-28 12:16:52.000000000 +0200
|
||
+++ ucarp-1.3/examples/bsd/vip-up.sh 2006-05-27 22:38:34.000000000 +0200
|
||
@@ -1,4 +1,4 @@
|
||
#! /bin/sh
|
||
exec 2> /dev/null
|
||
|
||
-/sbin/ifconfig "$1" alias 10.1.1.252 netmask 255.255.255.255
|
||
+/sbin/ifconfig "$1" alias "$2" netmask 255.255.255.255
|
||
diff -Naupr ucarp-1.2/examples/linux/vip-down.sh ucarp-1.3/examples/linux/vip-down.sh
|
||
--- ucarp-1.2/examples/linux/vip-down.sh 2004-08-28 12:16:49.000000000 +0200
|
||
+++ ucarp-1.3/examples/linux/vip-down.sh 2006-05-27 22:41:37.000000000 +0200
|
||
@@ -1,4 +1,7 @@
|
||
#! /bin/sh
|
||
exec 2> /dev/null
|
||
|
||
-/sbin/ip addr del 10.1.1.252/24 dev "$1"
|
||
+/sbin/ip addr del "$2"/24 dev "$1"
|
||
+
|
||
+# or alternatively:
|
||
+# /sbin/ifconfig "$1":254 down
|
||
diff -Naupr ucarp-1.2/examples/linux/vip-up.sh ucarp-1.3/examples/linux/vip-up.sh
|
||
--- ucarp-1.2/examples/linux/vip-up.sh 2004-08-28 12:16:47.000000000 +0200
|
||
+++ ucarp-1.3/examples/linux/vip-up.sh 2006-05-27 22:40:22.000000000 +0200
|
||
@@ -1,4 +1,7 @@
|
||
#! /bin/sh
|
||
exec 2> /dev/null
|
||
|
||
-/sbin/ip addr add 10.1.1.252/24 dev "$1"
|
||
+/sbin/ip addr add "$2"/24 dev "$1"
|
||
+
|
||
+# or alternatively:
|
||
+# /sbin/ifconfig "$1":254 "$2" netmask 255.255.255.0
|
||
diff -Naupr ucarp-1.2/Makefile.am ucarp-1.3/Makefile.am
|
||
--- ucarp-1.2/Makefile.am 2006-02-25 17:22:01.000000000 +0100
|
||
+++ ucarp-1.3/Makefile.am 2006-05-27 23:09:30.000000000 +0200
|
||
@@ -7,4 +7,4 @@ SUBDIRS = \
|
||
ACLOCAL_AMFLAGS = -I m4
|
||
|
||
|
||
-EXTRA_DIST = config.rpath mkinstalldirs
|
||
+EXTRA_DIST = config.rpath mkinstalldirs config.rpath mkinstalldirs
|
||
diff -Naupr ucarp-1.2/Makefile.in ucarp-1.3/Makefile.in
|
||
--- ucarp-1.2/Makefile.in 2006-02-25 17:32:11.000000000 +0100
|
||
+++ ucarp-1.3/Makefile.in 2006-05-27 23:14:12.000000000 +0200
|
||
@@ -178,7 +178,7 @@ SUBDIRS = \
|
||
examples
|
||
|
||
ACLOCAL_AMFLAGS = -I m4
|
||
-EXTRA_DIST = config.rpath mkinstalldirs
|
||
+EXTRA_DIST = config.rpath mkinstalldirs config.rpath mkinstalldirs
|
||
all: config.h
|
||
$(MAKE) $(AM_MAKEFLAGS) all-recursive
|
||
|
||
diff -Naupr ucarp-1.2/NEWS ucarp-1.3/NEWS
|
||
--- ucarp-1.2/NEWS 2006-02-19 00:15:43.000000000 +0100
|
||
+++ ucarp-1.3/NEWS 2006-04-06 11:50:19.000000000 +0200
|
||
@@ -1,3 +1,5 @@
|
||
+* Version 1.3:
|
||
+
|
||
* Version 1.2:
|
||
- Neutral mode (--neutral).
|
||
- NetBSD compatibility.
|
||
diff -Naupr ucarp-1.2/po/en@boldquot.gmo ucarp-1.3/po/en@boldquot.gmo
|
||
--- ucarp-1.2/po/en@boldquot.gmo 2006-02-25 17:50:06.000000000 +0100
|
||
+++ ucarp-1.3/po/en@boldquot.gmo 2006-07-05 00:54:58.000000000 +0200
|
||
@@ -1,13 +1,8 @@
|
||
-<2D><04> |