https://bugs.freedesktop.org/show_bug.cgi?id=63154

--- Comment #2 from Marcos Souza <marcos.souza....@gmail.com> ---
Guys, and about this:

#define STRING_CONCAT3( s1, s2, s3 ) \
    s1 s2 s3

// dll file extensions

#if defined WNT
#define SVLIBRARY( Base ) \
    STRING_CONCAT3( Base, "lo", ".dll" )
#elif defined MACOSX
#define SVLIBRARY( Base ) \
    STRING_CONCAT3( "lib", Base, "lo.dylib" )
#elif defined UNX
#define SVLIBRARY( Base ) \
    STRING_CONCAT3( "lib", Base, "lo.so" )
#else
  #error unknown platform
#endif

Where we can put this?

This is the file list of who uses the SVLIBRARY macro:
marcos@jedi:~/gitroot/core$ git grep SVLIBRARY
connectivity/source/drivers/mozab/MDriver.cxx:                "$libname$",
OUString( SVLIBRARY( "mozabdrv" ) )
connectivity/source/drivers/mozab/MDriver.cxx:    const OUString
sModuleName(SVLIBRARY( "mozabdrv" ));
connectivity/source/drivers/mozab/MServices.cxx:        const OUString
sModuleName(SVLIBRARY( "mozabdrv" ));
connectivity/workben/testmoz/main.cxx:    , SVLIBRARY( "dtransX11" )        //
OBR
sc/source/ui/attrdlg/scabstdlg.cxx:    aStrBuf.appendAscii( SVLIBRARY("scui")
);
sc/source/ui/docshell/impex.cxx:    OUString sFilterLib(SVLIBRARY("scfilt"));
sd/source/filter/sdfilter.cxx:    String aTemp(OUString(SVLIBRARY("?")));
sfx2/source/appl/app.cxx:    static OUString aLibName( SVLIBRARY( "basctl"  )
);
sfx2/source/appl/app.cxx:    static OUString aLibName( SVLIBRARY( "basctl"  )
);
sfx2/source/appl/appinit.cxx:        static OUString aLibName( SVLIBRARY( "cui"
) );
sfx2/source/appl/appserv.cxx:    static OUString aLibName( SVLIBRARY( "basctl" 
) );
sfx2/source/appl/appserv.cxx:    static OUString aLibName( SVLIBRARY( "basctl" 
) );
svtools/source/misc/svtaccessiblefactory.cxx:                const OUString
sModuleName( SVLIBRARY( "acc" ));
svx/source/form/dbtoolsclient.cxx:            const OUString sModuleName(
SVLIBRARY( "dbtools" )
sw/source/filter/basflt/fltini.cxx:        bool ok = msword_.loadRelative(
&thisModule, SVLIBRARY( "msword" ), SAL_LOADMODULE_GLOBAL | SAL_LOAD
sw/source/ui/dbui/swdbtoolsclient.cxx:        const OUString
sModuleName(RTL_CONSTASCII_USTRINGPARAM(SVLIBRARY("dbtools")));
toolkit/source/helper/accessibilityclient.cxx:                const OUString
sModuleName( SVLIBRARY( "acc" ) );
tools/inc/tools/solar.h:#define SVLIBRARY( Base ) \
tools/inc/tools/solar.h:#define SVLIBRARY( Base ) \
tools/inc/tools/solar.h:#define SVLIBRARY( Base ) \
vcl/source/filter/FilterConfigCache.cxx:        OUString sTemp(SVLIBRARY("?"));

Maybe on sal or osl...?

-- 
You are receiving this mail because:
You are the assignee for the bug.
_______________________________________________
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs

Reply via email to