diff options
| author | Martin Lucina <mato@kotelna.sk> | 2010-10-21 16:21:20 +0200 | 
|---|---|---|
| committer | Martin Lucina <martin@lucina.net> | 2012-01-23 08:53:31 +0100 | 
| commit | 3f0085ddbef1a44b6bb7a0b23af497d56e0025fa (patch) | |
| tree | 0adac3a5b31b2a1d9a89ec5a797f34c1a3fdf27a /builds/msvc | |
| parent | 90d73cba9cd1d1724f38ed82fc0eefb1781c9c20 (diff) | |
| parent | 2c416a793ea781273a5da6742211f5f01af13a2b (diff) | |
Imported Debian patch 2.0.10-1debian/2.0.10-1
Diffstat (limited to 'builds/msvc')
| -rw-r--r-- | builds/msvc/Makefile.in | 48 | ||||
| -rw-r--r-- | builds/msvc/platform.hpp | 6 | 
2 files changed, 37 insertions, 17 deletions
| diff --git a/builds/msvc/Makefile.in b/builds/msvc/Makefile.in index 4978663..bc7333f 100644 --- a/builds/msvc/Makefile.in +++ b/builds/msvc/Makefile.in @@ -1,8 +1,9 @@ -# Makefile.in generated by automake 1.10.1 from Makefile.am. +# Makefile.in generated by automake 1.11.1 from Makefile.am.  # @configure_input@  # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, -# 2003, 2004, 2005, 2006, 2007, 2008  Free Software Foundation, Inc. +# 2003, 2004, 2005, 2006, 2007, 2008, 2009  Free Software Foundation, +# Inc.  # This Makefile.in is free software; the Free Software Foundation  # gives unlimited permission to copy and/or distribute it,  # with or without modifications, as long as this notice is preserved. @@ -15,8 +16,9 @@  @SET_MAKE@  VPATH = @srcdir@  pkgdatadir = $(datadir)/@PACKAGE@ -pkglibdir = $(libdir)/@PACKAGE@  pkgincludedir = $(includedir)/@PACKAGE@ +pkglibdir = $(libdir)/@PACKAGE@ +pkglibexecdir = $(libexecdir)/@PACKAGE@  am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd  install_sh_DATA = $(install_sh) -c -m 644  install_sh_PROGRAM = $(install_sh) -c @@ -44,6 +46,7 @@ am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \  mkinstalldirs = $(install_sh) -d  CONFIG_HEADER = $(top_builddir)/src/platform.hpp  CONFIG_CLEAN_FILES = +CONFIG_CLEAN_VPATH_FILES =  SOURCES =  DIST_SOURCES =  DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) @@ -108,6 +111,7 @@ PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@  PACKAGE_NAME = @PACKAGE_NAME@  PACKAGE_STRING = @PACKAGE_STRING@  PACKAGE_TARNAME = @PACKAGE_TARNAME@ +PACKAGE_URL = @PACKAGE_URL@  PACKAGE_VERSION = @PACKAGE_VERSION@  PATH_SEPARATOR = @PATH_SEPARATOR@  PKG_CONFIG = @PKG_CONFIG@ @@ -176,6 +180,7 @@ srcdir = @srcdir@  stdint = @stdint@  sysconfdir = @sysconfdir@  target_alias = @target_alias@ +top_build_prefix = @top_build_prefix@  top_builddir = @top_builddir@  top_srcdir = @top_srcdir@  LIBZMQ_DIST = libzmq/libzmq.vcproj platform.hpp msvc.sln @@ -196,14 +201,14 @@ $(srcdir)/Makefile.in:  $(srcdir)/Makefile.am  $(am__configure_deps)  	@for dep in $?; do \  	  case '$(am__configure_deps)' in \  	    *$$dep*) \ -	      cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh \ -		&& exit 0; \ +	      ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ +	        && { if test -f $@; then exit 0; else break; fi; }; \  	      exit 1;; \  	  esac; \  	done; \ -	echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign  builds/msvc/Makefile'; \ -	cd $(top_srcdir) && \ -	  $(AUTOMAKE) --foreign  builds/msvc/Makefile +	echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign builds/msvc/Makefile'; \ +	$(am__cd) $(top_srcdir) && \ +	  $(AUTOMAKE) --foreign builds/msvc/Makefile  .PRECIOUS: Makefile  Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status  	@case '$?' in \ @@ -221,6 +226,7 @@ $(top_srcdir)/configure:  $(am__configure_deps)  	cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh  $(ACLOCAL_M4):  $(am__aclocal_m4_deps)  	cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(am__aclocal_m4_deps):  mostlyclean-libtool:  	-rm -f *.lo @@ -250,13 +256,17 @@ distdir: $(DISTFILES)  	  if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \  	  if test -d $$d/$$file; then \  	    dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ +	    if test -d "$(distdir)/$$file"; then \ +	      find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ +	    fi; \  	    if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ -	      cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \ +	      cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ +	      find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \  	    fi; \ -	    cp -pR $$d/$$file $(distdir)$$dir || exit 1; \ +	    cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \  	  else \ -	    test -f $(distdir)/$$file \ -	    || cp -p $$d/$$file $(distdir)/$$file \ +	    test -f "$(distdir)/$$file" \ +	    || cp -p $$d/$$file "$(distdir)/$$file" \  	    || exit 1; \  	  fi; \  	done @@ -284,6 +294,7 @@ clean-generic:  distclean-generic:  	-test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) +	-test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES)  maintainer-clean-generic:  	@echo "This command is intended for maintainers to use" @@ -302,6 +313,8 @@ dvi-am:  html: html-am +html-am: +  info: info-am  info-am: @@ -310,18 +323,28 @@ install-data-am:  install-dvi: install-dvi-am +install-dvi-am: +  install-exec-am:  install-html: install-html-am +install-html-am: +  install-info: install-info-am +install-info-am: +  install-man:  install-pdf: install-pdf-am +install-pdf-am: +  install-ps: install-ps-am +install-ps-am: +  installcheck-am:  maintainer-clean: maintainer-clean-am @@ -355,6 +378,7 @@ uninstall-am:  	maintainer-clean-generic mostlyclean mostlyclean-generic \  	mostlyclean-libtool pdf pdf-am ps ps-am uninstall uninstall-am +  # Tell versions [3.59,3.63) of GNU make to not export all variables.  # Otherwise a system limit (for SysV at least) may be exceeded.  .NOEXPORT: diff --git a/builds/msvc/platform.hpp b/builds/msvc/platform.hpp index 77428a1..9c0c8ae 100644 --- a/builds/msvc/platform.hpp +++ b/builds/msvc/platform.hpp @@ -24,11 +24,7 @@  //  As a first step of the build process it is copied to  //  zmq directory to take place of platform.hpp generated from  //  platform.hpp.in on platforms supported by GNU autotools. - -//  0MQ version information -#define PACKAGE_VERSION_MAJOR 2 -#define PACKAGE_VERSION_MINOR 0 -#define PACKAGE_VERSION_PATCH 9 +//  Place any MSVC-specific definitions here.  #define ZMQ_HAVE_WINDOWS | 
