2010-01-05 13:46:35 +01:00
|
|
|
ACLOCAL_AMFLAGS = -I config
|
|
|
|
|
2011-03-31 18:42:09 +02:00
|
|
|
if BUILD_PGM
|
Added Z85 support
The use of binary for CURVE keys is painful; you cannot easily copy
these in e.g. email, or use them directly in source code. There are
various encoding possibilities. Base16 and Base64 are not optimal.
Ascii85 is not safe for source (it generates quotes and escapes).
So, I've designed a new Base85 encoding, Z85, which is safe to use
in code and elsewhere, and I've modified libzmq to use this where
it also uses binary keys (in get/setsockopt).
Very simply, if you use a 32-byte value, it's Base256 (binary),
and if you use a 40-byte value, it's Base85 (Z85).
I've put the Z85 codec into z85_codec.hpp, it's not elegant C++
but it is minimal and it works. Feel free to rewrap as a real class
if this annoys you.
2013-06-28 22:10:22 +02:00
|
|
|
SUBDIRS = foreign/openpgm src doc perf tests tools
|
2011-03-31 18:42:09 +02:00
|
|
|
else
|
Added Z85 support
The use of binary for CURVE keys is painful; you cannot easily copy
these in e.g. email, or use them directly in source code. There are
various encoding possibilities. Base16 and Base64 are not optimal.
Ascii85 is not safe for source (it generates quotes and escapes).
So, I've designed a new Base85 encoding, Z85, which is safe to use
in code and elsewhere, and I've modified libzmq to use this where
it also uses binary keys (in get/setsockopt).
Very simply, if you use a 32-byte value, it's Base256 (binary),
and if you use a 40-byte value, it's Base85 (Z85).
I've put the Z85 codec into z85_codec.hpp, it's not elegant C++
but it is minimal and it works. Feel free to rewrap as a real class
if this annoys you.
2013-06-28 22:10:22 +02:00
|
|
|
SUBDIRS = src doc perf tests tools
|
2011-03-31 18:42:09 +02:00
|
|
|
endif
|
|
|
|
|
Added Z85 support
The use of binary for CURVE keys is painful; you cannot easily copy
these in e.g. email, or use them directly in source code. There are
various encoding possibilities. Base16 and Base64 are not optimal.
Ascii85 is not safe for source (it generates quotes and escapes).
So, I've designed a new Base85 encoding, Z85, which is safe to use
in code and elsewhere, and I've modified libzmq to use this where
it also uses binary keys (in get/setsockopt).
Very simply, if you use a 32-byte value, it's Base256 (binary),
and if you use a 40-byte value, it's Base85 (Z85).
I've put the Z85 codec into z85_codec.hpp, it's not elegant C++
but it is minimal and it works. Feel free to rewrap as a real class
if this annoys you.
2013-06-28 22:10:22 +02:00
|
|
|
DIST_SUBDIRS = foreign/openpgm src doc perf tests tools builds/msvc
|
2009-09-10 11:21:05 +02:00
|
|
|
|
2009-12-13 09:56:02 +01:00
|
|
|
EXTRA_DIST = \
|
2010-10-15 15:30:10 +02:00
|
|
|
autogen.sh \
|
|
|
|
version.sh \
|
|
|
|
MAINTAINERS \
|
2011-03-23 17:33:07 +01:00
|
|
|
foreign/openpgm/@pgm_basename@.tar.gz
|
2010-10-15 15:30:10 +02:00
|
|
|
MAINTAINERCLEANFILES = \
|
|
|
|
$(srcdir)/aclocal.m4 \
|
|
|
|
$(srcdir)/autom4te.cache \
|
|
|
|
$(srcdir)/configure \
|
|
|
|
`find "$(srcdir)" -type f -name Makefile.in -print`
|
2009-09-11 17:58:37 +02:00
|
|
|
|
2009-09-10 11:21:05 +02:00
|
|
|
dist-hook:
|
2010-09-04 17:26:36 +02:00
|
|
|
@if test -d "$(srcdir)/.git"; \
|
|
|
|
then \
|
|
|
|
echo Creating ChangeLog && \
|
|
|
|
( cd "$(top_srcdir)" && \
|
|
|
|
echo '# Generated by Makefile. Do not edit.'; echo; \
|
|
|
|
$(top_srcdir)/config/missing --run git log --stat ) > ChangeLog.tmp \
|
|
|
|
&& mv -f ChangeLog.tmp $(top_distdir)/ChangeLog \
|
|
|
|
|| ( rm -f ChangeLog.tmp ; \
|
|
|
|
echo Failed to generate ChangeLog >&2 ); \
|
|
|
|
else \
|
|
|
|
echo A git clone is required to generate a ChangeLog >&2; \
|
|
|
|
fi
|
|
|
|
-cp $(top_srcdir)/builds/redhat/zeromq.spec $(distdir)/zeromq.spec
|
2011-03-31 18:42:09 +02:00
|
|
|
-rm -rf $(distdir)/foreign/openpgm/build-staging
|
2010-02-16 19:58:55 +01:00
|
|
|
distclean-local:
|
2011-03-31 18:42:09 +02:00
|
|
|
-rm -rf $(top_srcdir)/foreign/openpgm/build-staging
|
2010-10-15 15:30:10 +02:00
|
|
|
maintainer-clean-local:
|
|
|
|
-rm -rf $(top_srcdir)/config
|