~ubuntu-branches/ubuntu/saucy/syslog-ng/saucy

« back to all changes in this revision

Viewing changes to syslog-ng/syslog-ng-ctl.c

  • Committer: Package Import Robot
  • Author(s): Serge Hallyn
  • Date: 2011-11-15 08:48:02 UTC
  • mfrom: (26.1.2 sid)
  • Revision ID: package-import@ubuntu.com-20111115084802-n0jegdnjlxk0m26s
Tags: 3.3.1.dfsg-1ubuntu1
* debian/control: remove libsystemd-daemon-dev build-depends
* debian/rules: remove --with-systemdsystemunitdir from
  override_dh_auto_configure.

Show diffs side-by-side

added added

removed removed

Lines of Context:
255
255
      if (strcmp(modes[mode].mode, mode_string) == 0)
256
256
        {
257
257
          ctx = g_option_context_new(mode_string);
 
258
          #if GLIB_CHECK_VERSION (2, 12, 0)
258
259
          g_option_context_set_summary(ctx, modes[mode].description);
 
260
          #endif
259
261
          g_option_context_add_main_entries(ctx, modes[mode].options, NULL);
260
262
          g_option_context_add_main_entries(ctx, slng_options, NULL);
261
263
          break;