~ubuntu-branches/debian/jessie/w3m/jessie

« back to all changes in this revision

Viewing changes to .pc/130_siteconf.patch/main.c

  • Committer: Package Import Robot
  • Author(s): Tatsuya Kinoshita
  • Date: 2014-10-15 21:42:52 UTC
  • Revision ID: package-import@ubuntu.com-20141015214252-lnm0ktlm4o2if5xz
Tags: 0.5.3-18
* New patch 340_ssl-init.patch to disable SSLv3 [CVE-2014-3566]
* New patch 350_ambwidth.patch to correct ucs_ambwidth_map
* Update 050_autotools-config.patch with autotools-dev 20140911.1
  (Note: Debian package uses dh addon instead of this patch)
* Update debian/copyright
* Typo fix for Homepage
* Update Standards-Version to 3.9.6
* Update w3mconfig to disable SSLv3 in /etc/w3m/config
* Update 015_debian-version.patch to 0.5.3+debian-18
* Update 900_ChangeLog.patch

Show diffs side-by-side

added added

removed removed

Lines of Context:
317
317
            lock = 0;
318
318
        }
319
319
    }
320
 
#if GC_VERSION_MAJOR >= 7 && GC_VERSION_MINOR >= 2
321
 
    else if (orig_GC_warn_proc = GC_get_warn_proc())
322
 
#else
323
320
    else if (orig_GC_warn_proc)
324
 
#endif
325
321
        orig_GC_warn_proc(msg, arg);
326
322
    else
327
323
        fprintf(stderr, msg, (unsigned long)arg);
850
846
#endif
851
847
 
852
848
#if GC_VERSION_MAJOR >= 7 && GC_VERSION_MINOR >= 2
 
849
    orig_GC_warn_proc = GC_get_warn_proc();
853
850
    GC_set_warn_proc(wrap_GC_warn_proc);
854
851
#else
855
852
    orig_GC_warn_proc = GC_set_warn_proc(wrap_GC_warn_proc);