~ubuntu-branches/ubuntu/hardy/apache2/hardy-proposed

« back to all changes in this revision

Viewing changes to srclib/apr/test/testdso.c

  • Committer: Bazaar Package Importer
  • Author(s): Stefan Fritsch
  • Date: 2008-01-17 20:27:56 UTC
  • mto: This revision was merged to the branch mainline in revision 26.
  • Revision ID: james.westby@ubuntu.com-20080117202756-hv38rjknhwa2ilwi
Tags: upstream-2.2.8
ImportĀ upstreamĀ versionĀ 2.2.8

Show diffs side-by-side

added added

removed removed

Lines of Context:
15
15
 */
16
16
 
17
17
 
 
18
#include "apr.h"
18
19
#include "testutil.h"
19
20
#include "apr_general.h"
20
21
#include "apr_pools.h"
22
23
#include "apr_dso.h"
23
24
#include "apr_strings.h"
24
25
#include "apr_file_info.h"
25
 
#include "apr.h"
26
26
#if APR_HAVE_UNISTD_H
27
27
#include <unistd.h>
28
28
#endif
31
31
 
32
32
#ifdef NETWARE
33
33
# define MOD_NAME "mod_test.nlm"
34
 
#elif defined(BEOS)
 
34
#elif defined(BEOS) || defined(__MVS__)
35
35
# define MOD_NAME "mod_test.so"
36
36
#elif defined(WIN32)
37
 
# define MOD_NAME "mod_test.dll"
 
37
# define MOD_NAME TESTBINPATH "mod_test.dll"
38
38
#elif defined(DARWIN)
39
39
# define MOD_NAME ".libs/mod_test.so" 
40
40
# define LIB_NAME ".libs/libmod_test.dylib"