diff options
author | kirthika <kirthika@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 1999-02-25 23:23:31 +0000 |
---|---|---|
committer | kirthika <kirthika@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 1999-02-25 23:23:31 +0000 |
commit | 52e1788317705eda77ab5216986289c30ea3cb72 (patch) | |
tree | b82e462678161b8799806efce80bcbf963ad907d /tests | |
parent | 652d78e63a34f9f2d3ce683444f9c0dafaf5f355 (diff) | |
download | ATCD-52e1788317705eda77ab5216986289c30ea3cb72.tar.gz |
Added "./lib" as prefix for non-Win32 platforms.
Diffstat (limited to 'tests')
-rw-r--r-- | tests/DLL_Test.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/DLL_Test.cpp b/tests/DLL_Test.cpp index 67d9ec68392..596f84d2c24 100644 --- a/tests/DLL_Test.cpp +++ b/tests/DLL_Test.cpp @@ -43,7 +43,7 @@ USELIB("..\ace\aced.lib"); # define OBJ_PREFIX "" #else # define OBJ_SUFFIX ".so" -# define OBJ_PREFIX "./" +# define OBJ_PREFIX "./lib" #endif /*ACE_WIN32*/ class Hello @@ -97,7 +97,7 @@ main (int argc, char *argv[]) ACE_DLL dll; - int retval = dll.open (OBJ_PREFIX "libDLL_Test" OBJ_SUFFIX); + int retval = dll.open (OBJ_PREFIX "DLL_Test" OBJ_SUFFIX); if (retval != 0) ACE_ERROR_RETURN ((LM_ERROR, "%p\n", |