Changeset 6416

Show
Ignore:
Timestamp:
07/04/08 03:53:17 (2 months ago)
Author:
erijo
Message:

Use the correct shared library suffix

Location:
branches/newapi/licq
Files:
2 modified

Legend:

Unmodified
Added
Removed
  • branches/newapi/licq/config.h.cmake

    r5809 r6416  
    11#ifndef LICQ_CONFIG_H 
    22#define LICQ_CONFIG_H 
     3 
     4/* shared library suffix */ 
     5#define SHARED_LIBRARY_SUFFIX "@CMAKE_SHARED_LIBRARY_SUFFIX@" 
    36 
    47/* dlopen binding */ 
  • branches/newapi/licq/src/util/test/dynamiclibrarytest.cpp

    r6413 r6416  
    1818 */ 
    1919 
     20#include "config.h" 
    2021#include "licq/exception/systemexception.h" 
    2122#include "util/dynamiclibrary.h" 
     
    3334BOOST_AUTO_TEST_CASE(loadLibM) 
    3435{ 
    35   LicqDaemon::DynamicLibrary libm("libm"); 
     36  LicqDaemon::DynamicLibrary libm("libm" SHARED_LIBRARY_SUFFIX); 
    3637 
    3738  double (*cos)(double);