Skip to content

Commit 6ffa8a1

Browse files
committed
Recommend ICU in README, update .gitignore
Additionally enable XZ source tarball compression (as mentioned in the README ;-) for quite some time) Do not stop on possible autoconfigure warnings (this is for developers and they are still able to use `auto(re)conf -Werror` for local tests).
1 parent 4d258c5 commit 6ffa8a1

4 files changed

Lines changed: 6 additions & 7 deletions

File tree

.gitignore

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@
44
/builds/autoconf/
55
!/builds/autoconf/m4/m4_ax_pkg_check_modules.m4
66
/liblcf-*/
7-
/test_runner*
87
.deps/
98
.libs/
109
.dirstamp
@@ -15,7 +14,7 @@ config.h.in
1514
config.log
1615
config.status
1716
configure
18-
liblcf-*.tar.gz
17+
liblcf-*.tar.*
1918
libtool
2019
stamp-h1
2120
*.la
@@ -54,4 +53,4 @@ Makefile
5453
*.pc
5554

5655
# tests
57-
/tests/test_runner*
56+
test_runner*

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ Documentation is available at the documentation wiki: https://wiki.easyrpg.org
1515
## Requirements
1616

1717
Expat for XML reading support.
18-
ICU for character encoding detection and conversion.
18+
ICU for character encoding detection and conversion (recommended).
1919

2020

2121
## Source code

builds/autoconf/m4/ax_pkg_check_modules.m4

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# ===========================================================================
2-
# http://www.gnu.org/software/autoconf-archive/ax_pkg_check_modules.html
2+
# https://www.gnu.org/software/autoconf-archive/ax_pkg_check_modules.html
33
# ===========================================================================
44
#
55
# SYNOPSIS
@@ -50,7 +50,7 @@
5050
# and this notice are preserved. This file is offered as-is, without any
5151
# warranty.
5252

53-
#serial 2
53+
#serial 3
5454

5555
AC_DEFUN([AX_PKG_CHECK_MODULES],[
5656
m4_define([ax_package_requires],

configure.ac

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ AC_PREREQ([2.69])
55
AC_INIT([liblcf],[0.5.2],[https://github.com/EasyRPG/liblcf/issues],[liblcf],[https://easyrpg.org/])
66

77
AC_CONFIG_AUX_DIR([builds/autoconf])
8-
AM_INIT_AUTOMAKE([1.11.4 foreign subdir-objects -Wall -Werror])
8+
AM_INIT_AUTOMAKE([1.11.4 foreign subdir-objects -Wall dist-xz])
99
AM_MAINTAINER_MODE([enable])
1010
AM_SILENT_RULES([yes])
1111

0 commit comments

Comments
 (0)