Compare commits

...

8 Commits

Author SHA1 Message Date
Eelco Dolstra
6a2b44358c * Tagged 0.9.1. 2005-09-21 18:26:52 +00:00
Eelco Dolstra
e253ebb489 * Mark as stable. 2005-09-20 17:03:58 +00:00
Eelco Dolstra
9bdac2a86c * Let's try this again. 2005-09-20 17:01:39 +00:00
Eelco Dolstra
04b51d25d1 * Release notes for 0.9.1. 2005-09-20 17:01:04 +00:00
Eelco Dolstra
567ee593b3 * Release branch. 2005-09-20 16:56:23 +00:00
Eelco Dolstra
87e5dcd1b8 * Merge r3897 from the trunk. 2005-09-20 16:18:56 +00:00
Eelco Dolstra
2e33293004 * 0.9 bug fix branch. 2005-09-20 16:16:16 +00:00
Eelco Dolstra
882d569077 * 0.9 release branch. 2005-09-16 11:29:14 +00:00
3 changed files with 14 additions and 3 deletions

View File

@@ -1,11 +1,11 @@
AC_INIT(nix, "0.9")
AC_INIT(nix, "0.9.1")
AC_CONFIG_SRCDIR(README)
AC_CONFIG_AUX_DIR(config)
AM_INIT_AUTOMAKE([dist-bzip2 foreign])
# Change to `1' to produce a `stable' release (i.e., the `preREVISION'
# suffix is not added).
STABLE=0
STABLE=1
# Put the revision number in the version.
if test "$STABLE" != "1"; then

View File

@@ -8,6 +8,16 @@
<article><title>Nix Release Notes</title>
<section><title>Release 0.9.1 (September 20, 2005)</title>
<para>This bug fix release addresses a problem with the ATerm library
when the <option>--with-aterm</option> flag in
<command>configure</command> was <emphasis>not</emphasis> used.</para>
</section>
<section><title>Release 0.9 (September 16, 2005)</title>
<para>NOTE: this version of Nix uses Berkeley DB 4.3 instead of 4.2.

View File

@@ -56,7 +56,8 @@ else
build-aterm: have-aterm
(pfx=`pwd` && \
cd $(ATERM) && \
CC="$(CC)" ./configure --prefix=$$pfx/inst-aterm && \
CC="$(CC)" ./configure --prefix=$$pfx/inst-aterm \
--disable-shared --enable-static CFLAGS=-O1 && \
$(MAKE) && \
$(MAKE) install)
touch build-aterm