[csw-devel] SF.net SVN: gar:[9848] csw/mgar/pkg/tmux/trunk

trygvis at users.sourceforge.net trygvis at users.sourceforge.net
Tue May 11 14:07:26 CEST 2010


Revision: 9848
          http://gar.svn.sourceforge.net/gar/?rev=9848&view=rev
Author:   trygvis
Date:     2010-05-11 12:07:26 +0000 (Tue, 11 May 2010)

Log Message:
-----------
tmux: Patching stdint.h -> sys/inttypes.h

Modified Paths:
--------------
    csw/mgar/pkg/tmux/trunk/Makefile
    csw/mgar/pkg/tmux/trunk/checksums

Added Paths:
-----------
    csw/mgar/pkg/tmux/trunk/files/0000-stdint.patch

Modified: csw/mgar/pkg/tmux/trunk/Makefile
===================================================================
--- csw/mgar/pkg/tmux/trunk/Makefile	2010-05-11 11:43:50 UTC (rev 9847)
+++ csw/mgar/pkg/tmux/trunk/Makefile	2010-05-11 12:07:26 UTC (rev 9848)
@@ -7,6 +7,7 @@
 SF_PROJ = $(GARNAME)
 MASTER_SITES = $(SF_MIRRORS)
 DISTFILES  = $(GARNAME)-$(GARVERSION).tar.gz
+PATCHFILES = 0000-stdint.patch
 
 # We define upstream file regex so we can be notifed of new upstream software release
 UFILES_REGEX = -(\d+(?:\.\d+)*).tar.gz

Modified: csw/mgar/pkg/tmux/trunk/checksums
===================================================================
--- csw/mgar/pkg/tmux/trunk/checksums	2010-05-11 11:43:50 UTC (rev 9847)
+++ csw/mgar/pkg/tmux/trunk/checksums	2010-05-11 12:07:26 UTC (rev 9848)
@@ -1 +1,2 @@
+02d06d80759e841c396058406c25ca58  0000-stdint.patch
 748fbe7bb5f86812e19bd6005ff21a5a  tmux-1.2.tar.gz

Added: csw/mgar/pkg/tmux/trunk/files/0000-stdint.patch
===================================================================
--- csw/mgar/pkg/tmux/trunk/files/0000-stdint.patch	                        (rev 0)
+++ csw/mgar/pkg/tmux/trunk/files/0000-stdint.patch	2010-05-11 12:07:26 UTC (rev 9848)
@@ -0,0 +1,75 @@
+Only in tmux-1.2-fixed: .Makefile.swp
+Only in tmux-1.2-fixed: config.h
+Only in tmux-1.2-fixed: config.mk
+diff -r -u work/build-isa-i386/tmux-1.2/input-keys.c tmux-1.2-fixed/input-keys.c
+--- work/build-isa-i386/tmux-1.2/input-keys.c	2009-12-04 23:14:47.000000000 +0100
++++ tmux-1.2-fixed/input-keys.c	2010-05-11 14:01:19.197440406 +0200
+@@ -18,7 +18,7 @@
+ 
+ #include <sys/types.h>
+ 
+-#include <stdint.h>
++#include <sys/inttypes.h>
+ #include <stdlib.h>
+ #include <string.h>
+ 
+diff -r -u work/build-isa-i386/tmux-1.2/input.c tmux-1.2-fixed/input.c
+--- work/build-isa-i386/tmux-1.2/input.c	2010-02-08 19:32:34.000000000 +0100
++++ tmux-1.2-fixed/input.c	2010-05-11 14:01:19.202535746 +0200
+@@ -18,7 +18,7 @@
+ 
+ #include <sys/types.h>
+ 
+-#include <stdint.h>
++#include <sys/inttypes.h>
+ #include <stdlib.h>
+ #include <string.h>
+ 
+diff -r -u work/build-isa-i386/tmux-1.2/osdep-freebsd.c tmux-1.2-fixed/osdep-freebsd.c
+--- work/build-isa-i386/tmux-1.2/osdep-freebsd.c	2009-08-09 20:00:45.000000000 +0200
++++ tmux-1.2-fixed/osdep-freebsd.c	2010-05-11 14:01:19.190049473 +0200
+@@ -24,7 +24,7 @@
+ 
+ #include <err.h>
+ #include <errno.h>
+-#include <stdint.h>
++#include <sys/inttypes.h>
+ #include <stdlib.h>
+ #include <string.h>
+ #include <unistd.h>
+diff -r -u work/build-isa-i386/tmux-1.2/tmux.h tmux-1.2-fixed/tmux.h
+--- work/build-isa-i386/tmux-1.2/tmux.h	2010-03-08 16:02:07.000000000 +0100
++++ tmux-1.2-fixed/tmux.h	2010-05-11 14:01:19.191746514 +0200
+@@ -31,7 +31,7 @@
+ #include <limits.h>
+ #include <signal.h>
+ #include <stdarg.h>
+-#include <stdint.h>
++#include <sys/inttypes.h>
+ #include <stdio.h>
+ #include <termios.h>
+ 
+diff -r -u work/build-isa-i386/tmux-1.2/window.c tmux-1.2-fixed/window.c
+--- work/build-isa-i386/tmux-1.2/window.c	2010-02-08 19:10:07.000000000 +0100
++++ tmux-1.2-fixed/window.c	2010-05-11 14:01:19.186240214 +0200
+@@ -24,7 +24,7 @@
+ #include <fnmatch.h>
+ #include <pwd.h>
+ #include <signal.h>
+-#include <stdint.h>
++#include <sys/inttypes.h>
+ #include <stdlib.h>
+ #include <string.h>
+ #include <termios.h>
+diff -r -u work/build-isa-i386/tmux-1.2/xmalloc.c tmux-1.2-fixed/xmalloc.c
+--- work/build-isa-i386/tmux-1.2/xmalloc.c	2009-10-29 00:12:38.000000000 +0100
++++ tmux-1.2-fixed/xmalloc.c	2010-05-11 14:01:19.179268582 +0200
+@@ -20,7 +20,7 @@
+ 
+ #include <errno.h>
+ #include <libgen.h>
+-#include <stdint.h>
++#include <sys/inttypes.h>
+ #include <stdlib.h>
+ #include <string.h>
+ 


This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.


More information about the devel mailing list