Skip to content

Commit

Permalink
Update to version 4.6.0
Browse files Browse the repository at this point in the history
  • Loading branch information
remkos committed Feb 16, 2024
1 parent d6d8966 commit 710c06a
Show file tree
Hide file tree
Showing 7 changed files with 165 additions and 66 deletions.
14 changes: 14 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,20 @@ Please submit your bug reports or feature requests, and track existing ones, on
Following is a history of releases on [GitHub](https://github.com/remkos/rads/releases), newest to oldest.
This does not include explanations of changes to the code that generates the data base.

### v4.6.0 (15 Feb 2024)
* Documentation
* made a lot of corrections and updates.
* removed obsolete variables, indicated deprecated variables slated to be removed.
* updates to include tx/pn reprocessed data.
* described better the original data sources.
* corrected in the tables which data are available for which satellites.
* `rads.xml`
* updates to include tx/pn reprocessed (GDR-F) data and removed old tx/pn RGDR data.
* removed obsolete variables.
* corrected `sat` options to correctly identify which data are available for which satellites.
* added alias `tpx` for TOPEX.
* Updated `config.sub` and `config.guess`

### v4.5.2 (20 Oct 2023)
* Documentation
* replaced name of rads2asc4 by rads2asc; same for other *4 executables.
Expand Down
17 changes: 13 additions & 4 deletions config.guess
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
#! /bin/sh
# Attempt to guess a canonical system name.
# Copyright 1992-2023 Free Software Foundation, Inc.
# Copyright 1992-2024 Free Software Foundation, Inc.

# shellcheck disable=SC2006,SC2268 # see below for rationale

timestamp='2023-07-20'
timestamp='2024-01-01'

# 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
Expand Down Expand Up @@ -60,7 +60,7 @@ version="\
GNU config.guess ($timestamp)
Originally written by Per Bothner.
Copyright 1992-2023 Free Software Foundation, Inc.
Copyright 1992-2024 Free Software Foundation, Inc.
This is free software; see the source for copying conditions. There is NO
warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE."
Expand Down Expand Up @@ -155,20 +155,26 @@ Linux|GNU|GNU/*)

set_cc_for_build
cat <<-EOF > "$dummy.c"
#if defined(__ANDROID__)
LIBC=android
#else
#include <features.h>
#if defined(__UCLIBC__)
LIBC=uclibc
#elif defined(__dietlibc__)
LIBC=dietlibc
#elif defined(__GLIBC__)
LIBC=gnu
#elif defined(__LLVM_LIBC__)
LIBC=llvm
#else
#include <stdarg.h>
/* First heuristic to detect musl libc. */
#ifdef __DEFINED_va_list
LIBC=musl
#endif
#endif
#endif
EOF
cc_set_libc=`$CC_FOR_BUILD -E "$dummy.c" 2>/dev/null | grep '^LIBC' | sed 's, ,,g'`
eval "$cc_set_libc"
Expand Down Expand Up @@ -904,7 +910,7 @@ EOF
fi
;;
*:FreeBSD:*:*)
UNAME_PROCESSOR=`/usr/bin/uname -p`
UNAME_PROCESSOR=`uname -p`
case $UNAME_PROCESSOR in
amd64)
UNAME_PROCESSOR=x86_64 ;;
Expand Down Expand Up @@ -1589,6 +1595,9 @@ EOF
*:Unleashed:*:*)
GUESS=$UNAME_MACHINE-unknown-unleashed$UNAME_RELEASE
;;
*:Ironclad:*:*)
GUESS=$UNAME_MACHINE-unknown-ironclad
;;
esac

# Do we have a guess based on uname results?
Expand Down
Loading

0 comments on commit 710c06a

Please sign in to comment.