From: <dan...@us...> - 2009-04-28 14:06:06
|
Revision: 1258 http://cegcc.svn.sourceforge.net/cegcc/?rev=1258&view=rev Author: dannybackx Date: 2009-04-28 14:03:01 +0000 (Tue, 28 Apr 2009) Log Message: ----------- Ismail's fix for recognizing more versions. My addition (on my disk for ages) for the other architecture. Modified Paths: -------------- trunk/cegcc/src/newlib/ChangeLog.cegcc trunk/cegcc/src/newlib/configure trunk/cegcc/src/newlib/configure.in Modified: trunk/cegcc/src/newlib/ChangeLog.cegcc =================================================================== --- trunk/cegcc/src/newlib/ChangeLog.cegcc 2009-04-28 13:44:30 UTC (rev 1257) +++ trunk/cegcc/src/newlib/ChangeLog.cegcc 2009-04-28 14:03:01 UTC (rev 1258) @@ -1,3 +1,12 @@ +2009-04-28 Danny Backx <dan...@us...> + + * configure, configure.in : recognize more targets. + +2009-04-28 Ismail Khatib <ik...@im...> + + * configure, configure.in : Make it recognize newer versions of + texinfo (4.9 was recognized, 4.13 not). + 2008-10-09 Pawel Veselov <paw...@gm...> newlib/ Modified: trunk/cegcc/src/newlib/configure =================================================================== --- trunk/cegcc/src/newlib/configure 2009-04-28 13:44:30 UTC (rev 1257) +++ trunk/cegcc/src/newlib/configure 2009-04-28 14:03:01 UTC (rev 1258) @@ -2724,7 +2724,7 @@ # ranlib from Darwin requires the -c flag to look at common symbols. extra_ranlibflags_for_target=" -c" ;; - mips*-*-pe | sh*-*-pe | *arm-wince-pe | *arm-wince-cegcc) + mips*-*-pe | sh*-*-pe | arm-unknown-* | *arm-wince-pe | *arm-wince-cegcc) target_makefile_frag="config/mt-wince" ;; esac @@ -3543,7 +3543,7 @@ # For an installed makeinfo, we require it to be from texinfo 4.2 or # higher, else we use the "missing" dummy. if ${MAKEINFO} --version \ - | egrep 'texinfo[^0-9]*([1-3][0-9]|4\.[2-9]|[5-9])' >/dev/null 2>&1; then + | egrep 'texinfo[^0-9]*([1-3][0-9]|4\.)([2-9]|[1-9].*)' >/dev/null 2>&1; then : else MAKEINFO="$MISSING makeinfo" Modified: trunk/cegcc/src/newlib/configure.in =================================================================== --- trunk/cegcc/src/newlib/configure.in 2009-04-28 13:44:30 UTC (rev 1257) +++ trunk/cegcc/src/newlib/configure.in 2009-04-28 14:03:01 UTC (rev 1258) @@ -1519,7 +1519,7 @@ # ranlib from Darwin requires the -c flag to look at common symbols. extra_ranlibflags_for_target=" -c" ;; - mips*-*-pe | sh*-*-pe | *arm-wince-pe | *arm-wince-cegcc) + mips*-*-pe | sh*-*-pe | arm-unknown-* | *arm-wince-pe | *arm-wince-cegcc) target_makefile_frag="config/mt-wince" ;; esac @@ -2128,7 +2128,7 @@ # For an installed makeinfo, we require it to be from texinfo 4.2 or # higher, else we use the "missing" dummy. if ${MAKEINFO} --version \ - | egrep 'texinfo[^0-9]*([1-3][0-9]|4\.[2-9]|[5-9])' >/dev/null 2>&1; then + | egrep 'texinfo[^0-9]*([1-3][0-9]|4\.)([2-9]|[1-9].*)' >/dev/null 2>&1; then : else MAKEINFO="$MISSING makeinfo" This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |