~ubuntu-branches/ubuntu/trusty/syslog-ng/trusty-proposed

« back to all changes in this revision

Viewing changes to lib/plugin.c

  • Committer: Package Import Robot
  • Author(s): Laszlo Boszormenyi (GCS)
  • Date: 2013-05-26 09:06:21 UTC
  • mfrom: (1.3.11)
  • Revision ID: package-import@ubuntu.com-20130526090621-8z2s0oi21eoljb9x
Tags: 3.3.9-1
* New upstream release.
* Include missed ivykis header (closes: #708793).

Show diffs side-by-side

added added

removed removed

Lines of Context:
30
30
#include <gmodule.h>
31
31
#include <string.h>
32
32
 
 
33
#ifdef _AIX
 
34
#define G_MODULE_SUFFIX "a"
 
35
#endif
 
36
 
33
37
void
34
38
plugin_register(GlobalConfig *cfg, Plugin *p, gint number)
35
39
{
147
151
        break;
148
152
 
149
153
      /* also check if a libtool archive exists (for example in the build directory) */
 
154
#ifndef _AIX
150
155
      dot = strrchr(plugin_module_name, '.');
151
156
      if (dot)
152
157
        {
159
164
        break;
160
165
 
161
166
      /* On AIX the modules in .a files */
162
 
#ifdef _AIX
 
167
#else
163
168
      dot = strrchr(plugin_module_name, '.');
164
169
      if (dot)
165
170
        {