Changes for libg++ version 2.8.1.1 to version 2.8.1.1a. Before applying these diffs, rename the directory into which you unpacked libg++ 2.8.1.1 to libg++-2.8.1.1a. Then go into that directory and execute the following command: patch -p1 -E feeding it the following diffs as input. diff -rupN libg++-2.8.1.1/librx/ChangeLog libg++-2.8.1.1a/librx/ChangeLog --- libg++-2.8.1.1/librx/ChangeLog Thu Mar 19 12:41:43 1998 +++ libg++-2.8.1.1a/librx/ChangeLog Thu Apr 9 16:34:40 1998 @@ -1,3 +1,11 @@ +Thu Apr 9 16:29:53 1998 Manfred Hollstein + + * From Alexandre Oliva : + * configure.in (checking for target makefile fragment): Protect + shell glob pattern from being eaten by autoconf's m4. + Use "test" instead of "[ ... ]". + * configure: Re-build. + Tue Mar 3 08:26:10 1998 Manfred Hollstein * configure.in: Make locating frag files failsafe even for the diff -rupN libg++-2.8.1.1/librx/configure.in libg++-2.8.1.1a/librx/configure.in --- libg++-2.8.1.1/librx/configure.in Thu Mar 5 19:32:55 1998 +++ libg++-2.8.1.1a/librx/configure.in Thu Apr 9 16:28:09 1998 @@ -43,14 +43,14 @@ target_frag= if test "${shared}" = "yes" ; then case "${target}" in hppa*-*-*) target_frag=../config/mh-papic ;; - i[3456]86-*-*) target_frag=../config/mh-x86pic ;; + i[[3456]]86-*-*) target_frag=../config/mh-x86pic ;; *-*-*) target_frag=../config/mh-${target_cpu}pic ;; esac case ${target_frag} in ../* ) - if [ ${srcdir} = . ]; then - [ -n "${with_target_subdir}" ] && target_frag=../${target_frag} - [ -n "${with_multisrctop}" ] && target_frag=${with_multisrctop}${target_frag} + if test ${srcdir} = . ; then + test -n "${with_target_subdir}" && target_frag=../${target_frag} + test -n "${with_multisrctop}" && target_frag=${with_multisrctop}${target_frag} fi ;; esac diff -rupN libg++-2.8.1.1/librx/configure libg++-2.8.1.1a/librx/configure --- libg++-2.8.1.1/librx/configure Thu Mar 5 19:33:32 1998 +++ libg++-2.8.1.1a/librx/configure Thu Apr 9 16:28:18 1998 @@ -1361,14 +1361,14 @@ target_frag= if test "${shared}" = "yes" ; then case "${target}" in hppa*-*-*) target_frag=../config/mh-papic ;; - i345686-*-*) target_frag=../config/mh-x86pic ;; + i[3456]86-*-*) target_frag=../config/mh-x86pic ;; *-*-*) target_frag=../config/mh-${target_cpu}pic ;; esac case ${target_frag} in ../* ) - if ${srcdir} = . ; then - -n "${with_target_subdir}" && target_frag=../${target_frag} - -n "${with_multisrctop}" && target_frag=${with_multisrctop}${target_frag} + if test ${srcdir} = . ; then + test -n "${with_target_subdir}" && target_frag=../${target_frag} + test -n "${with_multisrctop}" && target_frag=${with_multisrctop}${target_frag} fi ;; esac