This is an automated email from the git hooks/post-receive script. It was generated because a ref change was pushed to the repository containing the project "GNU libidn".
http://git.savannah.gnu.org/cgit/libidn.git/commit/?id=11180296cc96b5b2e095b6d9bc532853c794c9cf The branch, master has been updated via 11180296cc96b5b2e095b6d9bc532853c794c9cf (commit) from 03591c60158f0bb5a5c4dffd1dd23cab41bfc536 (commit) Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below. - Log ----------------------------------------------------------------- commit 11180296cc96b5b2e095b6d9bc532853c794c9cf Author: Simon Josefsson <[email protected]> Date: Sat Mar 5 12:11:08 2011 +0100 Add. ----------------------------------------------------------------------- Summary of changes: win32/libidn4win.mk | 22 ++++++++++++++++++++++ 1 files changed, 22 insertions(+), 0 deletions(-) create mode 100644 win32/libidn4win.mk diff --git a/win32/libidn4win.mk b/win32/libidn4win.mk new file mode 100644 index 0000000..03788d1 --- /dev/null +++ b/win32/libidn4win.mk @@ -0,0 +1,22 @@ +REL=libidn-1.20 +TGZ=$(REL).tar.gz +URL=ftp://ftp.gnu.org/gnu/libidn/$(TGZ) + +all: libidn4win32 libidn4win64 + +libidn4win: + rm -rf tmp && mkdir tmp && cd tmp && \ + wget $(URL) && \ + tar xfa $(TGZ) && \ + cd $(REL) && \ + ./configure --host=$(HOST) --build=x86_64-unknown-linux-gnu --prefix=$(PWD)/tmp/root && \ + make install && \ + cd .. && \ + cd root && \ + zip -r ../../$(REL)-win$(ARCH).zip * + +libidn4win32: + $(MAKE) -f libidn4win.mk libidn4win ARCH=32 HOST=i686-w64-mingw32 + +libidn4win64: + $(MAKE) -f libidn4win.mk libidn4win ARCH=64 HOST=x86_64-w64-mingw32 hooks/post-receive -- GNU libidn _______________________________________________ Libidn-commit mailing list [email protected] http://lists.gnu.org/mailman/listinfo/libidn-commit
