public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-projects commit in portage-utils/libq: hash_fd.c md5_sha1_sum.c
@ 2009-03-27 20:42 Fabian Groffen (grobian)
  0 siblings, 0 replies; 2+ messages in thread
From: Fabian Groffen (grobian) @ 2009-03-27 20:42 UTC (permalink / raw
  To: gentoo-commits

grobian     09/03/27 20:42:25

  Modified:             hash_fd.c md5_sha1_sum.c
  Log:
  use inttypes.h instead of stdint.h for Solaris 9

Revision  Changes    Path
1.6                  portage-utils/libq/hash_fd.c

file : http://sources.gentoo.org/viewcvs.py/gentoo-projects/portage-utils/libq/hash_fd.c?rev=1.6&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-projects/portage-utils/libq/hash_fd.c?rev=1.6&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-projects/portage-utils/libq/hash_fd.c?r1=1.5&r2=1.6

Index: hash_fd.c
===================================================================
RCS file: /var/cvsroot/gentoo-projects/portage-utils/libq/hash_fd.c,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- hash_fd.c	23 May 2007 13:47:31 -0000	1.5
+++ hash_fd.c	27 Mar 2009 20:42:25 -0000	1.6
@@ -23,7 +23,7 @@
 #include <fcntl.h>
 #include <limits.h>
 #include <stdio.h>
-#include <stdint.h>
+#include <inttypes.h>
 #include <stdlib.h>
 #include <string.h>
 #include <unistd.h>



1.5                  portage-utils/libq/md5_sha1_sum.c

file : http://sources.gentoo.org/viewcvs.py/gentoo-projects/portage-utils/libq/md5_sha1_sum.c?rev=1.5&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-projects/portage-utils/libq/md5_sha1_sum.c?rev=1.5&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-projects/portage-utils/libq/md5_sha1_sum.c?r1=1.4&r2=1.5

Index: md5_sha1_sum.c
===================================================================
RCS file: /var/cvsroot/gentoo-projects/portage-utils/libq/md5_sha1_sum.c,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- md5_sha1_sum.c	23 May 2007 13:47:31 -0000	1.4
+++ md5_sha1_sum.c	27 Mar 2009 20:42:25 -0000	1.5
@@ -20,7 +20,7 @@
 #include <fcntl.h>
 #include <limits.h>
 #include <stdio.h>
-#include <stdint.h>
+#include <inttypes.h>
 #include <stdlib.h>
 #include <string.h>
 #include <unistd.h>






^ permalink raw reply	[flat|nested] 2+ messages in thread

* [gentoo-commits] gentoo-projects commit in portage-utils/libq: hash_fd.c md5_sha1_sum.c
@ 2009-09-25 14:58 Fabian Groffen (grobian)
  0 siblings, 0 replies; 2+ messages in thread
From: Fabian Groffen (grobian) @ 2009-09-25 14:58 UTC (permalink / raw
  To: gentoo-commits

grobian     09/09/25 14:58:37

  Modified:             hash_fd.c md5_sha1_sum.c
  Log:
  add guards for inttypes.h for Interix

Revision  Changes    Path
1.7                  portage-utils/libq/hash_fd.c

file : http://sources.gentoo.org/viewcvs.py/gentoo-projects/portage-utils/libq/hash_fd.c?rev=1.7&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-projects/portage-utils/libq/hash_fd.c?rev=1.7&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-projects/portage-utils/libq/hash_fd.c?r1=1.6&r2=1.7

Index: hash_fd.c
===================================================================
RCS file: /var/cvsroot/gentoo-projects/portage-utils/libq/hash_fd.c,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- hash_fd.c	27 Mar 2009 20:42:25 -0000	1.6
+++ hash_fd.c	25 Sep 2009 14:58:37 -0000	1.7
@@ -23,7 +23,9 @@
 #include <fcntl.h>
 #include <limits.h>
 #include <stdio.h>
+#ifndef __INTERIX
 #include <inttypes.h>
+#endif
 #include <stdlib.h>
 #include <string.h>
 #include <unistd.h>



1.6                  portage-utils/libq/md5_sha1_sum.c

file : http://sources.gentoo.org/viewcvs.py/gentoo-projects/portage-utils/libq/md5_sha1_sum.c?rev=1.6&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-projects/portage-utils/libq/md5_sha1_sum.c?rev=1.6&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-projects/portage-utils/libq/md5_sha1_sum.c?r1=1.5&r2=1.6

Index: md5_sha1_sum.c
===================================================================
RCS file: /var/cvsroot/gentoo-projects/portage-utils/libq/md5_sha1_sum.c,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- md5_sha1_sum.c	27 Mar 2009 20:42:25 -0000	1.5
+++ md5_sha1_sum.c	25 Sep 2009 14:58:37 -0000	1.6
@@ -20,7 +20,9 @@
 #include <fcntl.h>
 #include <limits.h>
 #include <stdio.h>
+#ifndef __INTERIX
 #include <inttypes.h>
+#endif
 #include <stdlib.h>
 #include <string.h>
 #include <unistd.h>






^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2009-09-25 14:58 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-03-27 20:42 [gentoo-commits] gentoo-projects commit in portage-utils/libq: hash_fd.c md5_sha1_sum.c Fabian Groffen (grobian)
  -- strict thread matches above, loose matches on Subject: below --
2009-09-25 14:58 Fabian Groffen (grobian)

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox