extensions/Library_abp.mk                       |    2 +
 extensions/source/abpilot/typeselectionpage.cxx |   46 ++++++++++++++++++++----
 2 files changed, 41 insertions(+), 7 deletions(-)

New commits:
commit 0b21dd2593fae41ee430717d7d65e2cfca25b8e9
Author: Stephan Bergmann <sberg...@redhat.com>
Date:   Wed Nov 21 09:57:36 2012 +0100

    Fix datasource choices offered by the Address Book wizard
    
    ...as at least on Linux, availability of Mozilla/Thunderbird is independend 
of
    WITH_MOZILLA/--enable-mozilla now.  This fix might not be perfect yet, see 
the
    TODO comment in the code.
    
    Change-Id: Ie5343a23187648f5e56d82753b6c222e6da7ec54

diff --git a/extensions/Library_abp.mk b/extensions/Library_abp.mk
index b4a5569..49195c0 100644
--- a/extensions/Library_abp.mk
+++ b/extensions/Library_abp.mk
@@ -38,6 +38,7 @@ $(eval $(call gb_Library_set_include,abp,\
        -I$(SRCDIR)/extensions/source/inc \
 ))
 
+ifeq ($(OS),WNT)
 ifneq ($(WITH_MOZILLA),NO)
 ifneq ($(SYSTEM_MOZILLA),YES)
 $(eval $(call gb_Library_add_defs,abp,\
@@ -45,6 +46,7 @@ $(eval $(call gb_Library_add_defs,abp,\
 ))
 endif
 endif
+endif
 
 $(eval $(call gb_Library_add_defs,abp,\
        -DCOMPMOD_NAMESPACE=abp \
diff --git a/extensions/source/abpilot/typeselectionpage.cxx 
b/extensions/source/abpilot/typeselectionpage.cxx
index 655fd0d..6ce6280 100644
--- a/extensions/source/abpilot/typeselectionpage.cxx
+++ b/extensions/source/abpilot/typeselectionpage.cxx
@@ -57,16 +57,47 @@ namespace abp
         Size  aItemSize( LogicToPixel( Size( 0, 8 ), MAP_APPFONT ) );
         aItemSize.Width() = GetOutputSizePixel().Width() - 30;
 
-        bool bWithMozilla = true, bUnx = true;
+        //TODO:  For now, try to keep offering the same choices like before the
+        // Mozilla/MORK cleanup, even if the status of what driver actually
+        // provides which functionality is somewhat unclear, see the 
discussions
+        // of fdo#57285 "Address Book Data Source Wizard lists 'Mac OS X 
address
+        // book' on Linux" and fdo#57322 "Moz-free LDAP Address Book driver."
+        // In accordance with ancient OOo 3.3, this is as follows:
+        //
+        // On Linux:
+        // - EVOLUTION, EVOLUTION_GROUPWISE, EVOLUTION_LDAP (if applicable)
+        // - MORK (via mork driver, which is built unconditionally)
+        // - THUNDERBIRD (via mork driver?, which is built unconditionally)
+        // - KAB (if applicable)
+        // - LDAP (via mork driver?, which is built unconditionally)
+        // - OTHER
+        //
+        // On Mac OS X:
+        // - MACAB (if applicable)
+        // - OTHER
+        //
+        // On Windows:
+        // - MORK, THUNDERBIRD, LDAP, OUTLOOK, OUTLOOKEXPRESS (via mozab 
driver,
+        //   if WITH_MOZILLA)
+        // - OTHER
+
+        bool bWithMozilla = false, bWindows = false;
         bool bHaveEvolution = false, bHaveKab = false;
         bool bHaveMacab = false;
 
-#if !defined WITH_MOZILLA || defined MACOSX
-        bWithMozilla = false;
+#if defined WNT
+
+#if defined WITH_MOZILLA
+        bWithMozilla = true;
 #endif
-#ifndef UNX
-        bUnx = false;
+        bWindows = true;
+
 #else
+
+#if !defined MACOSX
+        bWithMozilla = true;
+#endif
+
         Reference< XDriverAccess> 
xManager(_pParent->getORB()->createInstance(::rtl::OUString(RTL_CONSTASCII_USTRINGPARAM("com.sun.star.sdbc.DriverManager"))),
 UNO_QUERY);
 
         try
@@ -101,6 +132,7 @@ namespace abp
         catch(...)
         {
         }
+
 #endif
 
         // Items are displayed in list order
@@ -112,8 +144,8 @@ namespace abp
         m_aAllTypes.push_back( ButtonItem( &m_aKab, AST_KAB, bHaveKab ) );
         m_aAllTypes.push_back( ButtonItem( &m_aMacab, AST_MACAB, bHaveMacab ) 
);
         m_aAllTypes.push_back( ButtonItem( &m_aLDAP, AST_LDAP, bWithMozilla ) 
);
-        m_aAllTypes.push_back( ButtonItem( &m_aOutlook, AST_OUTLOOK, 
bWithMozilla && !bUnx ) );
-        m_aAllTypes.push_back( ButtonItem( &m_aOE, AST_OE, bWithMozilla && 
!bUnx ) );
+        m_aAllTypes.push_back( ButtonItem( &m_aOutlook, AST_OUTLOOK, 
bWithMozilla && bWindows ) );
+        m_aAllTypes.push_back( ButtonItem( &m_aOE, AST_OE, bWithMozilla && 
bWindows ) );
         m_aAllTypes.push_back( ButtonItem( &m_aOther, AST_OTHER, true ) );
 
         Link aTypeSelectionHandler = LINK(this, TypeSelectionPage, 
OnTypeSelected );
_______________________________________________
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits

Reply via email to