~vcs-imports/libiconv/trunk

« back to all changes in this revision

Viewing changes to autogen.sh

  • Committer: Bruno Haible
  • Date: 2024-12-15 12:23:08 UTC
  • Revision ID: git-v1:8d618a87265040dc882b451e39c6a39e610395be
Prepare for version 1.18.

* configure.ac: Bump version number to 1.18.
* include/iconv.h.in (_LIBICONV_VERSION): Likewise.
* lib/Makefile.in (LIBICONV_VERSION_INFO): Bump to 9:0:7.
* src/iconv.c (print_version): Update copyright year.
* windows/iconv.rc: Likewise.
* windows/libiconv.rc: Likewise.
* README: Update download link.

Show diffs side-by-side

added added

removed removed

Lines of Context:
4
4
# also regenerates all aclocal.m4, config.h.in, Makefile.in, configure files
5
5
# with new versions of autoconf or automake.
6
6
#
7
 
# This script requires autoconf-2.63..2.71 and automake-1.11..1.16 in the PATH.
 
7
# This script requires autoconf-2.63..2.72 and automake-1.11..1.17 in the PATH.
8
8
# It also requires
9
9
#   - the gperf program.
10
10
 
11
 
# Copyright (C) 2003-2012, 2016, 2018-2023 Free Software Foundation, Inc.
 
11
# Copyright (C) 2003-2024 Free Software Foundation, Inc.
12
12
#
13
13
# This program is free software: you can redistribute it and/or modify
14
14
# it under the terms of the GNU General Public License as published by
99
99
for file in config.guess config.libpath config.sub install-sh libtool-reloc mkinstalldirs; do
100
100
  cp -p build-aux/$file libcharset/build-aux/$file || exit $?
101
101
done
102
 
for file in codeset.m4 fcntl-o.m4 lib-ld.m4 relocatable.m4 relocatable-lib.m4 visibility.m4; do
 
102
for file in \
 
103
  build-to-host.m4 \
 
104
  codeset.m4 \
 
105
  fcntl-o.m4 \
 
106
  host-cpu-c-abi.m4 \
 
107
  lib-ld.m4 \
 
108
  relocatable.m4 \
 
109
  relocatable-lib.m4 \
 
110
  visibility.m4 \
 
111
; do
103
112
  cp -p srcm4/$file libcharset/m4/$file || exit $?
104
113
done
105
114