File: config_sample.h.in

package info (click to toggle)
pupnp 1%3A1.14.20-1
  • links: PTS, VCS
  • area: main
  • in suites: trixie
  • size: 3,440 kB
  • sloc: ansic: 34,488; xml: 1,173; cpp: 573; makefile: 341; sh: 130; python: 51; javascript: 7
file content (21 lines) | stat: -rw-r--r-- 835 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
/*
 * On systems where the size of off_t depends on compile flags, libupnp needs
 * the programs which use it to be built with the same options as itself.
 * This is checked at compile time, but the actual variables (such as
 * _FILE_OFFSET_BITS) are not exported by the library (to avoid surprises in
 * applications).
 * A "normal" application would need to explicitely configure large file
 * support depending on how libupnp was built, using its own configure
 * routines. For the samples, we equivalently let the main libupnp configure
 * create this file.
 */

/* Number of bits in a file offset, on hosts where this is settable. */
#undef _FILE_OFFSET_BITS

/* Define to 1 to make fseeko visible on some hosts (e.g. glibc 2.2). */
#undef _LARGEFILE_SOURCE

/* Define for large files, on AIX-style hosts. */
#undef _LARGE_FILES