mirror of
git://git.gnupg.org/gnupg.git
synced 2025-01-20 14:37:08 +01:00
See ChangeLog: Sat Feb 13 12:14:42 CET 1999 Werner Koch
This commit is contained in:
parent
dc5ce112a3
commit
54629f721b
@ -1,3 +1,8 @@
|
|||||||
|
Sat Feb 13 12:04:43 CET 1999 Werner Koch <wk@isil.d.shuttle.de>
|
||||||
|
|
||||||
|
* configure.in: Changed detection of compiler flags.
|
||||||
|
* intl/ : Removed directory
|
||||||
|
|
||||||
Wed Feb 10 17:15:39 CET 1999 Werner Koch <wk@isil.d.shuttle.de>
|
Wed Feb 10 17:15:39 CET 1999 Werner Koch <wk@isil.d.shuttle.de>
|
||||||
|
|
||||||
* acinclude.m4 (GNUPG_CHECK_RDYNAMIC): Fix for freebsd 2.2
|
* acinclude.m4 (GNUPG_CHECK_RDYNAMIC): Fix for freebsd 2.2
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
## Process this file with automake to produce Makefile.in
|
## Process this file with automake to produce Makefile.in
|
||||||
|
|
||||||
SUBDIRS = intl po zlib util mpi cipher tools g10 doc checks
|
SUBDIRS = intl zlib util mpi cipher tools g10 po doc checks
|
||||||
EXTRA_DIST = VERSION PROJECTS
|
EXTRA_DIST = VERSION PROJECTS
|
||||||
|
|
||||||
all-am: g10defs.h
|
all-am: g10defs.h
|
||||||
|
1
THANKS
1
THANKS
@ -63,6 +63,7 @@ Paul D. Smith psmith@baynetworks.com
|
|||||||
Peter Gutmann pgut001@cs.auckland.ac.nz
|
Peter Gutmann pgut001@cs.auckland.ac.nz
|
||||||
QingLong qinglong@bolizm.ihep.su
|
QingLong qinglong@bolizm.ihep.su
|
||||||
Ralph Gillen gillen@theochem.uni-duesseldorf.de
|
Ralph Gillen gillen@theochem.uni-duesseldorf.de
|
||||||
|
Reinhard Wobst R.Wobst@ifw-dresden.de
|
||||||
Reuben Sumner rasumner@wisdom.weizmann.ac.il
|
Reuben Sumner rasumner@wisdom.weizmann.ac.il
|
||||||
Roddy Strachan roddy@satlink.com.au
|
Roddy Strachan roddy@satlink.com.au
|
||||||
Roland Rosenfeld roland@spinnaker.rhein.de
|
Roland Rosenfeld roland@spinnaker.rhein.de
|
||||||
|
5
TODO
5
TODO
@ -11,6 +11,8 @@ Bugs
|
|||||||
* README does not verify okay. verify inserts an extra CR,LF
|
* README does not verify okay. verify inserts an extra CR,LF
|
||||||
just before "Esoteric Command" (after ~8k of text).
|
just before "Esoteric Command" (after ~8k of text).
|
||||||
|
|
||||||
|
* Did I add -lsocket and -lnls for Solaris?
|
||||||
|
|
||||||
Important
|
Important
|
||||||
----------
|
----------
|
||||||
* replace gettext by a non exploitable one.
|
* replace gettext by a non exploitable one.
|
||||||
@ -26,6 +28,9 @@ Important
|
|||||||
|
|
||||||
Needed
|
Needed
|
||||||
------
|
------
|
||||||
|
* encrypttoself, damit keine Angabe von -r immer noch zu einer
|
||||||
|
abfrage führt.
|
||||||
|
|
||||||
* remove more "Fixmes"
|
* remove more "Fixmes"
|
||||||
|
|
||||||
* Replace Blowfish by Twofish and add the new encrypted packet type
|
* Replace Blowfish by Twofish and add the new encrypted packet type
|
||||||
|
@ -200,13 +200,14 @@ define(GNUPG_CHECK_RDYNAMIC,
|
|||||||
AC_MSG_RESULT(assume none)
|
AC_MSG_RESULT(assume none)
|
||||||
else
|
else
|
||||||
case "$host_os" in
|
case "$host_os" in
|
||||||
solaris*)
|
solaris* )
|
||||||
CFLAGS_RDYNAMIC="-Wl,-dy"
|
CFLAGS_RDYNAMIC="-Wl,-dy"
|
||||||
;;
|
;;
|
||||||
freebsd2*)
|
|
||||||
|
freebsd2* | osf4* )
|
||||||
CFLAGS_RDYNAMIC=""
|
CFLAGS_RDYNAMIC=""
|
||||||
;;
|
;;
|
||||||
*)
|
* )
|
||||||
CFLAGS_RDYNAMIC="-Wl,-export-dynamic"
|
CFLAGS_RDYNAMIC="-Wl,-export-dynamic"
|
||||||
;;
|
;;
|
||||||
esac
|
esac
|
||||||
|
13
configure.in
13
configure.in
@ -59,9 +59,6 @@ else
|
|||||||
fi
|
fi
|
||||||
if test "$use_m_guard" = yes ; then
|
if test "$use_m_guard" = yes ; then
|
||||||
AC_DEFINE(M_GUARD)
|
AC_DEFINE(M_GUARD)
|
||||||
CFLAGS="$CFLAGS -g"
|
|
||||||
else
|
|
||||||
CFLAGS="$CFLAGS -O2"
|
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
|
||||||
@ -91,10 +88,18 @@ AC_PROG_INSTALL
|
|||||||
dnl AC_CYGWIN32
|
dnl AC_CYGWIN32
|
||||||
|
|
||||||
|
|
||||||
|
MPI_OPT_FLAGS=""
|
||||||
if test "$GCC" = yes; then
|
if test "$GCC" = yes; then
|
||||||
CFLAGS="$CFLAGS -Wall"
|
CFLAGS="$CFLAGS -Wall"
|
||||||
|
dnl Always enable optimazation in MPI
|
||||||
|
if echo "$CFLAGS" | grep "-O" >/dev/null ; then
|
||||||
|
:
|
||||||
|
else
|
||||||
|
MPI_OPT_FLAGS=-O2
|
||||||
|
fi
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
|
||||||
try_gettext=yes
|
try_gettext=yes
|
||||||
try_gdbm=yes
|
try_gdbm=yes
|
||||||
case "${target}" in
|
case "${target}" in
|
||||||
@ -130,6 +135,7 @@ case "${target}" in
|
|||||||
;;
|
;;
|
||||||
esac
|
esac
|
||||||
|
|
||||||
|
AC_SUBST(MPI_OPT_FLAGS)
|
||||||
|
|
||||||
GNUPG_CHECK_PIC
|
GNUPG_CHECK_PIC
|
||||||
GNUPG_CHECK_RDYNAMIC
|
GNUPG_CHECK_RDYNAMIC
|
||||||
@ -169,6 +175,7 @@ case "${target}" in
|
|||||||
esac
|
esac
|
||||||
AC_DEFINE_UNQUOTED(NAME_OF_DEV_RANDOM, "$NAME_OF_DEV_RANDOM")
|
AC_DEFINE_UNQUOTED(NAME_OF_DEV_RANDOM, "$NAME_OF_DEV_RANDOM")
|
||||||
AC_DEFINE_UNQUOTED(NAME_OF_DEV_URANDOM, "$NAME_OF_DEV_URANDOM")
|
AC_DEFINE_UNQUOTED(NAME_OF_DEV_URANDOM, "$NAME_OF_DEV_URANDOM")
|
||||||
|
AC_SUBST(MPI_OPT_FLAGS)
|
||||||
|
|
||||||
|
|
||||||
dnl Checks for libraries.
|
dnl Checks for libraries.
|
||||||
|
@ -1,3 +1,7 @@
|
|||||||
|
Sat Feb 13 12:04:43 CET 1999 Werner Koch <wk@isil.d.shuttle.de>
|
||||||
|
|
||||||
|
* Makefile.am: Removed the +=. Add MPI_OPT_FLAGS.
|
||||||
|
|
||||||
Sat Jan 9 16:02:23 CET 1999 Werner Koch <wk@isil.d.shuttle.de>
|
Sat Jan 9 16:02:23 CET 1999 Werner Koch <wk@isil.d.shuttle.de>
|
||||||
|
|
||||||
* mpi-cmp.c (mpi_cmp_ui): Normalized the arg.
|
* mpi-cmp.c (mpi_cmp_ui): Normalized the arg.
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
## Process this file with automake to produce Makefile.in
|
## Process this file with automake to produce Makefile.in
|
||||||
|
|
||||||
INCLUDES = -I$(top_srcdir)/include
|
INCLUDES = -I$(top_srcdir)/include
|
||||||
CFLAGS += -O2
|
CFLAGS = @CFLAGS@ @MPI_OPT_FLAGS@
|
||||||
SFLAGS = @MPI_SFLAGS@
|
SFLAGS = @MPI_SFLAGS@
|
||||||
|
|
||||||
SUFFIXES = .S .s
|
SUFFIXES = .S .s
|
||||||
|
@ -26,8 +26,7 @@ subdir = po
|
|||||||
|
|
||||||
INSTALL = @INSTALL@
|
INSTALL = @INSTALL@
|
||||||
INSTALL_DATA = @INSTALL_DATA@
|
INSTALL_DATA = @INSTALL_DATA@
|
||||||
### This doe not work: MKINSTALLDIRS = $(top_srcdir)/@MKINSTALLDIRS@
|
MKINSTALLDIRS = $(top_srcdir)/@MKINSTALLDIRS@
|
||||||
MKINSTALLDIRS = $(top_srcdir)/scripts/mkinstalldirs
|
|
||||||
|
|
||||||
CC = @CC@
|
CC = @CC@
|
||||||
GENCAT = @GENCAT@
|
GENCAT = @GENCAT@
|
||||||
@ -44,7 +43,7 @@ INCLUDES = -I.. -I$(top_srcdir)/intl
|
|||||||
|
|
||||||
COMPILE = $(CC) -c $(DEFS) $(INCLUDES) $(CPPFLAGS) $(CFLAGS) $(XCFLAGS)
|
COMPILE = $(CC) -c $(DEFS) $(INCLUDES) $(CPPFLAGS) $(CFLAGS) $(XCFLAGS)
|
||||||
|
|
||||||
SOURCES = cat-id-tbl.c de.glo
|
SOURCES = cat-id-tbl.c
|
||||||
POFILES = @POFILES@
|
POFILES = @POFILES@
|
||||||
GMOFILES = @GMOFILES@
|
GMOFILES = @GMOFILES@
|
||||||
DISTFILES = ChangeLog Makefile.in.in POTFILES.in $(PACKAGE).pot \
|
DISTFILES = ChangeLog Makefile.in.in POTFILES.in $(PACKAGE).pot \
|
||||||
@ -52,8 +51,6 @@ stamp-cat-id $(POFILES) $(GMOFILES) $(SOURCES)
|
|||||||
|
|
||||||
POTFILES = \
|
POTFILES = \
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
CATALOGS = @CATALOGS@
|
CATALOGS = @CATALOGS@
|
||||||
CATOBJEXT = @CATOBJEXT@
|
CATOBJEXT = @CATOBJEXT@
|
||||||
INSTOBJEXT = @INSTOBJEXT@
|
INSTOBJEXT = @INSTOBJEXT@
|
||||||
@ -123,7 +120,7 @@ install-data-yes: all
|
|||||||
cat=`basename $$cat`; \
|
cat=`basename $$cat`; \
|
||||||
case "$$cat" in \
|
case "$$cat" in \
|
||||||
*.gmo) destdir=$(gnulocaledir);; \
|
*.gmo) destdir=$(gnulocaledir);; \
|
||||||
*) destdir=$(localedir);; \
|
*) destdir=$(localedir);; \
|
||||||
esac; \
|
esac; \
|
||||||
lang=`echo $$cat | sed 's/\$(CATOBJEXT)$$//'`; \
|
lang=`echo $$cat | sed 's/\$(CATOBJEXT)$$//'`; \
|
||||||
dir=$$destdir/$$lang/LC_MESSAGES; \
|
dir=$$destdir/$$lang/LC_MESSAGES; \
|
||||||
@ -235,8 +232,8 @@ POTFILES: POTFILES.in
|
|||||||
posrcprefix="../"; \
|
posrcprefix="../"; \
|
||||||
fi; \
|
fi; \
|
||||||
rm -f $@-t $@ \
|
rm -f $@-t $@ \
|
||||||
&& (sed -e '/^#/d' -e '/^[ ]*$$/d' \
|
&& (sed -e '/^#/d' -e '/^[ ]*$$/d' \
|
||||||
-e "s@.*@ $$posrcprefix& \\\\@" < $(srcdir)/$@.in \
|
-e "s@.*@ $$posrcprefix& \\\\@" < $(srcdir)/$@.in \
|
||||||
| sed -e '$$s/\\$$//') > $@-t \
|
| sed -e '$$s/\\$$//') > $@-t \
|
||||||
&& chmod a-w $@-t \
|
&& chmod a-w $@-t \
|
||||||
&& mv $@-t $@ )
|
&& mv $@-t $@ )
|
||||||
|
@ -1,3 +1,7 @@
|
|||||||
|
Sat Feb 13 12:04:43 CET 1999 Werner Koch <wk@isil.d.shuttle.de>
|
||||||
|
|
||||||
|
* autogen.sh: Now uses gettextize
|
||||||
|
|
||||||
Wed Feb 10 17:15:39 CET 1999 Werner Koch <wk@isil.d.shuttle.de>
|
Wed Feb 10 17:15:39 CET 1999 Werner Koch <wk@isil.d.shuttle.de>
|
||||||
|
|
||||||
* config.sub, config.guess: Support i386-emx-os2
|
* config.sub, config.guess: Support i386-emx-os2
|
||||||
|
@ -46,17 +46,22 @@ if (gettext --version </dev/null 2>/dev/null | awk 'NR==1 { split($4,A,"\."); \
|
|||||||
fi
|
fi
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
if test "$DIE" = "yes"; then
|
if test "$DIE" = "yes"; then
|
||||||
exit 1
|
exit 1
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
echo "Running gettextize... Ignore non-fatal messages."
|
||||||
|
echo "no" | gettextize --force
|
||||||
|
|
||||||
|
|
||||||
|
echo "Running aclocal..."
|
||||||
aclocal
|
aclocal
|
||||||
|
echo "Running autoheader..."
|
||||||
autoheader
|
autoheader
|
||||||
|
echo "Running automake --gnu ..."
|
||||||
automake --gnu;
|
automake --gnu;
|
||||||
autoheader
|
echo "Running autoconf..."
|
||||||
autoconf
|
autoconf
|
||||||
|
|
||||||
echo "Ready to run ./configure"
|
echo "You can now run \"./configure\" and then \"make\"."
|
||||||
|
|
||||||
|
@ -1,5 +1,8 @@
|
|||||||
#!/bin/sh
|
#!/bin/sh
|
||||||
# Make a snapshot of the CVS head revision for the gnupg webpages
|
# Make a snapshot of the CVS head revision for the gnupg webpages
|
||||||
|
# and put them into the FTP directory (so that the mirrors w/o rsync
|
||||||
|
# can access them
|
||||||
|
|
||||||
|
|
||||||
set -e
|
set -e
|
||||||
|
|
||||||
@ -13,7 +16,7 @@ fix_it () {
|
|||||||
[ This is a snapshot of the NEWS file from the CVS head revision.
|
[ This is a snapshot of the NEWS file from the CVS head revision.
|
||||||
You will find the NEWS for the latest revision below the line
|
You will find the NEWS for the latest revision below the line
|
||||||
"Noteworthy changes in version 0.x.y".
|
"Noteworthy changes in version 0.x.y".
|
||||||
(wk $(date +%Y-%m-%d)) ]
|
(wk $(date +%Y-%m-%d)) ]
|
||||||
|
|
||||||
|
|
||||||
EOF
|
EOF
|
||||||
@ -46,6 +49,10 @@ do_export () {
|
|||||||
|
|
||||||
do_export gnupg-www gnupg-www
|
do_export gnupg-www gnupg-www
|
||||||
|
|
||||||
|
cd gnupg-www
|
||||||
|
tar czf /home/ftp/pub/gcrypt/old/webpages.tmp *
|
||||||
|
mv /home/ftp/pub/gcrypt/old/webpages.tmp /home/ftp/pub/gcrypt/old/webpages.tar.gz
|
||||||
|
|
||||||
|
|
||||||
exit 0
|
exit 0
|
||||||
|
|
||||||
|
@ -1,3 +1,7 @@
|
|||||||
|
Sat Feb 13 12:04:43 CET 1999 Werner Koch <wk@isil.d.shuttle.de>
|
||||||
|
|
||||||
|
* Makefile.am: Removed -Wall
|
||||||
|
|
||||||
Wed Jan 20 21:40:21 CET 1999 Werner Koch <wk@isil.d.shuttle.de>
|
Wed Jan 20 21:40:21 CET 1999 Werner Koch <wk@isil.d.shuttle.de>
|
||||||
|
|
||||||
* Makefile.am: Corrected the list of sources
|
* Makefile.am: Corrected the list of sources
|
||||||
|
@ -3,8 +3,6 @@
|
|||||||
# For conditions of distribution and use, see copyright notice in zlib.h
|
# For conditions of distribution and use, see copyright notice in zlib.h
|
||||||
# This is used if a systems lacks support of zlib
|
# This is used if a systems lacks support of zlib
|
||||||
|
|
||||||
CFLAGS = -O -Wall
|
|
||||||
|
|
||||||
EXTRA_DIST = README algorithm.doc ChangeLog
|
EXTRA_DIST = README algorithm.doc ChangeLog
|
||||||
|
|
||||||
# I found no other easy way to use this only if zlib is neede
|
# I found no other easy way to use this only if zlib is neede
|
||||||
|
Loading…
x
Reference in New Issue
Block a user