~ubuntu-branches/ubuntu/quantal/evolution-data-server/quantal

« back to all changes in this revision

Viewing changes to camel/providers/pop3/camel-pop3-settings.c

  • Committer: Package Import Robot
  • Author(s): Mathieu Trudel-Lapierre
  • Date: 2012-07-03 22:41:23 UTC
  • mfrom: (1.1.100)
  • Revision ID: package-import@ubuntu.com-20120703224123-90dydkyfyvff8s0s
Tags: 3.5.3.1-0ubuntu1
* New upstream release 3.5.3.1.
* debian/control:
  - Drop libgconf2-dev from Build-Depends.
  - Bump versions for glib, goa, and libsoup in Build-Depends.
  - Add a Build-Depends on libgcr-3-dev (>= 3.4)
  - Rename packages following upstream SONAME changes.
  - Add Depends on libgnome-keyring-dev to libedataserver1.2-dev.
* debian/rules:
  - Update mkshlibs arguments for libcamel-1.2-38 instead of -33; as it was
    renamed in control due to the soname change.
  - Strip out -Bsymbolic-functions from LDFLAGS.
* Renamed install files in debian/:
  - libcamel-1.2-33.install => libcamel-1.2-38.install
  - libebackend-1.2-2.install => libebackend-1.2-4.install
  - libebook-1.2-13.install => libebook-1.2-17.install
  - libecal-1.2-11.install => libecal-1.2-15.install
  - libedata-book-1.2-13.install => libedata-book-1.2-15.install
  - libedata-cal-1.2-15.install => libedata-cal-1.2-18.install
  - libedataserver-1.2-16.install => libedataserver-1.2-17.install
  - libedataserverui-3.0-1.install => libedataserverui-3.0-4.install
* debian/patches/google_tests_fpic.patch: build tests with -fPIC; otherwise
  build fails.

Show diffs side-by-side

added added

removed removed

Lines of Context:
407
407
{
408
408
        g_return_if_fail (CAMEL_IS_POP3_SETTINGS (settings));
409
409
 
 
410
        if (settings->priv->delete_after_days == delete_after_days)
 
411
                return;
 
412
 
410
413
        settings->priv->delete_after_days = delete_after_days;
411
414
 
412
415
        g_object_notify (G_OBJECT (settings), "delete-after-days");
453
456
{
454
457
        g_return_if_fail (CAMEL_IS_POP3_SETTINGS (settings));
455
458
 
 
459
        if ((settings->priv->delete_expunged ? 1 : 0) == (delete_expunged ? 1 : 0))
 
460
                return;
 
461
 
456
462
        settings->priv->delete_expunged = delete_expunged;
457
463
 
458
464
        g_object_notify (G_OBJECT (settings), "delete-expunged");
495
501
{
496
502
        g_return_if_fail (CAMEL_IS_POP3_SETTINGS (settings));
497
503
 
 
504
        if ((settings->priv->disable_extensions ? 1 : 0) == (disable_extensions ? 1 : 0))
 
505
                return;
 
506
 
498
507
        settings->priv->disable_extensions = disable_extensions;
499
508
 
500
509
        g_object_notify (G_OBJECT (settings), "disable-extensions");
535
544
{
536
545
        g_return_if_fail (CAMEL_IS_POP3_SETTINGS (settings));
537
546
 
 
547
        if ((settings->priv->keep_on_server ? 1 : 0) == (keep_on_server ? 1 : 0))
 
548
                return;
 
549
 
538
550
        settings->priv->keep_on_server = keep_on_server;
539
551
 
540
552
        g_object_notify (G_OBJECT (settings), "keep-on-server");
573
585
{
574
586
        g_return_if_fail (CAMEL_IS_POP3_SETTINGS (settings));
575
587
 
 
588
        if ((settings->priv->auto_fetch ? 1 : 0) == (auto_fetch ? 1 : 0))
 
589
                return;
 
590
 
576
591
        settings->priv->auto_fetch = auto_fetch;
577
592
 
578
593
        g_object_notify (G_OBJECT (settings), "auto-fetch");
611
626
{
612
627
        g_return_if_fail (CAMEL_IS_POP3_SETTINGS (settings));
613
628
 
 
629
        if ((settings->priv->mobile_mode ? 1 : 0) == (mobile_mode ? 1 : 0))
 
630
                return;
 
631
 
614
632
        settings->priv->mobile_mode = mobile_mode;
615
633
 
616
634
        g_object_notify (G_OBJECT (settings), "mobile-mode");
649
667
{
650
668
        g_return_if_fail (CAMEL_IS_POP3_SETTINGS (settings));
651
669
 
 
670
        if ((settings->priv->batch_fetch_count ? 1 : 0) == (batch_fetch_count ? 1 : 0))
 
671
                return;
 
672
 
652
673
        settings->priv->batch_fetch_count = batch_fetch_count;
653
674
 
654
675
        g_object_notify (G_OBJECT (settings), "batch-fetch-count");