Skip to content

Commit 04a1569

Browse files
committed
Release 24.12.0.
1 parent 97dd290 commit 04a1569

File tree

3 files changed

+19
-16
lines changed

3 files changed

+19
-16
lines changed

CHANGES.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
1+
## Version 24.12.0 (2024-12-05)
2+
3+
* Cross-build fixes from Taylor.
4+
5+
* Ensure logs use ISO-8601 timestamps.
6+
7+
* Various autoconf and nbcompat cleanups.
8+
19
## Version 23.8.1 (2023-08-22)
210

311
* Fix regression introduced in 23.8.0 where only the first argument to "keep"

configure

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#! /bin/sh
22
# Guess values for system-dependent variables and create Makefiles.
3-
# Generated by GNU Autoconf 2.72 for pkgin 23.12.0.
3+
# Generated by GNU Autoconf 2.72 for pkgin 24.12.0.
44
#
55
# Report bugs to <https://github.com/NetBSDfr/pkgin/issues>.
66
#
@@ -603,8 +603,8 @@ MAKEFLAGS=
603603
# Identity of this package.
604604
PACKAGE_NAME='pkgin'
605605
PACKAGE_TARNAME='pkgin'
606-
PACKAGE_VERSION='23.12.0'
607-
PACKAGE_STRING='pkgin 23.12.0'
606+
PACKAGE_VERSION='24.12.0'
607+
PACKAGE_STRING='pkgin 24.12.0'
608608
PACKAGE_BUGREPORT='https://github.com/NetBSDfr/pkgin/issues'
609609
PACKAGE_URL=''
610610

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

13761376
if test -n "$ac_init_help"; then
13771377
case $ac_init_help in
1378-
short | recursive ) echo "Configuration of pkgin 23.12.0:";;
1378+
short | recursive ) echo "Configuration of pkgin 24.12.0:";;
13791379
esac
13801380
cat <<\_ACEOF
13811381
@@ -1480,7 +1480,7 @@ fi
14801480
test -n "$ac_init_help" && exit $ac_status
14811481
if $ac_init_version; then
14821482
cat <<\_ACEOF
1483-
pkgin configure 23.12.0
1483+
pkgin configure 24.12.0
14841484
generated by GNU Autoconf 2.72
14851485
14861486
Copyright (C) 2023 Free Software Foundation, Inc.
@@ -1767,7 +1767,7 @@ cat >config.log <<_ACEOF
17671767
This file contains any messages produced by compilers while
17681768
running configure, to aid debugging if configure makes a mistake.
17691769
1770-
It was created by pkgin $as_me 23.12.0, which was
1770+
It was created by pkgin $as_me 24.12.0, which was
17711771
generated by GNU Autoconf 2.72. Invocation command line was
17721772
17731773
$ $0$ac_configure_args_raw
@@ -3063,7 +3063,7 @@ fi
30633063

30643064
# Define the identity of the package.
30653065
PACKAGE='pkgin'
3066-
VERSION='23.12.0'
3066+
VERSION='24.12.0'
30673067

30683068

30693069
printf "%s\n" "#define PACKAGE \"$PACKAGE\"" >>confdefs.h
@@ -5727,7 +5727,7 @@ cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1
57275727
# report actual input values of CONFIG_FILES etc. instead of their
57285728
# values after options handling.
57295729
ac_log="
5730-
This file was extended by pkgin $as_me 23.12.0, which was
5730+
This file was extended by pkgin $as_me 24.12.0, which was
57315731
generated by GNU Autoconf 2.72. Invocation command line was
57325732
57335733
CONFIG_FILES = $CONFIG_FILES
@@ -5795,7 +5795,7 @@ ac_cs_config_escaped=`printf "%s\n" "$ac_cs_config" | sed "s/^ //; s/'/'\\\\\\\\
57955795
cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
57965796
ac_cs_config='$ac_cs_config_escaped'
57975797
ac_cs_version="\\
5798-
pkgin config.status 23.12.0
5798+
pkgin config.status 24.12.0
57995799
configured by $0, generated by GNU Autoconf 2.72,
58005800
with options \\"\$ac_cs_config\\"
58015801

configure.ac

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
AC_PREREQ([2.61])
2-
AC_INIT([pkgin], [23.12.0], [https://github.com/NetBSDfr/pkgin/issues])
2+
AC_INIT([pkgin], [24.12.0], [https://github.com/NetBSDfr/pkgin/issues])
33
AC_CONFIG_SRCDIR([actions.c])
44
AC_CONFIG_HEADERS([config.h])
55

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

0 commit comments

Comments
 (0)