Changes of Revision 8
[-] | Changed | mercurial.spec |
x 1
2 License: GPL 3 Group: Development/Tools 4 Source: http://www.selenic.com/mercurial/release/%{name}-%{version}.tar.gz 5 +Patch0: mercurial-inotify.diff 6 URL: http://www.selenic.com/mercurial 7 BuildRoot: /tmp/build.%{name}-%{version}-%{release} 8 9
10 %prep 11 rm -rf $RPM_BUILD_ROOT 12 %setup -q 13 +%patch0 14 15 %build 16 make all 17
18 %{hgext}/convert/*.py* 19 20 %changelog 21 +* Thu Mar 27 2008 Carsten Schoene <cs@linux-administrator.com> 22 +- added mercurial-inotify.diff 23 * Tue Mar 25 2008 Carsten Schoene <cs@linux-administrator.com> 24 - initial build 25 26 |
||
[+] | Added | mercurial-inotify.diff ^ |
@@ -0,0 +1,10 @@ +--- hgext/inotify/linux/_inotify.c.orig 2008-03-27 11:13:17.000000000 +0100 ++++ hgext/inotify/linux/_inotify.c 2008-03-27 11:13:39.000000000 +0100 +@@ -11,6 +11,7 @@ + #include <Python.h> + #include <alloca.h> + #include <sys/inotify.h> ++#include <linux/inotify.h> + #include <stdint.h> + #include <sys/ioctl.h> + #include <unistd.h> |