Thread [Windows] Programm um patch / diff anzuwenden? (10 answers)
Opened by pktm at 2011-01-07 16:03

pktm
 2011-01-07 16:03
#144189 #144189
User since
2003-08-07
2921 Artikel
BenutzerIn
[Homepage]
user image
Hallo!

Gibt es ein Programm bei Windows, mit dem man Dateien für Patches / diffs auf einen beliebige Datei anwenden kann?

Ich hab hier gerade z.B. sowas bekommen:
Code: (dl )
1
2
3
4
5
6
7
8
9
10
11
12
13
--- include/apricot.h	6 Nov 2008 10:54:37 -0000	1.193
+++ include/apricot.h 7 Jan 2011 13:56:37 -0000
@@ -337,6 +337,10 @@
typedef unsigned int Handle;
#elif PTRSIZE==SHORTSIZE
typedef unsigned short Handle;
+#elif defined(HAS_LONG_LONG) && PTRSIZE==LONGLONGSIZE
+typedef unsigned long long Handle;
+#elif defined(HAS_QUAD) && PTRSIZE==8
+typedef Uquad_t Handle;
#else
#error "Cannot find adequate integer type"
#endif


Und das soll automatisch die Datei apricot.h ändern.

Mich interessiert jetzt halt weniger das Gelächter von irgendwelchen Linux-Freaks, die ja "ganz einfach" ihr Kommandozeilentool auf Ubuntu ausführen können, sondern was es dafür auf Windows gibt. Ich hab hier Windows 7 Pro x64.

Grüße, pktm
http://www.intergastro-service.de (mein erstes CMS :) )

View full thread [Windows] Programm um patch / diff anzuwenden?