Skip to content

Commit

Permalink
Release 24.12.0.
Browse files Browse the repository at this point in the history
  • Loading branch information
jperkin committed Dec 5, 2024
1 parent 97dd290 commit 04a1569
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 16 deletions.
8 changes: 8 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
## Version 24.12.0 (2024-12-05)

* Cross-build fixes from Taylor.

* Ensure logs use ISO-8601 timestamps.

* Various autoconf and nbcompat cleanups.

## Version 23.8.1 (2023-08-22)

* Fix regression introduced in 23.8.0 where only the first argument to "keep"
Expand Down
20 changes: 10 additions & 10 deletions configure
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#! /bin/sh
# Guess values for system-dependent variables and create Makefiles.
# Generated by GNU Autoconf 2.72 for pkgin 23.12.0.
# Generated by GNU Autoconf 2.72 for pkgin 24.12.0.
#
# Report bugs to <https://github.com/NetBSDfr/pkgin/issues>.
#
Expand Down Expand Up @@ -603,8 +603,8 @@ MAKEFLAGS=
# Identity of this package.
PACKAGE_NAME='pkgin'
PACKAGE_TARNAME='pkgin'
PACKAGE_VERSION='23.12.0'
PACKAGE_STRING='pkgin 23.12.0'
PACKAGE_VERSION='24.12.0'
PACKAGE_STRING='pkgin 24.12.0'
PACKAGE_BUGREPORT='https://github.com/NetBSDfr/pkgin/issues'
PACKAGE_URL=''

Expand Down Expand Up @@ -1308,7 +1308,7 @@ if test "$ac_init_help" = "long"; then
# Omit some internal or obsolete options to make the list less imposing.
# This message is too long to be a string in the A/UX 3.1 sh.
cat <<_ACEOF
'configure' configures pkgin 23.12.0 to adapt to many kinds of systems.
'configure' configures pkgin 24.12.0 to adapt to many kinds of systems.
Usage: $0 [OPTION]... [VAR=VALUE]...
Expand Down Expand Up @@ -1375,7 +1375,7 @@ fi

if test -n "$ac_init_help"; then
case $ac_init_help in
short | recursive ) echo "Configuration of pkgin 23.12.0:";;
short | recursive ) echo "Configuration of pkgin 24.12.0:";;
esac
cat <<\_ACEOF
Expand Down Expand Up @@ -1480,7 +1480,7 @@ fi
test -n "$ac_init_help" && exit $ac_status
if $ac_init_version; then
cat <<\_ACEOF
pkgin configure 23.12.0
pkgin configure 24.12.0
generated by GNU Autoconf 2.72
Copyright (C) 2023 Free Software Foundation, Inc.
Expand Down Expand Up @@ -1767,7 +1767,7 @@ cat >config.log <<_ACEOF
This file contains any messages produced by compilers while
running configure, to aid debugging if configure makes a mistake.
It was created by pkgin $as_me 23.12.0, which was
It was created by pkgin $as_me 24.12.0, which was
generated by GNU Autoconf 2.72. Invocation command line was
$ $0$ac_configure_args_raw
Expand Down Expand Up @@ -3063,7 +3063,7 @@ fi

# Define the identity of the package.
PACKAGE='pkgin'
VERSION='23.12.0'
VERSION='24.12.0'


printf "%s\n" "#define PACKAGE \"$PACKAGE\"" >>confdefs.h
Expand Down Expand Up @@ -5727,7 +5727,7 @@ cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1
# report actual input values of CONFIG_FILES etc. instead of their
# values after options handling.
ac_log="
This file was extended by pkgin $as_me 23.12.0, which was
This file was extended by pkgin $as_me 24.12.0, which was
generated by GNU Autoconf 2.72. Invocation command line was
CONFIG_FILES = $CONFIG_FILES
Expand Down Expand Up @@ -5795,7 +5795,7 @@ ac_cs_config_escaped=`printf "%s\n" "$ac_cs_config" | sed "s/^ //; s/'/'\\\\\\\\
cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
ac_cs_config='$ac_cs_config_escaped'
ac_cs_version="\\
pkgin config.status 23.12.0
pkgin config.status 24.12.0
configured by $0, generated by GNU Autoconf 2.72,
with options \\"\$ac_cs_config\\"
Expand Down
7 changes: 1 addition & 6 deletions configure.ac
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
AC_PREREQ([2.61])
AC_INIT([pkgin], [23.12.0], [https://github.com/NetBSDfr/pkgin/issues])
AC_INIT([pkgin], [24.12.0], [https://github.com/NetBSDfr/pkgin/issues])
AC_CONFIG_SRCDIR([actions.c])
AC_CONFIG_HEADERS([config.h])

Expand Down Expand Up @@ -56,11 +56,6 @@ AC_ARG_WITH([libfetch],
LDFLAGS="$LDFLAGS -L$withval/lib"]
)
AC_CHECK_HEADER([fetch.h],[],[AC_MSG_FAILURE([can't find fetch.h])])
dnl
dnl This is a bit silly. I can't find a way to try both with and without
dnl OpenSSL libraries in the same check, so we're forced to look for two
dnl different symbols (to avoid the cache).
dnl
AC_CHECK_LIB([fetch],[fetchMakeURL],[],
[AC_MSG_FAILURE([can't find libfetch])]
)
Expand Down

0 comments on commit 04a1569

Please sign in to comment.