|
Revision 6416, 0.7 kB
(checked in by erijo, 6 months ago)
|
|
Use the correct shared library suffix
|
| Line | |
|---|
| 1 | #ifndef LICQ_CONFIG_H |
|---|
| 2 | #define LICQ_CONFIG_H |
|---|
| 3 | |
|---|
| 4 | /* shared library suffix */ |
|---|
| 5 | #define SHARED_LIBRARY_SUFFIX "@CMAKE_SHARED_LIBRARY_SUFFIX@" |
|---|
| 6 | |
|---|
| 7 | /* dlopen binding */ |
|---|
| 8 | #define DLOPEN_BINDING @DLOPEN_BINDING@ |
|---|
| 9 | |
|---|
| 10 | /* misc functions */ |
|---|
| 11 | #cmakedefine HAVE_INET_ATON |
|---|
| 12 | #cmakedefine HAVE_STRERROR |
|---|
| 13 | |
|---|
| 14 | /* Define as const if the declaration of iconv() needs const. */ |
|---|
| 15 | #define ICONV_CONST |
|---|
| 16 | |
|---|
| 17 | /* Defined if OpenSSL is available */ |
|---|
| 18 | #cmakedefine USE_OPENSSL |
|---|
| 19 | |
|---|
| 20 | /* Defined if GPGME is available */ |
|---|
| 21 | #cmakedefine USE_GPGME |
|---|
| 22 | |
|---|
| 23 | #define INSTALL_LIBDIR "@CMAKE_INSTALL_PREFIX@/lib" |
|---|
| 24 | #define INSTALL_LOCALEDIR "@CMAKE_INSTALL_PREFIX@/locale" |
|---|
| 25 | #define INSTALL_SHAREDIR "@CMAKE_INSTALL_PREFIX@/share" |
|---|
| 26 | |
|---|
| 27 | #define PACKAGE "licq" |
|---|
| 28 | |
|---|
| 29 | #endif |
|---|