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=1ae387a29aac1b598c0cf91d5f4b81cfbf0759b1 The branch, master has been updated via 1ae387a29aac1b598c0cf91d5f4b81cfbf0759b1 (commit) from 726dc33f42ecf9301c102db3e994a10fcc80f689 (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 1ae387a29aac1b598c0cf91d5f4b81cfbf0759b1 Author: Simon Josefsson <[email protected]> Date: Thu Aug 9 11:36:43 2012 +0200 Rename win32/ to windows/. ----------------------------------------------------------------------- Summary of changes: .gitignore | 6 +++--- Makefile.am | 8 ++++---- cfg.mk | 4 ++-- doc/announce.txt | 2 +- doc/libidn.texi | 6 +++--- {win32 => windows}/include/ac-stdint.h | 0 {win32 => windows}/include/config.h | 0 {win32 => windows}/include/idn-int.h | 0 {win32 => windows}/include/stdbool.h | 0 {win32 => windows}/include/unistd.h | 0 {win32 => windows}/libidn.sln | 0 {win32 => windows}/libidn.vcproj | 0 {win32 => windows}/libidn4win.mk | 0 13 files changed, 13 insertions(+), 13 deletions(-) rename {win32 => windows}/include/ac-stdint.h (100%) rename {win32 => windows}/include/config.h (100%) rename {win32 => windows}/include/idn-int.h (100%) rename {win32 => windows}/include/stdbool.h (100%) rename {win32 => windows}/include/unistd.h (100%) rename {win32 => windows}/libidn.sln (100%) rename {win32 => windows}/libidn.vcproj (100%) rename {win32 => windows}/libidn4win.mk (100%) diff --git a/.gitignore b/.gitignore index 88de5f5..2ae340a 100644 --- a/.gitignore +++ b/.gitignore @@ -552,6 +552,6 @@ tests/tst_tld.o tests/tst_toutf8 tests/tst_toutf8.o tests/utils.o -win32/libidn-*-win??.zip -win32/tmp32 -win32/tmp64 +windows/libidn-*-win??.zip +windows/tmp32 +windows/tmp64 diff --git a/Makefile.am b/Makefile.am index 522a76f..b25ddbe 100644 --- a/Makefile.am +++ b/Makefile.am @@ -36,10 +36,10 @@ EXTRA_DIST += FAQ libc/README libc/getaddrinfo-idn.txt libc/example.c \ contrib/doxygen/Doxyfile.orig contrib/doxygen/gdoc2doxygen # Visual Studio project files. -EXTRA_DIST += win32/libidn.sln win32/libidn.vcproj \ - win32/include/unistd.h win32/include/idn-int.h \ - win32/include/stdbool.h win32/include/ac-stdint.h \ - win32/include/config.h win32/libidn4win.mk +EXTRA_DIST += windows/libidn.sln windows/libidn.vcproj \ + windows/include/unistd.h windows/include/idn-int.h \ + windows/include/stdbool.h windows/include/ac-stdint.h \ + windows/include/config.h windows/libidn4win.mk EXTRA_DIST += HACKING diff --git a/cfg.mk b/cfg.mk index 788637e..a8638ed 100644 --- a/cfg.mk +++ b/cfg.mk @@ -170,10 +170,10 @@ tarball: $(MAKE) ChangeLog distcheck binaries: - cd win32 && make -f libidn4win.mk libidn4win VERSION=$(VERSION) + cd windows && make -f libidn4win.mk libidn4win VERSION=$(VERSION) binaries-upload: - cd win32 && make -f libidn4win.mk upload VERSION=$(VERSION) + cd windows && make -f libidn4win.mk upload VERSION=$(VERSION) source: git tag -u b565716f -m $(VERSION) $(tag) diff --git a/doc/announce.txt b/doc/announce.txt index 762cffb..62b04f7 100644 --- a/doc/announce.txt +++ b/doc/announce.txt @@ -104,7 +104,7 @@ Here are the SHA-1 and SHA-224 signatures: 99c62bb5fe91b3d04b6c8b1a1971c02ed9b383375f85644ad510e315 libidn-1.25.tar.gz We also provide Windows binaries built using MinGW-w64 with the build -script win32/libidn4win.mk, for 32-bit and 64-bit x86 architecures: +script windows/libidn4win.mk, for 32-bit and 64-bit x86 architecures: ftp://ftp.gnu.org/gnu/libidn/libidn-1.25-win32.zip ftp://ftp.gnu.org/gnu/libidn/libidn-1.25-win32.zip.sig diff --git a/doc/libidn.texi b/doc/libidn.texi index d9ff83c..79ea7a0 100644 --- a/doc/libidn.texi +++ b/doc/libidn.texi @@ -535,11 +535,11 @@ such as Windows Mobile. You need Visual Studio 2005 or later. First download and unpack the archive as described in the generic installation instructions (@pxref{Downloading and Installing}). Don't run @code{./configure}. Instead, start Visual Studio and open the -project file @file{win32/libidn.sln} inside the Libidn directory. You +project file @file{windows/libidn.sln} inside the Libidn directory. You should be able to build the project using Build Project. -Output libraries will be written into the @code{win32/lib} (or -@code{win32/lib/debug} for Debug versions) folder. +Output libraries will be written into the @code{windows/lib} (or +@code{windows/lib/debug} for Debug versions) folder. When working with Windows you may want to look into the special memory handling functions that may be needed (@pxref{Memory handling under diff --git a/win32/include/ac-stdint.h b/windows/include/ac-stdint.h similarity index 100% rename from win32/include/ac-stdint.h rename to windows/include/ac-stdint.h diff --git a/win32/include/config.h b/windows/include/config.h similarity index 100% rename from win32/include/config.h rename to windows/include/config.h diff --git a/win32/include/idn-int.h b/windows/include/idn-int.h similarity index 100% rename from win32/include/idn-int.h rename to windows/include/idn-int.h diff --git a/win32/include/stdbool.h b/windows/include/stdbool.h similarity index 100% rename from win32/include/stdbool.h rename to windows/include/stdbool.h diff --git a/win32/include/unistd.h b/windows/include/unistd.h similarity index 100% rename from win32/include/unistd.h rename to windows/include/unistd.h diff --git a/win32/libidn.sln b/windows/libidn.sln similarity index 100% rename from win32/libidn.sln rename to windows/libidn.sln diff --git a/win32/libidn.vcproj b/windows/libidn.vcproj similarity index 100% rename from win32/libidn.vcproj rename to windows/libidn.vcproj diff --git a/win32/libidn4win.mk b/windows/libidn4win.mk similarity index 100% rename from win32/libidn4win.mk rename to windows/libidn4win.mk hooks/post-receive -- GNU libidn _______________________________________________ Libidn-commit mailing list [email protected] https://lists.gnu.org/mailman/listinfo/libidn-commit
