diff options
author | Werner Koch <[email protected]> | 2003-10-21 12:54:28 +0000 |
---|---|---|
committer | Werner Koch <[email protected]> | 2003-10-21 12:54:28 +0000 |
commit | 1865540567556fac6d4c0b34fe085e83d0c7359f (patch) | |
tree | a2b3999b69c95b0589605594cfea6427134cdde9 | |
parent | * longlong.h: Added PowerPC 64 bit code from GPM-4.1.2 but didn't (diff) | |
download | gnupg-1865540567556fac6d4c0b34fe085e83d0c7359f.tar.gz gnupg-1865540567556fac6d4c0b34fe085e83d0c7359f.zip |
* configure.ac (PRINTABLE_OS_NAME): Remove special case for The
Hurd; Robert Millan reported that the uname test is now
sufficient.
-rw-r--r-- | ChangeLog | 6 | ||||
-rw-r--r-- | THANKS | 1 | ||||
-rw-r--r-- | configure.ac | 4 |
3 files changed, 7 insertions, 4 deletions
@@ -1,3 +1,9 @@ +2003-10-21 Werner Koch <[email protected]> + + * configure.ac (PRINTABLE_OS_NAME): Remove special case for The + Hurd; Robert Millan reported that the uname test is now + sufficient. + 2003-09-03 David Shaw <[email protected]> * configure.ac: Check for UINT64_C to go along with uint64_t. @@ -167,6 +167,7 @@ R�mi Guyomarch [email protected] Reuben Sumner [email protected] Richard Outerbridge [email protected] Robert Joop [email protected] +Rover Millan [email protected] Roddy Strachan [email protected] Roger Sondermann [email protected] Roland Rosenfeld [email protected] diff --git a/configure.ac b/configure.ac index 7d118edf6..f8b434a6a 100644 --- a/configure.ac +++ b/configure.ac @@ -467,10 +467,6 @@ case "${target}" in *-linux*) PRINTABLE_OS_NAME="GNU/Linux" ;; -dnl let that after linux to avoid gnu-linux problems - *-gnu*) - PRINTABLE_OS_NAME="GNU/Hurd" - ;; *) PRINTABLE_OS_NAME=`uname -s || echo "Unknown"` test "$PRINTABLE_OS_NAME" = "Linux" && PRINTABLE_OS_NAME="GNU/Linux" |