~ubuntu-branches/debian/jessie/make-dfsg/jessie

« back to all changes in this revision

Viewing changes to config.h.in

  • Committer: Bazaar Package Importer
  • Author(s): Manoj Srivastava
  • Date: 2010-03-21 12:42:55 UTC
  • Revision ID: james.westby@ubuntu.com-20100321124255-ukc2euswom49jf2z
Tags: 3.81-8
* New bug fixing release.
* [a6f53b8]: [topic--overlap-strcpy-fix]: make corrupts commands with
  latest eglibc make uses strcpy() on overlapping strings, recent
  (e)glibc doesn't tolerate this. strcpy is not defined to work on
  overlapping regions. This is upstream bug
  https://savannah.gnu.org/bugs/index.php?29253 The fix comes thanks
  to Roderich Schupp and Max Bowsher.
  Bug fix: "make corrupts commands with latest eglibc (strcpy of
  overlapping strings)", thanks to Roderich Schupp    (Closes: #568665).
* Bug fix: "make package built from source missing libc6 dependency",
  thanks to Daniel Schepler                           (Closes: #569924).
* Bug fix: "Please build-depend on autopoint", thanks to Santiago Vila
                                                       (Closes: #572474).

Show diffs side-by-side

added added

removed removed

Lines of Context:
239
239
/* Define to 1 if you have the `strsignal' function. */
240
240
#undef HAVE_STRSIGNAL
241
241
 
242
 
/* Define to 1 if `n_un.n_name' is member of `struct nlist'. */
 
242
/* Define to 1 if `n_un.n_name' is a member of `struct nlist'. */
243
243
#undef HAVE_STRUCT_NLIST_N_UN_N_NAME
244
244
 
245
245
/* Define to 1 if you have the <sys/dir.h> header file, and it defines `DIR'.
335
335
/* Define to the one symbol short name of this package. */
336
336
#undef PACKAGE_TARNAME
337
337
 
 
338
/* Define to the home page for this package. */
 
339
#undef PACKAGE_URL
 
340
 
338
341
/* Define to the version of this package. */
339
342
#undef PACKAGE_VERSION
340
343
 
350
353
/* Define this if the SCCS 'get' command understands the '-G<file>' option. */
351
354
#undef SCCS_GET_MINUS_G
352
355
 
353
 
/* Define to 1 if the `setvbuf' function takes the buffering type as its
354
 
   second argument and the buffer pointer as the third, as on System V before
355
 
   release 3. */
356
 
#undef SETVBUF_REVERSED
357
 
 
358
356
/* If using the C implementation of alloca, define if you know the
359
357
   direction of stack growth for your system; otherwise it will be
360
 
   automatically deduced at run-time.
 
358
   automatically deduced at runtime.
361
359
        STACK_DIRECTION > 0 => grows toward higher addresses
362
360
        STACK_DIRECTION < 0 => grows toward lower addresses
363
361
        STACK_DIRECTION = 0 => direction of growth unknown */
385
383
   <sys/cpustats.h>. */
386
384
#undef UMAX4_3
387
385
 
 
386
/* Enable extensions on AIX 3, Interix.  */
 
387
#ifndef _ALL_SOURCE
 
388
# undef _ALL_SOURCE
 
389
#endif
 
390
/* Enable GNU extensions on systems that have them.  */
 
391
#ifndef _GNU_SOURCE
 
392
# undef _GNU_SOURCE
 
393
#endif
 
394
/* Enable threading extensions on Solaris.  */
 
395
#ifndef _POSIX_PTHREAD_SEMANTICS
 
396
# undef _POSIX_PTHREAD_SEMANTICS
 
397
#endif
 
398
/* Enable extensions on HP NonStop.  */
 
399
#ifndef _TANDEM_SOURCE
 
400
# undef _TANDEM_SOURCE
 
401
#endif
 
402
/* Enable general extensions on Solaris.  */
 
403
#ifndef __EXTENSIONS__
 
404
# undef __EXTENSIONS__
 
405
#endif
 
406
 
 
407
 
388
408
/* Version number of package */
389
409
#undef VERSION
390
410
 
394
414
/* Define if using the dmalloc debugging malloc package */
395
415
#undef WITH_DMALLOC
396
416
 
397
 
/* Define to 1 if on AIX 3.
398
 
   System headers sometimes define this.
399
 
   We just want to avoid a redefinition error message.  */
400
 
#ifndef _ALL_SOURCE
401
 
# undef _ALL_SOURCE
402
 
#endif
403
 
 
404
417
/* Number of bits in a file offset, on hosts where this is settable. */
405
418
#undef _FILE_OFFSET_BITS
406
419