Skip to content

Commit

Permalink
Update to 0.23
Browse files Browse the repository at this point in the history
  • Loading branch information
vslavik committed Dec 6, 2024
1 parent 7f1743d commit 1ab0c6e
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 42 deletions.
2 changes: 1 addition & 1 deletion Gettext.Tools.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<package xmlns="http://schemas.microsoft.com/packaging/2011/08/nuspec.xsd">
<metadata>
<id>Gettext.Tools</id>
<version>0.22.5</version>
<version>0.23</version>
<title>GNU gettext tools for Windows</title>
<authors>Vaclav Slavik</authors>
<license type="expression">GPL-3.0-or-later</license>
Expand Down
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@

GETTEXT_VERSION = 0.22.5
GETTEXT_VERSION = 0.23
LIBICONV_VERSION = 1.17

# version of the gettext-tools-windows package; usually same as GETTEXT_VERSION
Expand Down Expand Up @@ -126,7 +126,7 @@ dist: stage
cp -a $(RUNTIME_DIR)/libstdc++*.dll $(DISTDIR)/bin
cp -a $(RUNTIME_DIR)/libgomp*.dll $(DISTDIR)/bin
cp -a $(RUNTIME_DIR)/libwinpthread*.dll $(DISTDIR)/bin
cp -a $(USR_LOCAL)/lib/gettext/cldr-plurals.exe $(DISTDIR)/lib/gettext
cp -a $(USR_LOCAL)/libexec/gettext/cldr-plurals.exe $(DISTDIR)/lib/gettext
cp -a $(USR_LOCAL)/share/gettext-$(GETTEXT_VERSION) $(DISTDIR)/share/gettext
cp -a $(USR_LOCAL)/share/gettext/styles $(DISTDIR)/share/gettext/
cp -a $(USR_LOCAL)/share/locale $(DISTDIR)/share/
Expand Down

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,18 @@ From: Michele Locati <michele@locati.it>
Date: Fri, 10 May 2019 11:11:02 +0200
Subject: [PATCH] Fix compilation of pthread_sigmask.c

--- a/gettext-tools/gnulib-tests/pthread_sigmask.c
+++ b/gettext-tools/gnulib-tests/pthread_sigmask.c
@@ -30,9 +30,9 @@
--- a/gettext-tools/tests/gnulib-lib/pthread_sigmask.c
+++ b/gettext-tools/tests/gnulib-lib/pthread_sigmask.c
@@ -19,6 +19,8 @@
/* Specification. */
#include <signal.h>

+extern int sigprocmask(int how, const sigset_t *set, sigset_t *oldset);
+
#include <errno.h>
#include <stddef.h>

@@ -30,9 +32,9 @@
# include <unistd.h>
#endif

Expand Down

0 comments on commit 1ab0c6e

Please # to comment.