Module: wine
Branch: master
Commit: 654bb4a2317198a4c9540f7d59afd14234acb2bc
URL: http://source.winehq.org/git/wine.git/?a=commit;h=654bb4a2317198a4c9540f7d5…
Author: Detlef Riekenberg <wine.dev(a)web.de>
Date: Sun Dec 12 22:48:56 2010 +0100
configure: Ask for the correct development package for gstreamer base plugins.
---
configure | 4 ++--
configure.ac | 2 +-
2 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/configure b/configure
index 4e72097..c1256ba 100755
--- a/configure
+++ b/configure
@@ -10812,9 +10812,9 @@ fi
fi
if test "x$ac_cv_lib_gstapp_0_10_gst_app_buffer_new" != xyes; then :
case "x$with_gstreamer" in
- x) as_fn_append wine_notices "|gstreamer-0.10 ${notice_platform}development files not found, gstreamer support disabled" ;;
+ x) as_fn_append wine_notices "|gstreamer-0.10 base plugins ${notice_platform}development files not found, gstreamer support disabled" ;;
xno) ;;
- *) as_fn_error $? "gstreamer-0.10 ${notice_platform}development files not found, gstreamer support disabled
+ *) as_fn_error $? "gstreamer-0.10 base plugins ${notice_platform}development files not found, gstreamer support disabled
This is an error since --with-gstreamer was requested." "$LINENO" 5 ;;
esac
fi
diff --git a/configure.ac b/configure.ac
index 8ad460d..71c14d3 100644
--- a/configure.ac
+++ b/configure.ac
@@ -1461,7 +1461,7 @@ then
CPPFLAGS="$ac_save_CPPFLAGS"
fi
WINE_NOTICE_WITH(gstreamer,[test "x$ac_cv_lib_gstapp_0_10_gst_app_buffer_new" != xyes],
- [gstreamer-0.10 ${notice_platform}development files not found, gstreamer support disabled])
+ [gstreamer-0.10 base plugins ${notice_platform}development files not found, gstreamer support disabled])
test "x$ac_cv_lib_gstapp_0_10_gst_app_buffer_new" = xyes || enable_winegstreamer=${enable_winegstreamer:-no}
dnl **** Check for ALSA 1.x ****
Module: wine
Branch: master
Commit: d62c6bb77f923bfa3d635f9e484feb78d8c3f78c
URL: http://source.winehq.org/git/wine.git/?a=commit;h=d62c6bb77f923bfa3d635f9e4…
Author: Detlef Riekenberg <wine.dev(a)web.de>
Date: Mon Dec 13 00:04:19 2010 +0100
cmd: Allow GOTO to a label which has a following whitespace, with test.
---
programs/cmd/builtins.c | 14 ++++++++++++--
programs/cmd/tests/test_builtins.cmd | 3 +++
programs/cmd/tests/test_builtins.cmd.exp | 1 +
3 files changed, 16 insertions(+), 2 deletions(-)
diff --git a/programs/cmd/builtins.c b/programs/cmd/builtins.c
index 5ccbb8f..8c3f727 100644
--- a/programs/cmd/builtins.c
+++ b/programs/cmd/builtins.c
@@ -1150,6 +1150,7 @@ void WCMD_give_help (WCHAR *command) {
void WCMD_goto (CMD_LIST **cmdList) {
WCHAR string[MAX_PATH];
+ WCHAR current[MAX_PATH];
/* Do not process any more parts of a processed multipart or multilines command */
if (cmdList) *cmdList = NULL;
@@ -1174,8 +1175,17 @@ void WCMD_goto (CMD_LIST **cmdList) {
SetFilePointer (context -> h, 0, NULL, FILE_BEGIN);
while (WCMD_fgets (string, sizeof(string)/sizeof(WCHAR), context -> h)) {
str = string;
- while (isspaceW(*str)) str++;
- if ((*str == ':') && (lstrcmpiW (++str, paramStart) == 0)) return;
+ while (isspaceW (*str)) str++;
+ if (*str == ':') {
+ DWORD index = 0;
+ str++;
+ while (((current[index] = str[index])) && (!isspaceW (current[index])))
+ index++;
+
+ /* ignore space at the end */
+ current[index] = 0;
+ if (lstrcmpiW (current, paramStart) == 0) return;
+ }
}
WCMD_output (WCMD_LoadMessage(WCMD_NOTARGET));
}
diff --git a/programs/cmd/tests/test_builtins.cmd b/programs/cmd/tests/test_builtins.cmd
index 375b7a1..2b117e4 100644
--- a/programs/cmd/tests/test_builtins.cmd
+++ b/programs/cmd/tests/test_builtins.cmd
@@ -88,3 +88,6 @@ echo goto with a leading space worked
if c==c goto dest3
:dest3
echo goto with a leading tab worked
+if d==d goto dest4
+:dest4@space@
+echo goto with a following space worked
diff --git a/programs/cmd/tests/test_builtins.cmd.exp b/programs/cmd/tests/test_builtins.cmd.exp
index dee2c5b..e4644d3 100644
--- a/programs/cmd/tests/test_builtins.cmd.exp
+++ b/programs/cmd/tests/test_builtins.cmd.exp
@@ -82,3 +82,4 @@ if /I seems to work
goto with no leading space worked
goto with a leading space worked
goto with a leading tab worked
+goto with a following space worked
Module: wine
Branch: master
Commit: 47446593279d16977667648e371582b0d25d9759
URL: http://source.winehq.org/git/wine.git/?a=commit;h=47446593279d16977667648e3…
Author: Michael Stefaniuc <mstefani(a)redhat.de>
Date: Sun Dec 12 23:48:12 2010 +0100
clock: Add the Punjabi translation.
Translation by Jaswinder Singh.
---
programs/clock/Makefile.in | 1 +
programs/clock/Pa.rc | 51 ++++++++++++++++++++++++++++++++++++++++++++
2 files changed, 52 insertions(+), 0 deletions(-)
diff --git a/programs/clock/Makefile.in b/programs/clock/Makefile.in
index 7b674f8..d40906e 100644
--- a/programs/clock/Makefile.in
+++ b/programs/clock/Makefile.in
@@ -27,6 +27,7 @@ RC_SRCS = \
Nl.rc \
No.rc \
Or.rc \
+ Pa.rc \
Pl.rc \
Pt.rc \
Ro.rc \
diff --git a/programs/clock/Pa.rc b/programs/clock/Pa.rc
new file mode 100644
index 0000000..361a6db
--- /dev/null
+++ b/programs/clock/Pa.rc
@@ -0,0 +1,51 @@
+/*
+ * Copyright 1998 Marcel Baur <mbaur(a)g26.ethz.ch>
+ * Copyright 2002 Sylvain Petreolle <spetreolle(a)yahoo.fr>
+ * Cpoyright 2010 Jaswinder Singh
+ * Michael Stefaniuc
+ *
+ * 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
+ */
+
+#include "clock_res.h"
+
+#pragma code_page(65001)
+
+LANGUAGE LANG_PUNJABI, SUBLANG_DEFAULT
+
+MAIN_MENU MENU
+{
+ POPUP "ਜਾਣਕਾਰੀ(&o)" {
+ MENUITEM "ਐਨਾਲਾਗ(&l)", IDM_ANALOG
+ MENUITEM "ਡਿਜ਼ੀਟਲ(&t)", IDM_DIGITAL
+ MENUITEM SEPARATOR
+ MENUITEM "ਫੌਂਟ(&F)...", IDM_FONT
+ MENUITEM SEPARATOR
+ MENUITEM "ਟਾਈਟਲਬਾਰ ਤੋਂ ਬਿਨਾਂ(&W)", IDM_NOTITLE
+ MENUITEM SEPARATOR
+ MENUITEM "ਸਕਿੰਟ(&S)", IDM_SECONDS
+ MENUITEM "ਮਿਤੀ(&D)", IDM_DATE
+ MENUITEM SEPARATOR
+ MENUITEM "ਹਮੇਸ਼ਾ ਉੱਪਰ(&A)", IDM_ONTOP
+ }
+ POPUP "ਜਾਣਕਾਰੀ(&o)" {
+ MENUITEM "ਘੜੀ ਬਾਰੇ(&A)...", IDM_ABOUT
+ }
+}
+
+STRINGTABLE
+{
+ IDS_CLOCK, "ਘੜੀ"
+}
Module: wine
Branch: master
Commit: cddc8e71cc402e2306a87d0315b16b694b4cb62c
URL: http://source.winehq.org/git/wine.git/?a=commit;h=cddc8e71cc402e2306a87d031…
Author: Michael Stefaniuc <mstefani(a)redhat.de>
Date: Sun Dec 12 23:47:59 2010 +0100
clock: Add the Oriya translation.
Translation by Manoj Giri.
---
programs/clock/Makefile.in | 1 +
programs/clock/Or.rc | 51 ++++++++++++++++++++++++++++++++++++++++++++
2 files changed, 52 insertions(+), 0 deletions(-)
diff --git a/programs/clock/Makefile.in b/programs/clock/Makefile.in
index 74d730b..7b674f8 100644
--- a/programs/clock/Makefile.in
+++ b/programs/clock/Makefile.in
@@ -26,6 +26,7 @@ RC_SRCS = \
Ml.rc \
Nl.rc \
No.rc \
+ Or.rc \
Pl.rc \
Pt.rc \
Ro.rc \
diff --git a/programs/clock/Or.rc b/programs/clock/Or.rc
new file mode 100644
index 0000000..d668b9c
--- /dev/null
+++ b/programs/clock/Or.rc
@@ -0,0 +1,51 @@
+/*
+ * Copyright 1998 Marcel Baur <mbaur(a)g26.ethz.ch>
+ * Copyright 2002 Sylvain Petreolle <spetreolle(a)yahoo.fr>
+ * Copyright 2010 Manoj Giri
+ * Michael Stefaniuc
+ *
+ * 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
+ */
+
+#include "clock_res.h"
+
+#pragma code_page(65001)
+
+LANGUAGE LANG_ORIYA, SUBLANG_NEUTRAL
+
+MAIN_MENU MENU
+{
+ POPUP "ସୂଚନା (&o)" {
+ MENUITEM "ଆନାଲଗ (&l)", IDM_ANALOG
+ MENUITEM "ଡିଜିଟାଲ (&)", IDM_DIGITAL
+ MENUITEM SEPARATOR
+ MENUITEM "ଅକ୍ଷରରୂପ (&F)...", IDM_FONT
+ MENUITEM SEPARATOR
+ MENUITEM "ଶୀର୍ଷକ ପଟି ବିନା (&W)", IDM_NOTITLE
+ MENUITEM SEPARATOR
+ MENUITEM "ସେକଣ୍ଡ (&S)", IDM_SECONDS
+ MENUITEM "ତାରିଖ (&D)", IDM_DATE
+ MENUITEM SEPARATOR
+ MENUITEM "ସର୍ବଦା ଉପରେ (&A)", IDM_ONTOP
+ }
+ POPUP "ସୂଚନା (&o)" {
+ MENUITEM "ଘଡ଼ି ବିଷୟରେ (&A)...", IDM_ABOUT
+ }
+}
+
+STRINGTABLE
+{
+ IDS_CLOCK, "ଘଡ଼ି"
+}
Module: wine
Branch: master
Commit: f845a7f05fde1388cefe14c6be96e4d6bca58da3
URL: http://source.winehq.org/git/wine.git/?a=commit;h=f845a7f05fde1388cefe14c6b…
Author: Michael Stefaniuc <mstefani(a)redhat.de>
Date: Sun Dec 12 23:48:27 2010 +0100
clock: Add the Telugu translation.
Translation by Krishnababu Krothapalli.
---
programs/clock/Makefile.in | 1 +
programs/clock/Te.rc | 51 ++++++++++++++++++++++++++++++++++++++++++++
2 files changed, 52 insertions(+), 0 deletions(-)
diff --git a/programs/clock/Makefile.in b/programs/clock/Makefile.in
index dc89086..74d730b 100644
--- a/programs/clock/Makefile.in
+++ b/programs/clock/Makefile.in
@@ -34,6 +34,7 @@ RC_SRCS = \
Sk.rc \
Sr.rc \
Sv.rc \
+ Te.rc \
Th.rc \
Tr.rc \
Uk.rc \
diff --git a/programs/clock/Te.rc b/programs/clock/Te.rc
new file mode 100644
index 0000000..ed90884
--- /dev/null
+++ b/programs/clock/Te.rc
@@ -0,0 +1,51 @@
+/*
+ * Copyright 1998 Marcel Baur <mbaur(a)g26.ethz.ch>
+ * Copyright 2002 Sylvain Petreolle <spetreolle(a)yahoo.fr>
+ * Copyright 2010 Krishnababu Krothapalli
+ * Michael Stefaniuc
+ *
+ * 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
+ */
+
+#include "clock_res.h"
+
+#pragma code_page(65001)
+
+LANGUAGE LANG_TELUGU, SUBLANG_DEFAULT
+
+MAIN_MENU MENU
+{
+ POPUP "సమాచారము (&o)" {
+ MENUITEM "ఎనలాగ్ (&l)", IDM_ANALOG
+ MENUITEM "డిజిటల్ (&t)", IDM_DIGITAL
+ MENUITEM SEPARATOR
+ MENUITEM "ఫాంట్... (&F)", IDM_FONT
+ MENUITEM SEPARATOR
+ MENUITEM "శీర్షికపట్టీ లేకుండా (&W)", IDM_NOTITLE
+ MENUITEM SEPARATOR
+ MENUITEM "క్షణాలు (&S)", IDM_SECONDS
+ MENUITEM "తేది (&D)", IDM_DATE
+ MENUITEM SEPARATOR
+ MENUITEM "ఎల్లప్పుడూ పైన (&A)", IDM_ONTOP
+ }
+ POPUP "సమాచారము (&o)" {
+ MENUITEM "గడియారం గురించి... (&A)", IDM_ABOUT
+ }
+}
+
+STRINGTABLE
+{
+ IDS_CLOCK, "గడియారం"
+}
Module: wine
Branch: master
Commit: 1cd20f8c48ac9b548ecdf1d81649b93742cd23a7
URL: http://source.winehq.org/git/wine.git/?a=commit;h=1cd20f8c48ac9b548ecdf1d81…
Author: Michael Stefaniuc <mstefani(a)redhat.de>
Date: Sun Dec 12 23:47:42 2010 +0100
clock: Add the Malayalam translation.
Translation by Ani Peter.
---
programs/clock/Makefile.in | 1 +
programs/clock/Ml.rc | 51 ++++++++++++++++++++++++++++++++++++++++++++
2 files changed, 52 insertions(+), 0 deletions(-)
diff --git a/programs/clock/Makefile.in b/programs/clock/Makefile.in
index 757b304..dc89086 100644
--- a/programs/clock/Makefile.in
+++ b/programs/clock/Makefile.in
@@ -23,6 +23,7 @@ RC_SRCS = \
Ja.rc \
Ko.rc \
Lt.rc \
+ Ml.rc \
Nl.rc \
No.rc \
Pl.rc \
diff --git a/programs/clock/Ml.rc b/programs/clock/Ml.rc
new file mode 100644
index 0000000..f20b54e
--- /dev/null
+++ b/programs/clock/Ml.rc
@@ -0,0 +1,51 @@
+/*
+ * Copyright 1998 Marcel Baur <mbaur(a)g26.ethz.ch>
+ * Copyright 2002 Sylvain Petreolle <spetreolle(a)yahoo.fr>
+ * Copyright 2010 Ani Peter
+ * Michael Stefaniuc
+ *
+ * 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
+ */
+
+#include "clock_res.h"
+
+#pragma code_page(65001)
+
+LANGUAGE LANG_MALAYALAM, SUBLANG_NEUTRAL
+
+MAIN_MENU MENU
+{
+ POPUP "വി_വരം" {
+ MENUITEM "_അനലോഗ്", IDM_ANALOG
+ MENUITEM "_ഡിജിറ്റല്", IDM_DIGITAL
+ MENUITEM SEPARATOR
+ MENUITEM "_അക്ഷരസഞ്ചയം...", IDM_FONT
+ MENUITEM SEPARATOR
+ MENUITEM "റ്റൈറ്റില്ബാര് _ഇല്ലാതെ", IDM_NOTITLE
+ MENUITEM SEPARATOR
+ MENUITEM "_സെക്കന്ഡുകള്", IDM_SECONDS
+ MENUITEM "_തീയതി", IDM_DATE
+ MENUITEM SEPARATOR
+ MENUITEM "_എപ്പോഴും മുകളില്", IDM_ONTOP
+ }
+ POPUP "വി_വരം" {
+ MENUITEM "ക്ലോക്കിനെപ്പറ്റി _അറിയുക...", IDM_ABOUT
+ }
+}
+
+STRINGTABLE
+{
+ IDS_CLOCK, "ക്ലോക്ക്"
+}