<div dir="ltr"><div>Hey all,</div><div>I *really* don't wanna nag, but are there any issues with these patches that prevent them from being committed to the codebase?</div><div>If that's the case, please feel absolutely free to tell me. :-)</div><div><br></div><div>Sorry and kind regards, Florian<br></div></div><br><div class="gmail_quote"><div dir="ltr" class="gmail_attr">Am Di., 21. Sept. 2021 um 16:55 Uhr schrieb Florian Eder <<a href="mailto:others.meder@gmail.com" target="_blank">others.meder@gmail.com</a>>:<br></div><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex">Basic files and required changes to configure(.ac) to create a stub version<br>
of the robocopy utility<br>
<br>
Signed-off-by: Florian Eder <<a href="mailto:others.meder@gmail.com" target="_blank">others.meder@gmail.com</a>><br>
---<br>
v6: Identical to patch in v5<br>
---<br>
 configure                     |  2 +-<br>
 <a href="http://configure.ac" rel="noreferrer" target="_blank">configure.ac</a>                  |  1 +<br>
 programs/robocopy/Makefile.in |  8 ++++++++<br>
 programs/robocopy/main.c      | 29 +++++++++++++++++++++++++++++<br>
 programs/robocopy/robocopy.rc | 34 ++++++++++++++++++++++++++++++++++<br>
 5 files changed, 73 insertions(+), 1 deletion(-)<br>
 create mode 100644 programs/robocopy/Makefile.in<br>
 create mode 100644 programs/robocopy/main.c<br>
 create mode 100644 programs/robocopy/robocopy.rc<br>
<br>
diff --git a/configure b/configure<br>
index db592f0868d..3a8dee81bbc 100755<br>
--- a/configure<br>
+++ b/configure<br>
@@ -21235,6 +21235,7 @@ wine_fn_config_makefile programs/regedit/tests enable_tests<br>
 wine_fn_config_makefile programs/regini enable_regini<br>
 wine_fn_config_makefile programs/regsvcs enable_regsvcs<br>
 wine_fn_config_makefile programs/regsvr32 enable_regsvr32<br>
+wine_fn_config_makefile programs/robocopy enable_robocopy<br>
 wine_fn_config_makefile programs/rpcss enable_rpcss<br>
 wine_fn_config_makefile programs/rundll.exe16 enable_win16<br>
 wine_fn_config_makefile programs/rundll32 enable_rundll32<br>
@@ -22768,4 +22769,3 @@ IFS="$ac_save_IFS"<br>
 $as_echo "<br>
 $as_me: Finished.  Do '${ac_make}' to compile Wine.<br>
 " >&6<br>
-<br>
diff --git a/<a href="http://configure.ac" rel="noreferrer" target="_blank">configure.ac</a> b/<a href="http://configure.ac" rel="noreferrer" target="_blank">configure.ac</a><br>
index 0bc46a1427b..5bd54cfbba7 100644<br>
--- a/<a href="http://configure.ac" rel="noreferrer" target="_blank">configure.ac</a><br>
+++ b/<a href="http://configure.ac" rel="noreferrer" target="_blank">configure.ac</a><br>
@@ -3959,6 +3959,7 @@ WINE_CONFIG_MAKEFILE(programs/regedit/tests)<br>
 WINE_CONFIG_MAKEFILE(programs/regini)<br>
 WINE_CONFIG_MAKEFILE(programs/regsvcs)<br>
 WINE_CONFIG_MAKEFILE(programs/regsvr32)<br>
+WINE_CONFIG_MAKEFILE(programs/robocopy)<br>
 WINE_CONFIG_MAKEFILE(programs/rpcss)<br>
 WINE_CONFIG_MAKEFILE(programs/rundll.exe16,enable_win16)<br>
 WINE_CONFIG_MAKEFILE(programs/rundll32)<br>
diff --git a/programs/robocopy/Makefile.in b/programs/robocopy/Makefile.in<br>
new file mode 100644<br>
index 00000000000..5a48be3725b<br>
--- /dev/null<br>
+++ b/programs/robocopy/Makefile.in<br>
@@ -0,0 +1,8 @@<br>
+MODULE    = robocopy.exe<br>
+<br>
+EXTRADLLFLAGS = -mconsole -municode -mno-cygwin<br>
+<br>
+C_SRCS = \<br>
+       main.c<br>
+<br>
+RC_SRCS = robocopy.rc<br>
diff --git a/programs/robocopy/main.c b/programs/robocopy/main.c<br>
new file mode 100644<br>
index 00000000000..bbda15f573a<br>
--- /dev/null<br>
+++ b/programs/robocopy/main.c<br>
@@ -0,0 +1,29 @@<br>
+/*<br>
+ * Copyright 2021 Florian Eder<br>
+ *<br>
+ * This library is free software; you can redistribute it and/or<br>
+ * modify it under the terms of the GNU Lesser General Public<br>
+ * License as published by the Free Software Foundation; either<br>
+ * version 2.1 of the License, or (at your option) any later version.<br>
+ *<br>
+ * This library is distributed in the hope that it will be useful,<br>
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of<br>
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU<br>
+ * Lesser General Public License for more details.<br>
+ *<br>
+ * You should have received a copy of the GNU Lesser General Public<br>
+ * License along with this library; if not, write to the Free Software<br>
+ * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA<br>
+ */<br>
+<br>
+#include "wine/debug.h"<br>
+WINE_DEFAULT_DEBUG_CHANNEL(robocopy);<br>
+<br>
+#define WIN32_LEAN_AND_MEAN<br>
+#include <windows.h><br>
+<br>
+int __cdecl wmain(int argc, WCHAR *argv[])<br>
+{<br>
+    WINE_FIXME("robocopy stub");<br>
+    return 1;<br>
+}<br>
diff --git a/programs/robocopy/robocopy.rc b/programs/robocopy/robocopy.rc<br>
new file mode 100644<br>
index 00000000000..edae5b71d86<br>
--- /dev/null<br>
+++ b/programs/robocopy/robocopy.rc<br>
@@ -0,0 +1,34 @@<br>
+/*<br>
+ * Copyright 2021 Florian Eder<br>
+ *<br>
+ * This library is free software; you can redistribute it and/or<br>
+ * modify it under the terms of the GNU Lesser General Public<br>
+ * License as published by the Free Software Foundation; either<br>
+ * version 2.1 of the License, or (at your option) any later version.<br>
+ *<br>
+ * This library is distributed in the hope that it will be useful,<br>
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of<br>
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU<br>
+ * Lesser General Public License for more details.<br>
+ *<br>
+ * You should have received a copy of the GNU Lesser General Public<br>
+ * License along with this library; if not, write to the Free Software<br>
+ * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA<br>
+ */<br>
+<br>
+#include <windef.h><br>
+<br>
+#pragma makedep po<br>
+<br>
+LANGUAGE LANG_NEUTRAL, SUBLANG_NEUTRAL<br>
+<br>
+#define WINE_FILEDESCRIPTION_STR "Wine Robocopy"<br>
+#define WINE_FILENAME_STR "robocopy.exe"<br>
+#define WINE_FILETYPE VFT_APP<br>
+#define WINE_FILEVERSION 5,1,10,1027<br>
+#define WINE_FILEVERSION_STR "5.1.10.1027"<br>
+<br>
+#define WINE_PRODUCTVERSION 5,1,10,1027<br>
+#define WINE_PRODUCTVERSION_STR "XP027"<br>
+<br>
+#include "wine/wine_common_ver.rc"<br>
-- <br>
2.32.0<br>
<br>
</blockquote></div>