~ubuntu-branches/ubuntu/utopic/coreutils/utopic-proposed

« back to all changes in this revision

Viewing changes to debian/patches/99_factor_long_long.dpatch

  • Committer: Colin Watson
  • Date: 2013-10-30 15:48:33 UTC
  • mfrom: (8.3.5 sid)
  • Revision ID: cjwatson@canonical.com-20131030154833-xdt6e1yfffqom1c4
merge from Debian 8.21-1

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
#! /bin/sh /usr/share/dpatch/dpatch-run
2
 
## 99_factor_long_long.dpatch by  <schepler@debian.org>
3
 
##
4
 
## All lines beginning with `## DP:' are a description of the patch.
5
 
## DP: No description.
6
 
 
7
 
@DPATCH@
8
 
diff -urNad '--exclude=CVS' '--exclude=.svn' '--exclude=.git' '--exclude=.arch' '--exclude=.hg' '--exclude=_darcs' '--exclude=.bzr' coreutils-8.20~/src/factor.c coreutils-8.20/src/factor.c
9
 
--- coreutils-8.20~/src/factor.c        2012-10-23 10:14:12.000000000 -0400
10
 
+++ coreutils-8.20/src/factor.c 2012-11-18 09:32:47.226066980 -0500
11
 
@@ -138,7 +138,7 @@
12
 
 typedef unsigned char UQItype;
13
 
 typedef          long SItype;
14
 
 typedef unsigned long int USItype;
15
 
-#  if HAVE_LONG_LONG
16
 
+#  if HAVE_LONG_LONG_INT
17
 
 typedef long long int DItype;
18
 
 typedef unsigned long long int UDItype;
19
 
 #  else /* Assume `long' gives us a wide enough type.  Needed for hppa2.0w.  */