Skip to content

Commit d2da9c4

Browse files
committed
Prepare v0.2.109
1 parent b490788 commit d2da9c4

File tree

3 files changed

+21
-13
lines changed

3 files changed

+21
-13
lines changed

Changelog

+8
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
1+
Version 0.2.109
2+
===============
3+
This is a bugfix release
4+
5+
* Remove a gcc warning when compiling boot/psetting.c
6+
* validate_xdg_dir_absolute() allocates a byte short when building the string buffer in one of the code-paths.
7+
* mingw builds expects adplugdb to be located within OCP data directory, not in the same directory as OCP.EXE (initial mingw builds did not have a data directory)
8+
19
Version 0.2.108
210
===============
311
This is a bugfix release

configure

+12-12
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.71 for ocp 0.2.108.
3+
# Generated by GNU Autoconf 2.71 for ocp 0.2.109.
44
#
55
# Report bugs to <[email protected]>.
66
#
@@ -611,8 +611,8 @@ MAKEFLAGS=
611611
# Identity of this package.
612612
PACKAGE_NAME='ocp'
613613
PACKAGE_TARNAME='ocp'
614-
PACKAGE_VERSION='0.2.108'
615-
PACKAGE_STRING='ocp 0.2.108'
614+
PACKAGE_VERSION='0.2.109'
615+
PACKAGE_STRING='ocp 0.2.109'
616616
PACKAGE_BUGREPORT='[email protected]'
617617
PACKAGE_URL=''
618618

@@ -1495,7 +1495,7 @@ if test "$ac_init_help" = "long"; then
14951495
# Omit some internal or obsolete options to make the list less imposing.
14961496
# This message is too long to be a string in the A/UX 3.1 sh.
14971497
cat <<_ACEOF
1498-
\`configure' configures ocp 0.2.108 to adapt to many kinds of systems.
1498+
\`configure' configures ocp 0.2.109 to adapt to many kinds of systems.
14991499

15001500
Usage: $0 [OPTION]... [VAR=VALUE]...
15011501

@@ -1561,7 +1561,7 @@ fi
15611561

15621562
if test -n "$ac_init_help"; then
15631563
case $ac_init_help in
1564-
short | recursive ) echo "Configuration of ocp 0.2.108:";;
1564+
short | recursive ) echo "Configuration of ocp 0.2.109:";;
15651565
esac
15661566
cat <<\_ACEOF
15671567

@@ -1796,7 +1796,7 @@ fi
17961796
test -n "$ac_init_help" && exit $ac_status
17971797
if $ac_init_version; then
17981798
cat <<\_ACEOF
1799-
ocp configure 0.2.108
1799+
ocp configure 0.2.109
18001800
generated by GNU Autoconf 2.71
18011801

18021802
Copyright (C) 2021 Free Software Foundation, Inc.
@@ -2682,7 +2682,7 @@ cat >config.log <<_ACEOF
26822682
This file contains any messages produced by compilers while
26832683
running configure, to aid debugging if configure makes a mistake.
26842684

2685-
It was created by ocp $as_me 0.2.108, which was
2685+
It was created by ocp $as_me 0.2.109, which was
26862686
generated by GNU Autoconf 2.71. Invocation command line was
26872687

26882688
$ $0$ac_configure_args_raw
@@ -3655,20 +3655,20 @@ ac_compiler_gnu=$ac_cv_c_compiler_gnu
36553655

36563656

36573657
cat >>confdefs.h <<_ACEOF
3658-
#define DLLVERSION `printf 0x%04x%02x%02x 0 2 108`
3658+
#define DLLVERSION `printf 0x%04x%02x%02x 0 2 109`
36593659
_ACEOF
36603660

36613661
MAJOR_VERSION=0
36623662

36633663
MINOR_VERSION=2
36643664

3665-
PATCH_VERSION=108
3665+
PATCH_VERSION=109
36663666

36673667
printf "%s\n" "#define OCP_MAJOR_VERSION 0" >>confdefs.h
36683668

36693669
printf "%s\n" "#define OCP_MINOR_VERSION 2" >>confdefs.h
36703670

3671-
printf "%s\n" "#define OCP_PATCH_VERSION 108" >>confdefs.h
3671+
printf "%s\n" "#define OCP_PATCH_VERSION 109" >>confdefs.h
36723672

36733673

36743674

@@ -19331,7 +19331,7 @@ cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1
1933119331
# report actual input values of CONFIG_FILES etc. instead of their
1933219332
# values after options handling.
1933319333
ac_log="
19334-
This file was extended by ocp $as_me 0.2.108, which was
19334+
This file was extended by ocp $as_me 0.2.109, which was
1933519335
generated by GNU Autoconf 2.71. Invocation command line was
1933619336

1933719337
CONFIG_FILES = $CONFIG_FILES
@@ -19395,7 +19395,7 @@ ac_cs_config_escaped=`printf "%s\n" "$ac_cs_config" | sed "s/^ //; s/'/'\\\\\\\\
1939519395
cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
1939619396
ac_cs_config='$ac_cs_config_escaped'
1939719397
ac_cs_version="\\
19398-
ocp config.status 0.2.108
19398+
ocp config.status 0.2.109
1939919399
configured by $0, generated by GNU Autoconf 2.71,
1940019400
with options \\"\$ac_cs_config\\"
1940119401

configure.ac

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
m4_define([MAJOR_VERSION], [0])
22
m4_define([MINOR_VERSION], [2])
3-
m4_define([PATCH_VERSION], [108])
3+
m4_define([PATCH_VERSION], [109])
44
AC_INIT([ocp],[MAJOR_VERSION.MINOR_VERSION.PATCH_VERSION],[[email protected]])
55
AC_DEFINE_UNQUOTED(DLLVERSION, `printf 0x%04x%02x%02x MAJOR_VERSION MINOR_VERSION PATCH_VERSION`)
66
AC_SUBST([MAJOR_VERSION], [MAJOR_VERSION])

0 commit comments

Comments
 (0)