~ubuntu-branches/ubuntu/quantal/recoll/quantal

« back to all changes in this revision

Viewing changes to common/autoconfig.h.in

  • Committer: Package Import Robot
  • Author(s): Kartik Mistry
  • Date: 2012-05-18 10:59:21 UTC
  • mfrom: (1.3.9)
  • Revision ID: package-import@ubuntu.com-20120518105921-6eefevywd67qe3wj
Tags: 1.17.2-1
* New upstream release:
  + Dropped patches: fix-kFreeBSD-ftbfs.patch, recoll_ionice_getpid.patch.
    These are merged with upstream.
  + Refreshed patch: fix-python-install.patch.
* debian/rules, debian/control:
  + Added hardening support.
* debian/copyright:
  + Fixed duplicate Copyright sections.

Show diffs side-by-side

added added

removed removed

Lines of Context:
109
109
#undef _FILE_OFFSET_BITS
110
110
#undef _LARGE_FILES
111
111
 
112
 
#if _FILE_OFFSET_BITS == 64 || defined(__APPLE__) || defined(__OpenBSD__)
 
112
/* The __FreeBSD_kernel__ thing is for debian/kfreebsd. */
 
113
#if _FILE_OFFSET_BITS == 64 || defined(__APPLE__) || defined(__OpenBSD__) ||\
 
114
    defined(__FreeBSD_kernel__)
113
115
#define OFFTPC "%lld"
114
116
#else
115
117
#define OFFTPC "%ld"