Do not build sha256_generic module separate from cpu-miner.c. Version 0.1.1.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38
diff --git a/Makefile.am b/Makefile.am
index 4dbccb6..d19a3dc 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -3,7 +3,9 @@ INCLUDES = -pthread
bin_PROGRAMS = minerd
-minerd_SOURCES = cpu-miner.c sha256_generic.c
+EXTRA_DIST = sha256_generic.c
+
+minerd_SOURCES = cpu-miner.c
minerd_LDFLAGS = -pthread
minerd_LDADD = @CRYPTO_LIBS@ @LIBCURL@ @JANSSON_LIBS@
diff --git a/NEWS b/NEWS
index c0abf8e..dda7186 100644
--- a/NEWS
+++ b/NEWS
@@ -1,4 +1,8 @@
+Version 0.1.1 - November 24, 2010
+
+- Do not build sha256_generic module separately from cpuminer.
+
Version 0.1 - November 24, 2010
- Initial release.
diff --git a/configure.ac b/configure.ac
index f03d5eb..1cb3712 100644
--- a/configure.ac
+++ b/configure.ac
@@ -1,4 +1,4 @@
-AC_INIT([cpuminer], [0.1])
+AC_INIT([cpuminer], [0.1.1])
AC_PREREQ(2.52)
AC_CONFIG_SRCDIR([cpu-miner.c])