Skip to content
This repository has been archived by the owner on Jan 14, 2021. It is now read-only.

Commit

Permalink
Browse files Browse the repository at this point in the history
2008-01-23 Aaron Bockover <abockover@novell.com>
    0.7.4 Released

    * NEWS: Updated with 0.7.4 release notes

    * configure.ac: Output a zip file during dist for our Windows friends

    * Makefile.am: Rename the zip file containing the binaries for Windows
    so it doesn't conflict with the source zip file

    * COPYING: Updated copyright


svn path=/trunk/Mono.Zeroconf/; revision=93620
  • Loading branch information
abock committed Jan 23, 2008
1 parent 3d9e105 commit 7cdd0ea
Show file tree
Hide file tree
Showing 6 changed files with 42 additions and 12 deletions.
2 changes: 1 addition & 1 deletion COPYING
@@ -1,4 +1,4 @@
Copyright (c) 2007 Novell, Inc.
Copyright (c) 2005-2008 Novell, Inc.

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

Expand Down
13 changes: 13 additions & 0 deletions ChangeLog
@@ -1,3 +1,16 @@
2008-01-23 Aaron Bockover <abockover@novell.com>

0.7.4 Released

* NEWS: Updated with 0.7.4 release notes

* configure.ac: Output a zip file during dist for our Windows friends

* Makefile.am: Rename the zip file containing the binaries for Windows
so it doesn't conflict with the source zip file

* COPYING: Updated copyright

2008-01-23 Aaron Bockover <abockover@novell.com>

* Mono.Zeroconf.sln:
Expand Down
18 changes: 10 additions & 8 deletions Makefile.am
Expand Up @@ -12,23 +12,25 @@ MAINTAINERCLEANFILES = \
missing

EXTRA_DIST = \
Mono.Zeroconf.sln
Mono.Zeroconf.sln \
README.Windows

collect:
rm -rf bin; \
mkdir bin; \
find src \( -iname *.exe -o -iname *.dll \) -exec cp {} bin \;

PKV=$(PACKAGE)-$(VERSION)
PKB=$(PKV)-binary

dist-windows: all
@rm -rf $(PKV) && \
mkdir -p $(PKV)/bin && \
cp src/MZClient/MZClient.exe src/Mono.Zeroconf/Mono.Zeroconf.dll src/Mono.Zeroconf.Providers.Bonjour/Mono.Zeroconf.Providers.Bonjour.dll $(PKV)/bin && \
cp AUTHORS NEWS README README.Windows $(PKV) && \
cp COPYING $(PKV)/LICENSE && \
zip -r9 $(PKV).zip $(PKV) && \
rm -rf $(PKV)
@rm -rf $(PKB) && \
mkdir -p $(PKB)/bin && \
cp src/MZClient/MZClient.exe src/Mono.Zeroconf/Mono.Zeroconf.dll src/Mono.Zeroconf.Providers.Bonjour/Mono.Zeroconf.Providers.Bonjour.dll $(PKB)/bin && \
cp AUTHORS NEWS README README.Windows $(PKB) && \
cp COPYING $(PKB)/LICENSE && \
zip -r9 $(PKB).zip $(PKB) && \
rm -rf $(PKB)

release:
@test -z $$MONO_USER && { echo "Please set MONO_USER for the commit"; exit 1; }; \
Expand Down
17 changes: 16 additions & 1 deletion NEWS
@@ -1 +1,16 @@
2007-12-19: Released 0.7.3, works on Linux, Mac, and Windows
2008-01-23: 0.7.4 Release

* Fixed a big IP address resolution bug in the Bonjour provider
that manifested only under .NET on Windows XP SP2

* Minor bug fix in MZClient

* Make it easy to build and use on Windows
- Added Visual Studio 2008 solution
- Publish the source code as a Zip archive (along with tar gz and bzip2)
- Publish a -binary.zip file for Windows containing pre-built assemblies

2007-12-19: 0.7.3 Release

* First release that works on Linux, Mac, and Windows

2 changes: 1 addition & 1 deletion configure.ac
@@ -1,7 +1,7 @@
AC_INIT([Mono.Zeroconf], [0.7.4])
AC_CANONICAL_SYSTEM
AC_PREREQ(2.13)
AM_INIT_AUTOMAKE([1.9 dist-bzip2 tar-ustar])
AM_INIT_AUTOMAKE([1.9 dist-bzip2 tar-ustar dist-zip])
AM_MAINTAINER_MODE

DISTCHECK_CONFIGURE_FLAGS="--disable-docs"
Expand Down
Expand Up @@ -4,7 +4,7 @@
// Authors:
// Aaron Bockover <abockover@novell.com>
//
// Copyright (C) 2006-2007 Novell, Inc (http://www.novell.com)
// Copyright (C) 2006-2008 Novell, Inc (http://www.novell.com)
//
// Permission is hereby granted, free of charge, to any person obtaining
// a copy of this software and associated documentation files (the
Expand Down

0 comments on commit 7cdd0ea

Please sign in to comment.