]> git.saurik.com Git - wxWidgets.git/commitdiff
Added files to make patch.
authorJulian Smart <julian@anthemion.co.uk>
Thu, 11 Nov 1999 10:59:37 +0000 (10:59 +0000)
committerJulian Smart <julian@anthemion.co.uk>
Thu, 11 Nov 1999 10:59:37 +0000 (10:59 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@4471 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

distrib/msw/generic.rsp
distrib/msw/patch.rsp [new file with mode: 0644]
distrib/msw/zippatch.bat [new file with mode: 0755]

index 2df0c09ba17de5ff53e35a9f28067ff7d6d56b76..60246b5f9d6a67d16a000aed92a1cefc58779166 100644 (file)
@@ -685,6 +685,7 @@ samples/dnd/*.cpp
 samples/dnd/*.h
 samples/dnd/makefile*
 samples/dnd/*.rc
+samples/dnd/*.wxr
 samples/dnd/*.def
 samples/dnd/*.bmp
 samples/dnd/*.xbm
diff --git a/distrib/msw/patch.rsp b/distrib/msw/patch.rsp
new file mode 100644 (file)
index 0000000..11d59bf
--- /dev/null
@@ -0,0 +1,3 @@
+include/wx/wxchar.h
+include/wx/msw/setup.h
+samples/dnd/*.wxr
diff --git a/distrib/msw/zippatch.bat b/distrib/msw/zippatch.bat
new file mode 100755 (executable)
index 0000000..77ad4ae
--- /dev/null
@@ -0,0 +1,36 @@
+@echo off
+rem Zip up a patch file
+set src=%wxwin
+set dest=%src\deliver
+set wise=0
+
+Rem Set this to the required patch version
+set version=01
+
+if "%src" == "" goto usage
+if "%dest" == "" goto usage
+echo About to archive patch%version%.zip
+echo   From   %src
+echo   To     %dest
+if "%wise" == "1" echo with WISE setup creation.
+echo CTRL-C if this is not correct.
+pause
+
+erase %dest\patch*.zip
+
+cd %src
+echo Zipping...
+
+zip32 -@ %dest\patch%version%.zip < %src\distrib\msw\patch.rsp
+echo wxWindows patch archived.
+
+cd %dest
+
+goto end
+
+:usage
+echo DOS wxWindows patch distribution.
+echo.
+echo Usage: zippatch
+
+:end