]> spindle.queued.net Git - midori/commitdiff
Use #ifdef for ZEITGEIST and GCR
authorPaweł Forysiuk <tuxator@o2.pl>
Mon, 27 Aug 2012 20:50:33 +0000 (22:50 +0200)
committerChristian Dywan <christian@twotoasts.de>
Mon, 27 Aug 2012 20:50:33 +0000 (22:50 +0200)
midori/midori-browser.c
midori/midori-locationaction.c
midori/midori-view.c

index b45b4b469fc8b5a79c9729759b139f0e5aa34576..9f12e8ba28e5a9b133b79dc4258144d529b3c550 100644 (file)
@@ -38,7 +38,7 @@
     #include <granite.h>
 #endif
 
-#if HAVE_ZEITGEIST
+#ifdef HAVE_ZEITGEIST
     #include <zeitgeist.h>
 #endif
 
@@ -489,7 +489,7 @@ midori_browser_update_history (KatzeItem*   item,
                                const gchar* type,
                                const gchar* event)
 {
-    #if HAVE_ZEITGEIST
+    #ifdef HAVE_ZEITGEIST
     const gchar* inter;
     if (strstr (event, "access"))
         inter = ZEITGEIST_ZG_ACCESS_EVENT;
index dc59549c9b072553f56ddd3680fd31e09c3845ad..5bd0b7da718c3e3d1bc4cf57d045ba8fd24387d3 100644 (file)
@@ -1174,7 +1174,7 @@ midori_location_action_focus_out_event_cb (GtkWidget*   widget,
     return FALSE;
 }
 
-#if HAVE_GCR
+#ifdef HAVE_GCR
     #define GCR_API_SUBJECT_TO_CHANGE
     #include <gcr/gcr.h>
 #endif
@@ -1202,7 +1202,7 @@ midori_map_get_message (SoupMessage* message)
     return full;
 }
 
-#if HAVE_GCR
+#ifdef HAVE_GCR
 typedef enum {
     MIDORI_CERT_TRUST,
     MIDORI_CERT_REVOKE,
@@ -1295,7 +1295,7 @@ midori_location_action_show_page_info (GtkWidget* widget,
     if (tls_cert == NULL)
         return;
 
-    #if HAVE_GCR
+    #ifdef HAVE_GCR
     GByteArray* der_cert;
     GcrCertificate* gcr_cert;
     GtkWidget* details;
index 6dc108d5af42193025465cc8aa284e0a7b51bf37..315f84b95204705aa448e7c9fb2ba4823afd0d9c 100644 (file)
@@ -26,7 +26,7 @@
 #include <granite.h>
 #endif
 
-#if HAVE_GCR
+#ifdef HAVE_GCR
     #define GCR_API_SUBJECT_TO_CHANGE
     #include <gcr/gcr.h>
 
@@ -965,7 +965,7 @@ midori_view_web_view_navigation_decision_cb (WebKitWebView*             web_view
             return TRUE;
         }
     }
-    #if HAVE_GCR
+    #ifdef HAVE_GCR
     else if (/* view->special && */ !strncmp (uri, "https", 5))
     {
         /* We show an error page if the certificate is invalid.
@@ -1054,7 +1054,7 @@ webkit_web_view_load_started_cb (WebKitWebView*  web_view,
     g_object_thaw_notify (G_OBJECT (view));
 }
 
-#if HAVE_GCR
+#ifdef HAVE_GCR
 const gchar*
 midori_location_action_tls_flags_to_string (GTlsCertificateFlags flags);
 #endif
@@ -1111,7 +1111,7 @@ webkit_web_view_load_committed_cb (WebKitWebView*  web_view,
         if (message
          && soup_message_get_flags (message) & SOUP_MESSAGE_CERTIFICATE_TRUSTED)
             view->security = MIDORI_SECURITY_TRUSTED;
-        #if HAVE_GCR
+        #ifdef HAVE_GCR
         else if (!view->special && message != NULL)
         {
             GTlsCertificate* tls_cert;