On 6/28/2011 12:29 PM, Corinna Vinschen wrote: > Index: rebaseall.in > =================================================================== > RCS file: /sourceware/projects/cygwin-apps-home/cvsfiles/rebase/rebaseall.in,v > retrieving revision 1.2 > diff -u -p -r1.2 rebaseall.in > --- rebaseall.in 21 Jun 2011 15:40:10 -0000 1.2 > +++ rebaseall.in 28 Jun 2011 16:29:06 -0000
> -DefaultOffset=0x10000 > +DefaultOffset=0 > DefaultVerbose= > DefaultFileList= > DefaultSuffixes='dll|so' I'd prefer that this be set via a configure replacement. On MSYS and MinGW (really, MSYS) we need to stick with the old default offset, since on that system we still have to worry about the extra allocated space. ('sokay, tho, 'cause we have FAR fewer dlls to worry about, and can afford the space). e.g. configure.ad case $host in *mingw* | *msys* ) DEFAULT_OFFSET_VALUE=0x10000 *) DEFAULT_OFFSET_VALUE = 0x0 esac AC_SUBST(DEFAULT_OFFSET_VALUE) and then -DefaultOffset=0x10000 +DefaultOffset=@DEFAULT_OFFSET_VALUE@ -- Chuck