winsetup GNUmakefile,1.20,1.21
Lee <[email protected]> Tue, 27 Sep 2016 22:48:30 +0000
| Newsgroups | gmane.comp.web.privoxy.cvs |
|---|---|
| Message-ID | <[email protected]> |
Update of /cvsroot/ijbswa/winsetup In directory sfp-cvs-1.v30.ch3.sourceforge.com:/tmp/cvs-serv30012/winsetup Modified Files: GNUmakefile Log Message: update windows build system to use supported software The cygwin gcc -mno-cygwin option is no longer supported, so convert the windows build system to use the cygwin cross-compiler to build "native" code. Index: GNUmakefile =================================================================== RCS file: /cvsroot/ijbswa/winsetup/GNUmakefile,v retrieving revision 1.20 retrieving revision 1.21 diff -C2 -d -r1.20 -r1.21 *** GNUmakefile 8 Mar 2009 20:41:13 -0000 1.20 --- GNUmakefile 27 Sep 2016 22:48:28 -0000 1.21 *************** *** 30,33 **** --- 30,40 ---- # # $Log$ + # Revision 1.21 2016/09/27 22:48:28 ler762 + # update windows build system to use supported software + # + # The cygwin gcc -mno-cygwin option is no longer supported, so + # convert the windows build system to use the cygwin cross-compiler + # to build "native" code. + # # Revision 1.20 2009/03/08 20:41:13 ler762 # work-around for cygwin/vista permissions problem after copying *************** *** 196,205 **** $(DOSFILTER) < $< > $@ - #gjm hack: grab mgwz.dll from the mingw-zlib cygwin package. - $(DEST)/privoxy.exe: $(SOURCE)/privoxy.exe $(DEST) - cp /bin/mgwz.dll $(DEST) - #cygwin/Vista permissions hack - chmod u+rwx $(DEST)/mgwz.dll $(STRIP) -o $@ $< --- 203,207 ---- *************** *** 211,215 **** $(SOURCE)/config.h: $(SOURCE)/configure $(SOURCE)/config.h.in ! cd $(SOURCE) && ./configure --enable-mingw32 --disable-pthread --disable-dynamic-pcre --enable-zlib $(SOURCE)/privoxy.exe: $(SOURCE)/configure $(SOURCE)/config.h --- 213,217 ---- $(SOURCE)/config.h: $(SOURCE)/configure $(SOURCE)/config.h.in ! cd $(SOURCE) && ./configure --host=i686-w64-mingw32 --enable-mingw32 --disable-pthread --disable-dynamic-pcre --enable-zlib --enable-static-linking $(SOURCE)/privoxy.exe: $(SOURCE)/configure $(SOURCE)/config.h ------------------------------------------------------------------------------