summaryrefslogtreecommitdiff
path: root/test/testdso.c
diff options
context:
space:
mode:
authorWilliam A. Rowe Jr <wrowe@apache.org>2007-10-06 22:44:46 +0000
committerWilliam A. Rowe Jr <wrowe@apache.org>2007-10-06 22:44:46 +0000
commit49cd8829f9550095702d9a421ba453745b388d0b (patch)
tree045da0e709d3f7c13e428eb532e17ca325a57837 /test/testdso.c
parentb1be96fdcbf4456ed19ab90d48212083984c793c (diff)
downloadapr-49cd8829f9550095702d9a421ba453745b388d0b.tar.gz
Solve two sets of issues, only two possible changes, in one
batch commit; * P64 architectures require us to use ABTS_SIZE_EQUAL * We need to localize to TESTBINPATH for win32 git-svn-id: https://svn.apache.org/repos/asf/apr/apr/trunk@582544 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'test/testdso.c')
-rw-r--r--test/testdso.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/testdso.c b/test/testdso.c
index 361f46dd5..6ab94010a 100644
--- a/test/testdso.c
+++ b/test/testdso.c
@@ -15,6 +15,7 @@
*/
+#include "apr.h"
#include "testutil.h"
#include "apr_general.h"
#include "apr_pools.h"
@@ -22,7 +23,6 @@
#include "apr_dso.h"
#include "apr_strings.h"
#include "apr_file_info.h"
-#include "apr.h"
#if APR_HAVE_UNISTD_H
#include <unistd.h>
#endif
@@ -34,7 +34,7 @@
#elif defined(BEOS) || defined(__MVS__)
# define MOD_NAME "mod_test.so"
#elif defined(WIN32)
-# define MOD_NAME "mod_test.dll"
+# define MOD_NAME TESTBINPATH "mod_test.dll"
#elif defined(DARWIN)
# define MOD_NAME ".libs/mod_test.so"
# define LIB_NAME ".libs/libmod_test.dylib"