Name Date Size #Lines LOC

..--

atomic/H25-Apr-2025-1,188843

build/H25-Apr-2025-33,27427,588

docs/H25-Apr-2025-888726

dso/H25-Apr-2025-1,6151,134

encoding/H25-Apr-2025-1,1841,027

file_io/H25-Apr-2025-11,2597,917

helpers/H25-Apr-2025-10780

include/H25-Apr-2025-21,6289,283

locks/H25-Apr-2025-4,0622,908

memory/unix/H25-Apr-2025-2,6561,780

misc/H25-Apr-2025-3,4152,279

mmap/H25-Apr-2025-379249

network_io/H25-Apr-2025-6,4414,766

passwd/H25-Apr-2025-257172

poll/H25-Apr-2025-4,1223,141

random/unix/H25-Apr-2025-966625

shmem/H25-Apr-2025-1,4881,126

strings/H25-Apr-2025-2,8811,948

support/unix/H25-Apr-2025-12480

tables/H25-Apr-2025-2,5721,904

test/H25-Apr-2025-20,70615,380

threadproc/H25-Apr-2025-6,4064,758

time/H25-Apr-2025-1,059779

tools/H25-Apr-2025-11666

user/H25-Apr-2025-730530

CHANGESH A D25-Apr-20257.7 KiB201138

CMakeLists.txtH A D25-Apr-202513 KiB428386

LICENSEH A D25-Apr-202517.6 KiB342282

MakefileH A D25-Apr-20255 KiB149101

Makefile.inH A D25-Apr-20254.7 KiB149102

Makefile.winH A D25-Apr-20254.8 KiB182121

NOTICEH A D25-Apr-2025527 1611

NWGNUmakefileH A D25-Apr-20258.6 KiB434370

READMEH A D25-Apr-20255.5 KiB168120

README.cmakeH A D25-Apr-20254.4 KiB11387

apr-1-configH A D25-Apr-20256.9 KiB252200

apr-config.inH A D25-Apr-20256.7 KiB252200

apr.depH A D25-Apr-202552.7 KiB1,9171,750

apr.dspH A D25-Apr-202521 KiB914695

apr.dswH A D25-Apr-20251.7 KiB10271

apr.makH A D25-Apr-202552.2 KiB1,9811,581

apr.pcH A D25-Apr-2025375 1210

apr.pc.inH A D25-Apr-2025313 1210

apr.specH A D25-Apr-20252.5 KiB10176

build-outputs.mkH A D25-Apr-202565.4 KiB323227

build.confH A D25-Apr-2025634 3011

buildconfH A D25-Apr-20254.3 KiB13565

config.layoutH A D25-Apr-20257.2 KiB232218

config.logH A D25-Apr-2025545.1 KiB19,09119,067

config.niceH A D25-Apr-202558 72

config.statusH A D25-Apr-202566.3 KiB2,2841,873

configureH A D25-Apr-2025812 KiB30,87924,526

configure.inH A D25-Apr-202580.3 KiB2,8652,542

emacs-modeH A D25-Apr-2025488 1615

libapr.depH A D25-Apr-202552.9 KiB1,9211,753

libapr.dspH A D25-Apr-202526 KiB963745

libapr.makH A D25-Apr-202558.9 KiB2,1191,698

libapr.rcH A D25-Apr-20252 KiB6560

libtoolH A D25-Apr-2025286.5 KiB10,0817,433

README

1Apache Portable Runtime Library (APR)
2-------------------------------------
3
4   The Apache Portable Runtime Library provides a predictable and
5   consistent interface to underlying platform-specific
6   implementations, with an API to which software developers may code
7   and be assured of predictable if not identical behavior regardless
8   of the platform on which their software is built, relieving them of
9   the need to code special-case conditions to work around or take
10   advantage of platform-specific deficiencies or features.
11
12   APR and its companion libraries are implemented entirely in C
13   and provide a common programming interface across a wide variety
14   of operating system platforms without sacrificing performance.
15   Currently supported platforms include:
16
17     UNIX variants
18     Windows
19     Netware
20     Mac OS X
21     OS/2
22
23   To give a brief overview, the primary core
24   subsystems of APR 1.3 include the following:
25
26     Atomic operations
27     Dynamic Shared Object loading
28     File I/O
29     Locks (mutexes, condition variables, etc)
30     Memory management (high performance allocators)
31     Memory-mapped files
32     Multicast Sockets
33     Network I/O
34     Shared memory
35     Thread and Process management
36     Various data structures (tables, hashes, priority queues, etc)
37
38   For a more complete list, please refer to the following URLs:
39
40     http://apr.apache.org/docs/apr/modules.html
41
42   Users of APR 0.9 should be aware that migrating to the APR 1.x
43   programming interfaces may require some adjustments; APR 1.x is
44   neither source nor binary compatible with earlier APR 0.9 releases.
45   Users of APR 1.x can expect consistent interfaces and binary backwards
46   compatibility throughout the entire APR 1.x release cycle, as defined
47   in our versioning rules:
48
49     http://apr.apache.org/versioning.html
50
51   APR is already used extensively by the Apache HTTP Server
52   version 2 and the Subversion revision control system, to
53   name but a few.  We list all known projects using APR at
54   http://apr.apache.org/projects.html -- so please let us know
55   if you find our libraries useful in your own projects!
56
57
58Using a Subversion Checkout on Unix
59===================================
60
61If you are building APR from SVN, you need to perform a prerequisite
62step.  You must have autoconf, libtool and python installed for this
63to work.  The prerequisite is simply;
64
65  ./buildconf
66
67If you are building APR from a distribution tarball, buildconf is
68already run for you, and you do not need autoconf, libtool or python
69installed or to run buildconf unless you have patched APR's buildconf
70inputs (such as configure.in, build.conf, virtually any file within
71the build/ tree, or you add or remove source files).
72
73Remember when updating from svn that you must rerun ./buildconf again
74to effect any changes made to the build schema in your fresh update.
75
76
77Configuring and Building APR on Unix
78====================================
79
80Simply;
81
82   ./configure --prefix=/desired/path/of/apr
83   make
84   make test
85   make install
86
87Configure has additional options, ./configure --help will offer you
88those choices.  You may also add CC=compiler CFLAGS="compiler flags"
89etc. prior to the ./configure statement (on the same line).  Please
90be warned, some flags must be passed as part of the CC command,
91itself, in order for autoconf to make the right determinations. Eg.;
92
93  CC="gcc -m64" ./configure --prefix=/desired/path/of/apr
94
95will inform APR that you are compiling to a 64 bit CPU, and autoconf
96must consider that when setting up all of APR's internal and external
97type declarations.
98
99For more verbose output from testall, you may wish to invoke testall
100with the flag;
101
102   cd test
103   ./testall -v
104
105
106Building APR RPM files on Linux
107===============================
108
109Run the following to create SRPMs:
110
111rpmbuild -ts apr-<version>.tar.bz2
112rpmbuild -ts apr-util-<version>.tar.bz2
113
114Run the following to create RPMs (or build from the SRPMs):
115
116rpmbuild -tb apr-<version>.tar.bz2
117rpmbuild -tb apr-util-<version>.tar.bz2
118
119Resolve dependencies as appropriate.
120
121
122Configuring and Building APR on Windows
123=======================================
124
125Using Visual Studio, you can build and run the test validation of APR.
126The Makefile.win make file has a bunch of documentation about it's
127options, but a trivial build is simply;
128
129  nmake -f Makefile.win
130  nmake -f Makefile.win PREFIX=c:\desired\path\of\apr install
131
132Note you must manually modify the include\apr.hw file before you
133build to change default options, see the #define APR_HAS_... or the
134#define APR_HAVE_... statements.  Be careful, many of these aren't
135appropriate to be modified.  The most common change is
136
137#define APR_HAVE_IPV6           1
138
139rather than 0 if this build of APR will be used strictly on machines
140with the IPv6 adapter support installed.
141
142It's trivial to include the apr.dsp (for a static library) or the
143libapr.dsp (for a dynamic library) in your own build project, or you
144can load apr.dsw in Visual Studio 2002 (.NET) or later, which will
145convert these for you into apr.sln and associated .vcproj files.
146
147When using APR as a dynamic library, nothing special is required,
148simply link to libapr.lib.  To use it as a static library, simply
149define APR_DECLARE_STATIC before you include any apr header files
150in your source, and link to apr.lib instead.
151
152
153Generating Test Coverage information with gcc
154=============================================
155
156If you want to generate test coverage data, use the following steps:
157
158  ./buildconf
159  CFLAGS="-fprofile-arcs -ftest-coverage" ./configure
160  make
161  cd test
162  make
163  ./testall
164  cd ..
165  make gcov
166
167
168

README.cmake

1Experimental cmake-based build support for APR on Microsoft Windows
2
3Status
4------
5
6This build support is currently intended only for Microsoft Windows.
7Only Windows NT-based systems can be targeted.  (The traditional
8Windows build support for APR can target Windows 9x as well.)
9
10This build support is experimental.  Specifically,
11
12* It does not support all features of APR.
13* Some components may not be built correctly and/or in a manner
14  compatible with the previous Windows build support.
15* Build interfaces, such as the mechanisms which are used to enable
16  optional functionality or specify prerequisites, may change from
17  release to release as feedback is received from users and bugs and
18  limitations are resolved.
19
20Important: Refer to the "Known Bugs and Limitations" section for further
21           information.
22
23           It is beyond the scope of this document to document or explain
24           how to utilize the various cmake features, such as different
25           build backends or provisions for finding support libraries.
26
27           Please refer to the cmake documentation for additional information
28           that applies to building any project with cmake.
29
30Prerequisites
31-------------
32
33The following tools must be in PATH:
34
35* cmake, version 2.8 or later
36* If using a command-line compiler: compiler and linker and related tools
37  (Refer to the cmake documentation for more information.)
38
39How to build
40------------
41
421. cd to a clean directory for building (i.e., don't build in your
43   source tree)
44
452. Some cmake backends may want your compile tools in PATH.  (Hint: "Visual
46   Studio Command Prompt")
47
483. cmake -G "some backend, like 'NMake Makefiles'"
49     -DCMAKE_INSTALL_PREFIX=d:/path/to/aprinst
50     -DAPR-specific-flags
51     d:/path/to/aprsource
52
53   Alternately, use cmake-gui and update settings in the GUI.
54
55   APR feature flags:
56
57       APR_INSTALL_PRIVATE_H  Install extra .h files which are required when
58                              building httpd and Subversion but which aren't
59                              intended for use by applications.
60                              Default: OFF
61       APR_HAVE_IPV6          Enable IPv6 support
62                              Default: ON
63       APR_BUILD_TESTAPR      Build APR test suite
64                              Default: OFF
65       TEST_STATIC_LIBS       Build the test suite to test the APR static
66                              library instead of the APR dynamic library.
67                              Default: OFF
68                              In order to build the test suite against both
69                              static and dynamic libraries, separate builds
70                              will be required, one with TEST_STATIC_LIBS
71                              set to ON.
72       MIN_WINDOWS_VER        Minimum Windows version supported by this build
73                              (This controls the setting of _WIN32_WINNT.)
74                              "Vista" or "Windows7" or a numeric value like
75                              "0x0601"
76                              Default: "Vista"
77                              For desktop/server equivalence or other values,
78                              refer to
79                              http://msdn.microsoft.com/en-us/library/windows/
80                              desktop/aa383745(v=vs.85).aspx
81       INSTALL_PDB            Install .pdb files if generated.
82                              Default: ON
83
84   CMAKE_C_FLAGS_RELEASE, _DEBUG, _RELWITHDEBINFO, _MINSIZEREL
85
86   CMAKE_BUILD_TYPE
87
88       For NMake Makefiles the choices are at least DEBUG, RELEASE,
89       RELWITHDEBINFO, and MINSIZEREL
90       Other backends make have other selections.
91
924. build using chosen backend (e.g., "nmake install")
93
94Known Bugs and Limitations
95--------------------------
96
97* If include/apr.h or other generated files have been created in the source
98  directory by another build system, they will be used unexpectedly and
99  cause the build to fail.
100* Options should be provided for remaining features:
101  + APR_POOL_DEBUG
102* APR-CHANGES.txt, APR-LICENSE.txt, and APR-NOTICE.txt are not installed,
103  though perhaps that is a job for a higher-level script.
104
105Generally:
106
107* Many APR features have not been tested with this build.
108* Developers need to examine the existing Windows build in great detail and see
109  what is missing from the cmake-based build, whether a feature or some build
110  nuance.
111* Any feedback you can provide on your experiences with this build will be
112  helpful.
113