diff options
author | k-m_schindler <k-m_schindler@b956fd51-792f-4845-bead-9b4dfca2ff2c> | 2010-05-24 18:59:38 +0000 |
---|---|---|
committer | k-m_schindler <k-m_schindler@b956fd51-792f-4845-bead-9b4dfca2ff2c> | 2010-05-24 18:59:38 +0000 |
commit | be3978a078196c423d1974d87bd3cf07a3dd2d45 (patch) | |
tree | e44246df2d7e606e71f93f5c4ea2e24c33947aaf /src/lib | |
parent | 5922a70e798ed9ab8c8abf542794602fb82780c5 (diff) | |
download | usdx-be3978a078196c423d1974d87bd3cf07a3dd2d45.tar.gz usdx-be3978a078196c423d1974d87bd3cf07a3dd2d45.tar.xz usdx-be3978a078196c423d1974d87bd3cf07a3dd2d45.zip |
add configure for libpcre and add path for dlopen on darwin
git-svn-id: svn://svn.code.sf.net/p/ultrastardx/svn/trunk@2416 b956fd51-792f-4845-bead-9b4dfca2ff2c
Diffstat (limited to '')
-rw-r--r-- | src/lib/pcre/pcre.pas | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/lib/pcre/pcre.pas b/src/lib/pcre/pcre.pas index 50e3371a..fc15bdbc 100644 --- a/src/lib/pcre/pcre.pas +++ b/src/lib/pcre/pcre.pas @@ -503,6 +503,9 @@ implementation uses SysUtils, + {$IFDEF DARWIN} + UConfig, + {$ENDIF DARWIN} {$IFDEF MSWINDOWS} Windows; {$ENDIF MSWINDOWS} @@ -536,7 +539,7 @@ const libpcremodulename = 'libpcre.so.0'; {$ENDIF LINUX} {$IFDEF DARWIN} - libpcremodulename = 'libpcre.dylib'; + libpcremodulename = LIBPCRE_LIBDIR + '/libpcre.dylib'; {$ENDIF DARWIN} PCRECompileExportName = 'pcre_compile'; PCRECompile2ExportName = 'pcre_compile2'; |