~ubuntu-branches/debian/sid/ircd-hybrid/sid

« back to all changes in this revision

Viewing changes to libltdl/libltdl/lt__glibc.h

  • Committer: Package Import Robot
  • Author(s): Dominic Hargreaves
  • Date: 2015-04-19 15:53:09 UTC
  • mfrom: (1.2.13)
  • Revision ID: package-import@ubuntu.com-20150419155309-06y59x2at2ax5ou3
Tags: 1:8.2.7+dfsg.1-1
* Remove Suggests: hybserv since it doesn't really work with
  ircd-hybrid 8 and above
* New upstream release
  - update debian/copyright with minor changes
  - update config files from new reference.conf
  - fixes DoS from localhost clients (Closes: #782859)
  - supports SSL certficate chaining (Closes: #769741)
* Debconf configuration script no longer ignores the result of
  upgrade questions (Closes: #779082)
* Don't display upgrade warnings on new installs (Closes: #782883)
* Add NEWS item about updated configuration

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
/* lt__glibc.h -- support for non glibc environments
2
2
 
3
 
   Copyright (C) 2004, 2006, 2007 Free Software Foundation, Inc.
 
3
   Copyright (C) 2004, 2006-2007, 2011-2015 Free Software Foundation,
 
4
   Inc.
4
5
   Written by Gary V. Vaughan, 2004
5
6
 
6
7
   NOTE: The canonical source of this file is maintained with the
28
29
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301  USA
29
30
*/
30
31
 
31
 
#if !defined(LT__GLIBC_H)
 
32
#if !defined LT__GLIBC_H
32
33
#define LT__GLIBC_H 1
33
34
 
34
 
#if defined(LT_CONFIG_H)
 
35
#if defined LT_CONFIG_H
35
36
#  include LT_CONFIG_H
36
37
#else
37
38
#  include <config.h>
38
39
#endif
39
40
 
40
 
#if !defined(HAVE_ARGZ_H) || !defined(HAVE_WORKING_ARGZ)
 
41
#if !defined HAVE_ARGZ_H || !defined HAVE_WORKING_ARGZ
41
42
/* Redefine any glibc symbols we reimplement to import the
42
43
   implementations into our lt__ namespace so we don't ever
43
44
   clash with the system library if our clients use argz_*
52
53
#  define argz_next             lt__argz_next
53
54
#  undef  argz_stringify
54
55
#  define argz_stringify        lt__argz_stringify
55
 
#endif
 
56
 
 
57
#  include <lt__argz.h>
 
58
 
 
59
#else
56
60
 
57
61
#ifdef __cplusplus
58
62
extern "C" {
64
68
}
65
69
#endif
66
70
 
 
71
#endif /*!defined HAVE_ARGZ_H || !defined HAVE_WORKING_ARGZ*/
 
72
 
67
73
# define slist_concat   lt__slist_concat
68
74
# define slist_cons     lt__slist_cons
69
75
# define slist_delete   lt__slist_delete
80
86
 
81
87
#include <slist.h>
82
88
 
83
 
#endif /*!defined(LT__GLIBC_H)*/
 
89
#endif /*!defined LT__GLIBC_H*/