Apache Portable Runtime
Loading...
Searching...
No Matches
apr.h
Go to the documentation of this file.
1/* This file is here to prevent a file conflict on multiarch systems. A
2 * conflict will occur because apr.h has arch-specific definitions.
3 *
4 * DO NOT INCLUDE THE NEW FILE DIRECTLY -- ALWAYS INCLUDE THIS ONE INSTEAD. */
5
6#if defined(__i386__)
7#include "apr-i386.h"
8#elif defined(__ia64__)
9#include "apr-ia64.h"
10#elif defined(__powerpc64__)
11#include "apr-ppc64.h"
12#elif defined(__powerpc__)
13#include "apr-ppc.h"
14#elif defined(__s390x__)
15#include "apr-s390x.h"
16#elif defined(__s390__)
17#include "apr-s390.h"
18#elif defined(__x86_64__)
19#include "apr-x86_64.h"
20#else
21#error "This apr-devel package does not work your architecture?"
22#endif