* The 3.99.2 release is now ready.
git-svn-id: svn://svn.zoy.org/elk/trunk@151 55e467fa-43c5-0310-a8a2-de718669efc6
This commit is contained in:
parent
d4dc463b3d
commit
f24d3937b5
55
ChangeLog
55
ChangeLog
|
@ -1,3 +1,58 @@
|
||||||
|
------------------------------------------------------------------------
|
||||||
|
rev 150: sam | 2003-09-13 08:31:24 +0200 (Sat, 13 Sep 2003) | 2 lines
|
||||||
|
Changed paths:
|
||||||
|
M /configure.ac
|
||||||
|
M /src/loadlib.c
|
||||||
|
|
||||||
|
* Plugin support for Win32.
|
||||||
|
|
||||||
|
------------------------------------------------------------------------
|
||||||
|
rev 149: sam | 2003-09-13 02:35:20 +0200 (Sat, 13 Sep 2003) | 2 lines
|
||||||
|
Changed paths:
|
||||||
|
M /Makefile.am
|
||||||
|
A /build-win32
|
||||||
|
|
||||||
|
* Quick and dirty .zip generator for the Win32 version.
|
||||||
|
|
||||||
|
------------------------------------------------------------------------
|
||||||
|
rev 148: sam | 2003-09-13 02:34:58 +0200 (Sat, 13 Sep 2003) | 5 lines
|
||||||
|
Changed paths:
|
||||||
|
M /include/intern.h
|
||||||
|
M /src/Makefile.am
|
||||||
|
M /src/io.c
|
||||||
|
M /src/libelk.c
|
||||||
|
M /src/load.c
|
||||||
|
|
||||||
|
* Removed references to NOMAIN.
|
||||||
|
* Replaced / with \ under Win32.
|
||||||
|
* The Win32 version looks for .scm files in the scm subdirectory of the
|
||||||
|
executable's current directory.
|
||||||
|
|
||||||
|
------------------------------------------------------------------------
|
||||||
|
rev 147: sam | 2003-09-11 22:46:50 +0200 (Thu, 11 Sep 2003) | 2 lines
|
||||||
|
Changed paths:
|
||||||
|
M /doc/bitstring
|
||||||
|
M /doc/cprog
|
||||||
|
M /doc/kernel
|
||||||
|
M /doc/man
|
||||||
|
M /doc/oops
|
||||||
|
M /doc/record
|
||||||
|
M /doc/regexp
|
||||||
|
M /doc/unix
|
||||||
|
M /doc/usenix
|
||||||
|
M /doc/xlib
|
||||||
|
M /doc/xt
|
||||||
|
|
||||||
|
* Made SVN ignore temporary files.
|
||||||
|
|
||||||
|
------------------------------------------------------------------------
|
||||||
|
rev 146: sam | 2003-09-11 22:44:17 +0200 (Thu, 11 Sep 2003) | 2 lines
|
||||||
|
Changed paths:
|
||||||
|
M /ChangeLog
|
||||||
|
M /debian/changelog
|
||||||
|
|
||||||
|
* Preparing new release.
|
||||||
|
|
||||||
------------------------------------------------------------------------
|
------------------------------------------------------------------------
|
||||||
rev 145: sam | 2003-09-11 12:09:27 +0200 (Thu, 11 Sep 2003) | 2 lines
|
rev 145: sam | 2003-09-11 12:09:27 +0200 (Thu, 11 Sep 2003) | 2 lines
|
||||||
Changed paths:
|
Changed paths:
|
||||||
|
|
5
NEWS
5
NEWS
|
@ -5,6 +5,11 @@ Changes between 3.0 and 4.0:
|
||||||
|
|
||||||
* Not released yet.
|
* Not released yet.
|
||||||
|
|
||||||
|
* New in 3.99.2 prerelease (rev 151):
|
||||||
|
+ Ported to HP-UX.
|
||||||
|
+ Ported to Windows (both Cygwin and Mingw32) except the plugin system.
|
||||||
|
+ More bugs fixed.
|
||||||
|
|
||||||
* New in 3.99.1 prerelease (rev 126):
|
* New in 3.99.1 prerelease (rev 126):
|
||||||
+ Ported to Mac OS X.
|
+ Ported to Mac OS X.
|
||||||
+ Added proper checks for the libraries (libgdbm, X11, Motif, ...).
|
+ Added proper checks for the libraries (libgdbm, X11, Motif, ...).
|
||||||
|
|
|
@ -6,18 +6,19 @@
|
||||||
set -x
|
set -x
|
||||||
set -e
|
set -e
|
||||||
|
|
||||||
# To build for win32, I use ./configure --host=i586-mingw32msvc
|
# Clean up our working directory
|
||||||
|
|
||||||
DIRNAME="elk-`sed -ne '/^VERSION/s/[^0-9]*//p' Makefile`"
|
DIRNAME="elk-`sed -ne '/^VERSION/s/[^0-9]*//p' Makefile`"
|
||||||
DESTDIR="`pwd`/${DIRNAME}"
|
DESTDIR="`pwd`/${DIRNAME}"
|
||||||
rm -Rf "${DIRNAME}"
|
rm -Rf "${DIRNAME}"
|
||||||
rm -f "${DIRNAME}.zip"
|
rm -f "${DIRNAME}.zip"
|
||||||
mkdir "${DIRNAME}"
|
mkdir "${DIRNAME}"
|
||||||
|
|
||||||
|
# To build for win32, I use ./configure --host=i586-mingw32msvc
|
||||||
(cd src && make && cp elk.exe "${DESTDIR}")
|
(cd src && make && cp elk.exe "${DESTDIR}")
|
||||||
(cd scm && make install DESTDIR="${DESTDIR}" datadir="/")
|
(cd scm && make install DESTDIR="${DESTDIR}" datadir="/")
|
||||||
mv "${DESTDIR}/elk" "${DESTDIR}/scm"
|
mv "${DESTDIR}/elk" "${DESTDIR}/scm"
|
||||||
|
|
||||||
|
# Pack the directory
|
||||||
zip "${DIRNAME}.zip" `find "${DIRNAME}"`
|
zip "${DIRNAME}.zip" `find "${DIRNAME}"`
|
||||||
|
|
||||||
rm -Rf "${DIRNAME}"
|
rm -Rf "${DIRNAME}"
|
||||||
|
|
||||||
|
|
|
@ -1,8 +1,10 @@
|
||||||
elk (3.99.2-1) unstable; urgency=low
|
elk (3.99.2-1) unstable; urgency=low
|
||||||
|
|
||||||
* New release.
|
* New upstream release.
|
||||||
|
* Documentation is now built instead of being shipped in the tarball.
|
||||||
|
* Fixed a bug in the garbage collector.
|
||||||
|
|
||||||
-- Sam Hocevar (Debian packages) <sam+deb@zoy.org> Sat, 6 Sep 2003 13:36:54 +0200
|
-- Sam Hocevar (Debian packages) <sam+deb@zoy.org> Sat, 13 Sep 2003 08:33:15 +0200
|
||||||
|
|
||||||
elk (3.99.1-1) unstable; urgency=low
|
elk (3.99.1-1) unstable; urgency=low
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue