~ubuntu-branches/ubuntu/quantal/gnutls26/quantal-security

« back to all changes in this revision

Viewing changes to gl/version-etc.h

  • Committer: Package Import Robot
  • Author(s): Andreas Metzler
  • Date: 2011-10-01 15:28:13 UTC
  • mfrom: (12.1.20 sid)
  • Revision ID: package-import@ubuntu.com-20111001152813-yygm1c4cxonfxhzy
Tags: 2.12.11-1
* New upstream version.
  + Allow CA importing of 0 certificates to succeed. Closes: #640639
* Add libp11-kit-dev to libgnutls-dev dependencies. (see #643811)
* [20_guiledocstring.diff] guile: Fix docstring extraction with CPP 4.5+.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
/* Print --version and bug-reporting information in a consistent format.
2
 
   Copyright (C) 1999, 2003, 2005, 2009-2010 Free Software Foundation, Inc.
 
2
   Copyright (C) 1999, 2003, 2005, 2009-2011 Free Software Foundation, Inc.
3
3
 
4
4
   This program is free software: you can redistribute it and/or modify
5
5
   it under the terms of the GNU General Public License as published by
23
23
# include <stdio.h>
24
24
 
25
25
/* The `sentinel' attribute was added in gcc 4.0.  */
26
 
#ifndef ATTRIBUTE_SENTINEL
 
26
#ifndef _GL_ATTRIBUTE_SENTINEL
27
27
# if 4 <= __GNUC__
28
 
#  define ATTRIBUTE_SENTINEL __attribute__ ((__sentinel__))
 
28
#  define _GL_ATTRIBUTE_SENTINEL __attribute__ ((__sentinel__))
29
29
# else
30
 
#  define ATTRIBUTE_SENTINEL /* empty */
 
30
#  define _GL_ATTRIBUTE_SENTINEL /* empty */
31
31
# endif
32
32
#endif
33
33
 
70
70
                         const char *command_name, const char *package,
71
71
                         const char *version,
72
72
                         /* const char *author1, ..., NULL */ ...)
73
 
  ATTRIBUTE_SENTINEL;
 
73
  _GL_ATTRIBUTE_SENTINEL;
74
74
 
75
75
/* Display the usual `Report bugs to' stanza */
76
76
extern void emit_bug_reporting_address (void);