Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 248898 | Differences between
and this patch

Collapse All | Expand All

(-)iscan-2.20.0_old/lib/basic-imgstream.cc (-2 / +2 lines)
Lines 117-123 Link Here
117
  }
117
  }
118
118
119
  // forward declarations
119
  // forward declarations
120
  static int reversionsort (const void*, const void*);
120
  static int reversionsort (const dirent**, const dirent**);
121
  int selector (const dirent *);
121
  int selector (const dirent *);
122
122
123
  //!
123
  //!
Lines 270-276 Link Here
270
270
271
  //! The C library's versionsort() function in reverse.
271
  //! The C library's versionsort() function in reverse.
272
  static int
272
  static int
273
  reversionsort (const void *a, const void *b)
273
  reversionsort (const dirent **a, const dirent **b)
274
  {
274
  {
275
    return versionsort (b, a);
275
    return versionsort (b, a);
276
  }
276
  }
(-)iscan-2.20.0_old/non-free/Makefile.in (-1 / +1 lines)
Lines 415-421 Link Here
415
@ENABLE_FRONTEND_TRUE@	-rm -f $@
415
@ENABLE_FRONTEND_TRUE@	-rm -f $@
416
@ENABLE_FRONTEND_TRUE@	case $(ISCAN_HOST_CPU) in \
416
@ENABLE_FRONTEND_TRUE@	case $(ISCAN_HOST_CPU) in \
417
@ENABLE_FRONTEND_TRUE@	  i?86)		arch=i386;; \
417
@ENABLE_FRONTEND_TRUE@	  i?86)		arch=i386;; \
418
@ENABLE_FRONTEND_TRUE@	  x86_64)	arch=x86_64;; \
418
@ENABLE_FRONTEND_TRUE@	  x86_64)	arch=x86_64.c2;; \
419
@ENABLE_FRONTEND_TRUE@	  *)	echo "unsupported architecture" 1>&2; \
419
@ENABLE_FRONTEND_TRUE@	  *)	echo "unsupported architecture" 1>&2; \
420
@ENABLE_FRONTEND_TRUE@		exit 1;; \
420
@ENABLE_FRONTEND_TRUE@		exit 1;; \
421
@ENABLE_FRONTEND_TRUE@	esac; \
421
@ENABLE_FRONTEND_TRUE@	esac; \

Return to bug 248898