Skip to content

Commit

Permalink
Merge pull request #218 from carstene1ns/release_0.5.3
Browse files Browse the repository at this point in the history
Release 0.5.3
  • Loading branch information
Ghabry authored Oct 21, 2017
2 parents 4d258c5 + 6df0c55 commit 887f534
Show file tree
Hide file tree
Showing 6 changed files with 13 additions and 12 deletions.
5 changes: 2 additions & 3 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@
/builds/autoconf/
!/builds/autoconf/m4/m4_ax_pkg_check_modules.m4
/liblcf-*/
/test_runner*
.deps/
.libs/
.dirstamp
Expand All @@ -15,7 +14,7 @@ config.h.in
config.log
config.status
configure
liblcf-*.tar.gz
liblcf-*.tar.*
libtool
stamp-h1
*.la
Expand Down Expand Up @@ -54,4 +53,4 @@ Makefile
*.pc

# tests
/tests/test_runner*
test_runner*
4 changes: 3 additions & 1 deletion Makefile.am
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
ACLOCAL_AMFLAGS = --install -I builds/autoconf/m4
EXTRA_DIST = AUTHORS.md README.md builds generator
EXTRA_DIST = AUTHORS.md README.md generator \
builds/cmake builds/vs2015 builds/Doxyfile
pkgconfigdir = ${libdir}/pkgconfig
pkgconfig_DATA = builds/liblcf.pc

Expand Down Expand Up @@ -195,6 +196,7 @@ pkginclude_HEADERS = \

check_PROGRAMS = test_runner
test_runner_SOURCES = \
tests/doctest.h \
tests/time_stamp.cpp \
tests/test_main.cpp
test_runner_CPPFLAGS = \
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ Documentation is available at the documentation wiki: https://wiki.easyrpg.org
## Requirements

Expat for XML reading support.
ICU for character encoding detection and conversion.
ICU for character encoding detection and conversion (recommended).


## Source code
Expand All @@ -41,8 +41,8 @@ Building requirements:

Step-by-step instructions:

tar xf liblcf-0.5.2.tar.xz # unpack the tarball
cd liblcf-0.5.2 # enter in the package directory
tar xf liblcf-0.5.3.tar.xz # unpack the tarball
cd liblcf-0.5.3 # enter in the package directory
./configure --prefix /usr # find libraries, set options
make # compile the library
sudo make install # install system-wide
Expand Down
4 changes: 2 additions & 2 deletions builds/autoconf/m4/ax_pkg_check_modules.m4
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# ===========================================================================
# http://www.gnu.org/software/autoconf-archive/ax_pkg_check_modules.html
# https://www.gnu.org/software/autoconf-archive/ax_pkg_check_modules.html
# ===========================================================================
#
# SYNOPSIS
Expand Down Expand Up @@ -50,7 +50,7 @@
# and this notice are preserved. This file is offered as-is, without any
# warranty.

#serial 2
#serial 3

AC_DEFUN([AX_PKG_CHECK_MODULES],[
m4_define([ax_package_requires],
Expand Down
2 changes: 1 addition & 1 deletion builds/cmake/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
cmake_minimum_required(VERSION 2.8)

project(liblcf C CXX)
set(PACKAGE_VERSION 0.5.2)
set(PACKAGE_VERSION 0.5.3)

set(EXECUTABLE_OUTPUT_PATH ${CMAKE_CURRENT_BINARY_DIR}/bin)
set(LIBRARY_OUTPUT_PATH ${CMAKE_CURRENT_BINARY_DIR}/lib)
Expand Down
4 changes: 2 additions & 2 deletions configure.ac
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@
# Process this file with autoconf to produce a configure script.

AC_PREREQ([2.69])
AC_INIT([liblcf],[0.5.2],[https://github.com/EasyRPG/liblcf/issues],[liblcf],[https://easyrpg.org/])
AC_INIT([liblcf],[0.5.3],[https://github.com/EasyRPG/liblcf/issues],[liblcf],[https://easyrpg.org/])

AC_CONFIG_AUX_DIR([builds/autoconf])
AM_INIT_AUTOMAKE([1.11.4 foreign subdir-objects -Wall -Werror])
AM_INIT_AUTOMAKE([1.11.4 foreign subdir-objects -Wall dist-xz])
AM_MAINTAINER_MODE([enable])
AM_SILENT_RULES([yes])

Expand Down

0 comments on commit 887f534

Please sign in to comment.