mirror of
git://git.gnupg.org/gnupg.git
synced 2024-12-31 11:41:32 +01:00
* THANKS: Updates from stable.
* configure.ac: Include wsock32 in W32LIBS. This is different from NETLIBS so we don't need to force other platforms to pull in the netlibs when they aren't actually needed. * NEWS: Note portability changes.
This commit is contained in:
parent
274e121399
commit
adab7b0a63
10
ChangeLog
10
ChangeLog
@ -1,3 +1,13 @@
|
|||||||
|
2003-07-10 David Shaw <dshaw@jabberwocky.com>
|
||||||
|
|
||||||
|
* THANKS: Updates from stable.
|
||||||
|
|
||||||
|
* configure.ac: Include wsock32 in W32LIBS. This is different
|
||||||
|
from NETLIBS so we don't need to force other platforms to pull in
|
||||||
|
the netlibs when they aren't actually needed.
|
||||||
|
|
||||||
|
* NEWS: Note portability changes.
|
||||||
|
|
||||||
2003-06-03 David Shaw <dshaw@jabberwocky.com>
|
2003-06-03 David Shaw <dshaw@jabberwocky.com>
|
||||||
|
|
||||||
* configure.ac: Define SAFE_VERSION so that RISCOS can override it
|
* configure.ac: Define SAFE_VERSION so that RISCOS can override it
|
||||||
|
6
NEWS
6
NEWS
@ -1,14 +1,16 @@
|
|||||||
Noteworthy changes in version 1.3.3 (unreleased)
|
Noteworthy changes in version 1.3.3 (unreleased)
|
||||||
------------------------------------------------
|
------------------------------------------------
|
||||||
|
|
||||||
|
* A number of portability changes to make building GnuPG on
|
||||||
|
less-common platforms easier.
|
||||||
|
|
||||||
Noteworthy changes in version 1.3.2 (2003-05-27)
|
Noteworthy changes in version 1.3.2 (2003-05-27)
|
||||||
------------------------------------------------
|
------------------------------------------------
|
||||||
|
|
||||||
* New "--gnupg" option (set by default) that disables --openpgp,
|
* New "--gnupg" option (set by default) that disables --openpgp,
|
||||||
and the various --pgpX emulation options. This replaces
|
and the various --pgpX emulation options. This replaces
|
||||||
--no-openpgp, and --no-pgpX, and also means that GnuPG has now
|
--no-openpgp, and --no-pgpX, and also means that GnuPG has
|
||||||
grown a --gnupg option to make GnuPG act like GnuPG.
|
finally grown a --gnupg option to make GnuPG act like GnuPG.
|
||||||
|
|
||||||
* A bug in key validation has been fixed. This bug only affects
|
* A bug in key validation has been fixed. This bug only affects
|
||||||
keys with more than one user ID (photo IDs do not count here),
|
keys with more than one user ID (photo IDs do not count here),
|
||||||
|
4
THANKS
4
THANKS
@ -66,13 +66,13 @@ Frank Tobin ftobin@uiuc.edu
|
|||||||
Gabriel Rosenkoetter gr@eclipsed.net
|
Gabriel Rosenkoetter gr@eclipsed.net
|
||||||
Gaël Quéri gael@lautre.net
|
Gaël Quéri gael@lautre.net
|
||||||
Gene Carter gcarter@lanier.com
|
Gene Carter gcarter@lanier.com
|
||||||
|
Geoff Keating geoffk@ozemail.com.au
|
||||||
Georg Schwarz georg.schwarz@iname.com
|
Georg Schwarz georg.schwarz@iname.com
|
||||||
Giampaolo Tomassoni g.tomassoni@libero.it
|
Giampaolo Tomassoni g.tomassoni@libero.it
|
||||||
Gilbert Fernandes gilbert_fernandes@hotmail.com
|
Gilbert Fernandes gilbert_fernandes@hotmail.com
|
||||||
Greg Louis glouis@dynamicro.on.ca
|
Greg Louis glouis@dynamicro.on.ca
|
||||||
Greg Troxel gdt@ir.bbn.com
|
Greg Troxel gdt@ir.bbn.com
|
||||||
Gregory Steuck steuck@iname.com
|
Gregory Steuck steuck@iname.com
|
||||||
Geoff Keating geoffk@ozemail.com.au
|
|
||||||
Harald Denker harry@hal.westfalen.de
|
Harald Denker harry@hal.westfalen.de
|
||||||
Holger Baust Holger.Baust@freenet-ag.de
|
Holger Baust Holger.Baust@freenet-ag.de
|
||||||
Hendrik Buschkamp buschkamp@rheumanet.org
|
Hendrik Buschkamp buschkamp@rheumanet.org
|
||||||
@ -103,6 +103,8 @@ John A. Martin jam@jamux.com
|
|||||||
Johnny Teveßen j.tevessen@gmx.de
|
Johnny Teveßen j.tevessen@gmx.de
|
||||||
Jörg Schilling schilling@fokus.gmd.de
|
Jörg Schilling schilling@fokus.gmd.de
|
||||||
Jos Backus Jos.Backus@nl.origin-it.com
|
Jos Backus Jos.Backus@nl.origin-it.com
|
||||||
|
Joseph Walton joe@kafsemo.org
|
||||||
|
Juan F. Codagnone juam@arnet.com.ar
|
||||||
Jun Kuriyama kuriyama@sky.rim.or.jp
|
Jun Kuriyama kuriyama@sky.rim.or.jp
|
||||||
Kahil D. Jallad kdj4@cs.columbia.edu
|
Kahil D. Jallad kdj4@cs.columbia.edu
|
||||||
Karl Fogel kfogel@guanabana.onshore.com
|
Karl Fogel kfogel@guanabana.onshore.com
|
||||||
|
@ -1026,13 +1026,15 @@ GNUPG_CHECK_GNUMAKE
|
|||||||
# mysterious reasons - the final link step should bail out.
|
# mysterious reasons - the final link step should bail out.
|
||||||
case "${target}" in
|
case "${target}" in
|
||||||
*-*-mingw32*)
|
*-*-mingw32*)
|
||||||
NETLIBS="$NETLIBS -lwsock32"
|
dnl NETLIBS="$NETLIBS -lwsock32"
|
||||||
|
W32LIBS="-lwsock32"
|
||||||
;;
|
;;
|
||||||
*)
|
*)
|
||||||
;;
|
;;
|
||||||
esac
|
esac
|
||||||
|
|
||||||
AC_SUBST(NETLIBS)
|
AC_SUBST(NETLIBS)
|
||||||
|
AC_SUBST(W32LIBS)
|
||||||
|
|
||||||
if test "$GCC" = yes; then
|
if test "$GCC" = yes; then
|
||||||
if test "$USE_MAINTAINER_MODE" = "yes"; then
|
if test "$USE_MAINTAINER_MODE" = "yes"; then
|
||||||
|
Loading…
x
Reference in New Issue
Block a user