mirror of
git://git.gnupg.org/gnupg.git
synced 2025-01-03 12:11:33 +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>
|
||||
|
||||
* acinclude.m4 (GNUPG_CHECK_RDYNAMIC): Fix for freebsd 2.2
|
||||
|
@ -1,6 +1,6 @@
|
||||
## 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
|
||||
|
||||
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
|
||||
QingLong qinglong@bolizm.ihep.su
|
||||
Ralph Gillen gillen@theochem.uni-duesseldorf.de
|
||||
Reinhard Wobst R.Wobst@ifw-dresden.de
|
||||
Reuben Sumner rasumner@wisdom.weizmann.ac.il
|
||||
Roddy Strachan roddy@satlink.com.au
|
||||
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
|
||||
just before "Esoteric Command" (after ~8k of text).
|
||||
|
||||
* Did I add -lsocket and -lnls for Solaris?
|
||||
|
||||
Important
|
||||
----------
|
||||
* replace gettext by a non exploitable one.
|
||||
@ -26,6 +28,9 @@ Important
|
||||
|
||||
Needed
|
||||
------
|
||||
* encrypttoself, damit keine Angabe von -r immer noch zu einer
|
||||
abfrage führt.
|
||||
|
||||
* remove more "Fixmes"
|
||||
|
||||
* Replace Blowfish by Twofish and add the new encrypted packet type
|
||||
|
@ -200,13 +200,14 @@ define(GNUPG_CHECK_RDYNAMIC,
|
||||
AC_MSG_RESULT(assume none)
|
||||
else
|
||||
case "$host_os" in
|
||||
solaris*)
|
||||
solaris* )
|
||||
CFLAGS_RDYNAMIC="-Wl,-dy"
|
||||
;;
|
||||
freebsd2*)
|
||||
|
||||
freebsd2* | osf4* )
|
||||
CFLAGS_RDYNAMIC=""
|
||||
;;
|
||||
*)
|
||||
* )
|
||||
CFLAGS_RDYNAMIC="-Wl,-export-dynamic"
|
||||
;;
|
||||
esac
|
||||
|
13
configure.in
13
configure.in
@ -59,9 +59,6 @@ else
|
||||
fi
|
||||
if test "$use_m_guard" = yes ; then
|
||||
AC_DEFINE(M_GUARD)
|
||||
CFLAGS="$CFLAGS -g"
|
||||
else
|
||||
CFLAGS="$CFLAGS -O2"
|
||||
fi
|
||||
|
||||
|
||||
@ -91,10 +88,18 @@ AC_PROG_INSTALL
|
||||
dnl AC_CYGWIN32
|
||||
|
||||
|
||||
MPI_OPT_FLAGS=""
|
||||
if test "$GCC" = yes; then
|
||||
CFLAGS="$CFLAGS -Wall"
|
||||
dnl Always enable optimazation in MPI
|
||||
if echo "$CFLAGS" | grep "-O" >/dev/null ; then
|
||||
:
|
||||
else
|
||||
MPI_OPT_FLAGS=-O2
|
||||
fi
|
||||
fi
|
||||
|
||||
|
||||
try_gettext=yes
|
||||
try_gdbm=yes
|
||||
case "${target}" in
|
||||
@ -130,6 +135,7 @@ case "${target}" in
|
||||
;;
|
||||
esac
|
||||
|
||||
AC_SUBST(MPI_OPT_FLAGS)
|
||||
|
||||
GNUPG_CHECK_PIC
|
||||
GNUPG_CHECK_RDYNAMIC
|
||||
@ -169,6 +175,7 @@ case "${target}" in
|
||||
esac
|
||||
AC_DEFINE_UNQUOTED(NAME_OF_DEV_RANDOM, "$NAME_OF_DEV_RANDOM")
|
||||
AC_DEFINE_UNQUOTED(NAME_OF_DEV_URANDOM, "$NAME_OF_DEV_URANDOM")
|
||||
AC_SUBST(MPI_OPT_FLAGS)
|
||||
|
||||
|
||||
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>
|
||||
|
||||
* mpi-cmp.c (mpi_cmp_ui): Normalized the arg.
|
||||
|
@ -1,7 +1,7 @@
|
||||
## Process this file with automake to produce Makefile.in
|
||||
|
||||
INCLUDES = -I$(top_srcdir)/include
|
||||
CFLAGS += -O2
|
||||
CFLAGS = @CFLAGS@ @MPI_OPT_FLAGS@
|
||||
SFLAGS = @MPI_SFLAGS@
|
||||
|
||||
SUFFIXES = .S .s
|
||||
|
@ -26,8 +26,7 @@ subdir = po
|
||||
|
||||
INSTALL = @INSTALL@
|
||||
INSTALL_DATA = @INSTALL_DATA@
|
||||
### This doe not work: MKINSTALLDIRS = $(top_srcdir)/@MKINSTALLDIRS@
|
||||
MKINSTALLDIRS = $(top_srcdir)/scripts/mkinstalldirs
|
||||
MKINSTALLDIRS = $(top_srcdir)/@MKINSTALLDIRS@
|
||||
|
||||
CC = @CC@
|
||||
GENCAT = @GENCAT@
|
||||
@ -44,7 +43,7 @@ INCLUDES = -I.. -I$(top_srcdir)/intl
|
||||
|
||||
COMPILE = $(CC) -c $(DEFS) $(INCLUDES) $(CPPFLAGS) $(CFLAGS) $(XCFLAGS)
|
||||
|
||||
SOURCES = cat-id-tbl.c de.glo
|
||||
SOURCES = cat-id-tbl.c
|
||||
POFILES = @POFILES@
|
||||
GMOFILES = @GMOFILES@
|
||||
DISTFILES = ChangeLog Makefile.in.in POTFILES.in $(PACKAGE).pot \
|
||||
@ -52,8 +51,6 @@ stamp-cat-id $(POFILES) $(GMOFILES) $(SOURCES)
|
||||
|
||||
POTFILES = \
|
||||
|
||||
|
||||
|
||||
CATALOGS = @CATALOGS@
|
||||
CATOBJEXT = @CATOBJEXT@
|
||||
INSTOBJEXT = @INSTOBJEXT@
|
||||
@ -123,7 +120,7 @@ install-data-yes: all
|
||||
cat=`basename $$cat`; \
|
||||
case "$$cat" in \
|
||||
*.gmo) destdir=$(gnulocaledir);; \
|
||||
*) destdir=$(localedir);; \
|
||||
*) destdir=$(localedir);; \
|
||||
esac; \
|
||||
lang=`echo $$cat | sed 's/\$(CATOBJEXT)$$//'`; \
|
||||
dir=$$destdir/$$lang/LC_MESSAGES; \
|
||||
@ -235,8 +232,8 @@ POTFILES: POTFILES.in
|
||||
posrcprefix="../"; \
|
||||
fi; \
|
||||
rm -f $@-t $@ \
|
||||
&& (sed -e '/^#/d' -e '/^[ ]*$$/d' \
|
||||
-e "s@.*@ $$posrcprefix& \\\\@" < $(srcdir)/$@.in \
|
||||
&& (sed -e '/^#/d' -e '/^[ ]*$$/d' \
|
||||
-e "s@.*@ $$posrcprefix& \\\\@" < $(srcdir)/$@.in \
|
||||
| sed -e '$$s/\\$$//') > $@-t \
|
||||
&& chmod a-w $@-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>
|
||||
|
||||
* 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
|
||||
|
||||
|
||||
|
||||
if test "$DIE" = "yes"; then
|
||||
exit 1
|
||||
fi
|
||||
|
||||
echo "Running gettextize... Ignore non-fatal messages."
|
||||
echo "no" | gettextize --force
|
||||
|
||||
|
||||
echo "Running aclocal..."
|
||||
aclocal
|
||||
echo "Running autoheader..."
|
||||
autoheader
|
||||
echo "Running automake --gnu ..."
|
||||
automake --gnu;
|
||||
autoheader
|
||||
echo "Running autoconf..."
|
||||
autoconf
|
||||
|
||||
echo "Ready to run ./configure"
|
||||
echo "You can now run \"./configure\" and then \"make\"."
|
||||
|
||||
|
@ -1,5 +1,8 @@
|
||||
#!/bin/sh
|
||||
# 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
|
||||
|
||||
@ -13,7 +16,7 @@ fix_it () {
|
||||
[ 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
|
||||
"Noteworthy changes in version 0.x.y".
|
||||
(wk $(date +%Y-%m-%d)) ]
|
||||
(wk $(date +%Y-%m-%d)) ]
|
||||
|
||||
|
||||
EOF
|
||||
@ -46,6 +49,10 @@ do_export () {
|
||||
|
||||
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
|
||||
|
||||
|
@ -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>
|
||||
|
||||
* Makefile.am: Corrected the list of sources
|
||||
|
@ -3,8 +3,6 @@
|
||||
# For conditions of distribution and use, see copyright notice in zlib.h
|
||||
# This is used if a systems lacks support of zlib
|
||||
|
||||
CFLAGS = -O -Wall
|
||||
|
||||
EXTRA_DIST = README algorithm.doc ChangeLog
|
||||
|
||||
# I found no other easy way to use this only if zlib is neede
|
||||
|
Loading…
x
Reference in New Issue
Block a user