Module: website
Branch: master
Commit: cf3467f5cec17cf57eab1d8cf7aa92bac13507c0
URL: http://source.winehq.org/git/website.git/?a=commit;h=cf3467f5cec17cf57eab1d…
Author: Łukasz Wojniłowicz <lukasz.wojnilowicz(a)gmail.com>
Date: Fri Mar 19 20:50:00 2010 +0100
Polish translation for release 1.1.41
---
news/pl/2010031901.xml | 19 +++++++++++++++++++
1 files changed, 19 insertions(+), 0 deletions(-)
diff --git a/news/pl/2010031901.xml b/news/pl/2010031901.xml
new file mode 100644
index 0000000..a47260a
--- /dev/null
+++ b/news/pl/2010031901.xml
@@ -0,0 +1,19 @@
+<news>
+<date>Marzec 19, 2010</date>
+<title>Wydano Wine 1.1.41</title>
+<body>
+<p> Wydanie rozwojowe Wine 1.1.41 jest już dostępne.</p>
+<p> <a href="{$root}/announce/1.1.41">Co nowego</a> w tym wydaniu:
+<ul>
+ <li>Szeroka gama ulepszeń w Direct3D.</li>
+ <li>Wsparcie dla algorytmów SHA-256, SHA-384, i SHA-512.</li>
+ <li>Liczne poprawki w MSHTML.</li>
+ <li>Wsparcie dla dekodowania mp3 na Mac OS X.</li>
+ <li>Rozmaite ulepszenia w widl.</li>
+ <li>Więcej poprawek w typelib.</li>
+ <li>Ulepszenia w magazynach OLE.</li>
+ <li>Rozmaite poprawki błędów.</li>
+</ul></p>
+<p><p>Źródło jest <a href="http://prdownloads.sourceforge.net/wine/wine-1.1.41.tar.bz2">już dostępne</a>.
+Paczki binarne są w trakcie budowy i ukażą się wkróce w przeznaczonych dla nich <a href="{$root}/download">pobieralniach</a>.
+</p></body></news>
Module: wine
Branch: master
Commit: c058490b69f8b801ca5bc179101933a7717ed559
URL: http://source.winehq.org/git/wine.git/?a=commit;h=c058490b69f8b801ca5bc1791…
Author: Hans Leidekker <hans(a)codeweavers.com>
Date: Tue Mar 23 16:12:11 2010 +0100
dnsapi: _res is per-thread in glibc.
This mirrors Dan Kegel's fix for iphlpapi.
---
dlls/dnsapi/query.c | 8 ++------
dlls/iphlpapi/iphlpapi_main.c | 1 -
2 files changed, 2 insertions(+), 7 deletions(-)
diff --git a/dlls/dnsapi/query.c b/dlls/dnsapi/query.c
index 75e2e33..6014465 100644
--- a/dlls/dnsapi/query.c
+++ b/dlls/dnsapi/query.c
@@ -65,16 +65,12 @@ static CRITICAL_SECTION resolver_cs = { &resolver_cs_debug, -1, 0, 0, 0, 0 };
#define LOCK_RESOLVER() do { EnterCriticalSection( &resolver_cs ); } while (0)
#define UNLOCK_RESOLVER() do { LeaveCriticalSection( &resolver_cs ); } while (0)
-static int resolver_initialised;
-
/* call res_init() just once because of a bug in Mac OS X 10.4 */
+/* call once per thread on systems that have per-thread _res */
static void initialise_resolver( void )
{
- if (!resolver_initialised)
- {
+ if ((_res.options & RES_INIT) == 0)
res_init();
- resolver_initialised = 1;
- }
}
static const char *dns_section_to_str( ns_sect section )
diff --git a/dlls/iphlpapi/iphlpapi_main.c b/dlls/iphlpapi/iphlpapi_main.c
index 8600849..af97390 100644
--- a/dlls/iphlpapi/iphlpapi_main.c
+++ b/dlls/iphlpapi/iphlpapi_main.c
@@ -69,7 +69,6 @@ WINE_DEFAULT_DEBUG_CHANNEL(iphlpapi);
/* call res_init() just once because of a bug in Mac OS X 10.4 */
/* Call once per thread on systems that have per-thread _res. */
-/* FIXME: should do same fix in dnsapi (or use dnsapi here?) */
static void initialise_resolver(void)
{
if ((_res.options & RES_INIT) == 0)
Module: wine
Branch: master
Commit: af68ef68ce26a35b392195f95fba05902302dbdd
URL: http://source.winehq.org/git/wine.git/?a=commit;h=af68ef68ce26a35b392195f95…
Author: Hans Leidekker <hans(a)codeweavers.com>
Date: Tue Mar 23 16:11:44 2010 +0100
dnsapi: Add a version resource.
---
dlls/dnsapi/Makefile.in | 3 +++
dlls/dnsapi/version.rc | 26 ++++++++++++++++++++++++++
2 files changed, 29 insertions(+), 0 deletions(-)
diff --git a/dlls/dnsapi/Makefile.in b/dlls/dnsapi/Makefile.in
index 594db95..61ffe8b 100644
--- a/dlls/dnsapi/Makefile.in
+++ b/dlls/dnsapi/Makefile.in
@@ -15,4 +15,7 @@ C_SRCS = \
query.c \
record.c
+RC_SRCS = \
+ version.rc
+
@MAKE_DLL_RULES@
diff --git a/dlls/dnsapi/version.rc b/dlls/dnsapi/version.rc
new file mode 100644
index 0000000..9f2715f
--- /dev/null
+++ b/dlls/dnsapi/version.rc
@@ -0,0 +1,26 @@
+/*
+ * Copyright 2010 Hans Leidekker
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License as published by the Free Software Foundation; either
+ * version 2.1 of the License, or (at your option) any later version.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
+ */
+
+#define WINE_FILEDESCRIPTION_STR "Wine dnsapi"
+#define WINE_FILENAME_STR "dnsapi.dll"
+#define WINE_FILEVERSION_MAJOR 5
+#define WINE_FILEVERSION_MINOR 2
+#define WINE_FILEVERSION_BUILD 3790
+#define WINE_FILEVERSION_PLATFORMID 4318
+
+#include "wine/wine_common_ver.rc"