"Torsten Mohr" <[EMAIL PROTECTED]> wrote ... > Hi, > > i try to configure and compile make-3.81 beta 4 on MinGW on MSYS. > In the build subdirectory i use this command line to configure: > > ../make-3.81beta4/configure \ > --disable-nls \ > --disable-rpath \ > --enable-largefile \ > --enable-case-insensitive-filesystem \ > --disable-job-server > > configure goes fine with these options, but when i start "make" i > get the log at the end of this mail. > > What options do i need to give to configure? Is there a way to say that > all the get(e)(gid|uid) are not available?
For me this works: srcroot=/c/tmp pkg=make-3.81beta4 src=$srcroot/$pkg dst=$src/build [ -d $dst ] || mkdir -p $dst && cd $dst $src/configure \ --disable-nls \ --disable-rpath \ --enable-largefile \ --enable-case-insensitive-filesystem \ --disable-job-server make CFLAGS='-O3 -s -march=pentium3 -mtune=pentium4' Regards, Markus. _______________________________________________ Make-w32 mailing list [email protected] http://lists.gnu.org/mailman/listinfo/make-w32
