mirror of
git://git.gnupg.org/gnupg.git
synced 2025-07-02 22:46:30 +02:00
See ChangeLog: Sat Jan 16 09:27:30 CET 1999 Werner Koch
This commit is contained in:
parent
e99e43cd53
commit
29c08419db
23 changed files with 203 additions and 122 deletions
|
@ -1,3 +1,8 @@
|
|||
Sat Jan 16 09:27:30 CET 1999 Werner Koch <wk@isil.d.shuttle.de>
|
||||
|
||||
* config.guess (m68k-atari-mint): New.
|
||||
* config.sub: Add support for atarist-MiNT
|
||||
|
||||
Wed Jan 13 12:49:36 CET 1999 Werner Koch <wk@isil.d.shuttle.de>
|
||||
|
||||
* gnupg.spec.in: New
|
||||
|
|
|
@ -23,5 +23,31 @@ for i in `find . -name Changes -print`; do
|
|||
fi
|
||||
done
|
||||
|
||||
# Execute canned cvs remove commands
|
||||
for i in `find . -name cvs-remove -print`; do
|
||||
dir=`dirname $i`
|
||||
if [ -s $dir/cvs-remove ]; then
|
||||
here=`pwd`
|
||||
cd $dir
|
||||
if cvs remove -f `cat cvs-remove`; then
|
||||
rm cvs-remove
|
||||
fi
|
||||
cd $here
|
||||
fi
|
||||
done
|
||||
|
||||
# Execute canned cvs add commands
|
||||
for i in `find . -name cvs-add -print`; do
|
||||
dir=`dirname $i`
|
||||
if [ -s $dir/cvs-add ]; then
|
||||
here=`pwd`
|
||||
cd $dir
|
||||
if cvs add `cat cvs-add`; then
|
||||
rm cvs-add
|
||||
fi
|
||||
cd $here
|
||||
fi
|
||||
done
|
||||
|
||||
cvs commit -m "See ChangeLog: $date $name" $*
|
||||
|
||||
|
|
4
scripts/config.guess
vendored
4
scripts/config.guess
vendored
|
@ -1,6 +1,6 @@
|
|||
#! /bin/sh
|
||||
# Attempt to guess a canonical system name.
|
||||
# Copyright (C) 1992, 93, 94, 95, 96, 1997 Free Software Foundation, Inc.
|
||||
# Copyright (C) 1992, 93, 94, 95, 96, 97, 1999 Free Software Foundation, Inc.
|
||||
#
|
||||
# This file is free software; you can redistribute it and/or modify it
|
||||
# under the terms of the GNU General Public License as published by
|
||||
|
@ -138,7 +138,7 @@ case "${UNAME_MACHINE}:${UNAME_SYSTEM}:${UNAME_RELEASE}:${UNAME_VERSION}" in
|
|||
atari*:OpenBSD:*:*)
|
||||
echo m68k-unknown-openbsd${UNAME_RELEASE}
|
||||
exit 0 ;;
|
||||
atari*:[Mm]i[Nn][Tt]:*:*)
|
||||
atari*:MiNT:*:*)
|
||||
echo m68k-atari-mint
|
||||
exit 0 ;;
|
||||
sun3*:NetBSD:*:*)
|
||||
|
|
8
scripts/config.sub
vendored
8
scripts/config.sub
vendored
|
@ -1,6 +1,6 @@
|
|||
#! /bin/sh
|
||||
# Configuration validation subroutine script, version 1.1.
|
||||
# Copyright (C) 1991, 92, 93, 94, 95, 1996 Free Software Foundation, Inc.
|
||||
# Copyright (C) 1991, 92, 93, 94, 95, 96, 1999 Free Software Foundation, Inc.
|
||||
# This file is (in principle) common to ALL GNU software.
|
||||
# The presence of a machine in this file suggests that SOME GNU software
|
||||
# can handle that machine. It does not imply ALL GNU software can.
|
||||
|
@ -279,6 +279,9 @@ case $basic_machine in
|
|||
basic_machine=m68k-apollo
|
||||
os=-bsd
|
||||
;;
|
||||
atarist)
|
||||
basic_machine=m68k-atari
|
||||
;;
|
||||
aux)
|
||||
basic_machine=m68k-apple
|
||||
os=-aux
|
||||
|
@ -965,6 +968,9 @@ case $os in
|
|||
-xenix)
|
||||
os=-xenix
|
||||
;;
|
||||
-MiNT | -mint)
|
||||
os=-mint
|
||||
;;
|
||||
-none)
|
||||
;;
|
||||
*)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue