Skip to content

Commit 887f534

Browse files
authored
Merge pull request #218 from carstene1ns/release_0.5.3
Release 0.5.3
2 parents 4d258c5 + 6df0c55 commit 887f534

6 files changed

Lines changed: 13 additions & 12 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*

Makefile.am

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
ACLOCAL_AMFLAGS = --install -I builds/autoconf/m4
2-
EXTRA_DIST = AUTHORS.md README.md builds generator
2+
EXTRA_DIST = AUTHORS.md README.md generator \
3+
builds/cmake builds/vs2015 builds/Doxyfile
34
pkgconfigdir = ${libdir}/pkgconfig
45
pkgconfig_DATA = builds/liblcf.pc
56

@@ -195,6 +196,7 @@ pkginclude_HEADERS = \
195196

196197
check_PROGRAMS = test_runner
197198
test_runner_SOURCES = \
199+
tests/doctest.h \
198200
tests/time_stamp.cpp \
199201
tests/test_main.cpp
200202
test_runner_CPPFLAGS = \

README.md

Lines changed: 3 additions & 3 deletions
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
@@ -41,8 +41,8 @@ Building requirements:
4141

4242
Step-by-step instructions:
4343

44-
tar xf liblcf-0.5.2.tar.xz # unpack the tarball
45-
cd liblcf-0.5.2 # enter in the package directory
44+
tar xf liblcf-0.5.3.tar.xz # unpack the tarball
45+
cd liblcf-0.5.3 # enter in the package directory
4646
./configure --prefix /usr # find libraries, set options
4747
make # compile the library
4848
sudo make install # install system-wide

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],

builds/cmake/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
cmake_minimum_required(VERSION 2.8)
22

33
project(liblcf C CXX)
4-
set(PACKAGE_VERSION 0.5.2)
4+
set(PACKAGE_VERSION 0.5.3)
55

66
set(EXECUTABLE_OUTPUT_PATH ${CMAKE_CURRENT_BINARY_DIR}/bin)
77
set(LIBRARY_OUTPUT_PATH ${CMAKE_CURRENT_BINARY_DIR}/lib)

configure.ac

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,10 @@
22
# Process this file with autoconf to produce a configure script.
33

44
AC_PREREQ([2.69])
5-
AC_INIT([liblcf],[0.5.2],[https://github.com/EasyRPG/liblcf/issues],[liblcf],[https://easyrpg.org/])
5+
AC_INIT([liblcf],[0.5.3],[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)