Skip to content

Commit

Permalink
fixed apr
Browse files Browse the repository at this point in the history
  • Loading branch information
AleksArt000 committed Nov 19, 2023
1 parent 92a52c2 commit 4f618ea
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
8 changes: 4 additions & 4 deletions testing/src/dependency-free/apr.ecmp → base/src/apr.ecmp
Original file line number Diff line number Diff line change
Expand Up @@ -7,17 +7,17 @@ url = https://archive.apache.org/dist/apr/apr-1.7.2.tar.bz2
[description]
The Apache Portable Runtime (APR) is a supporting library for the Apache web server. It provides a set of application programming interfaces (APIs) that map to the underlying Operating System (OS). Where the OS doesn't support a particular function, APR will provide an emulation. Thus programmers can use the APR to make a program portable across different platforms.

[download]
curl -L $URL | tar -xj

[install]
wget $URL
tar -xf apr-1.7.2.tar.bz2
cd apr-1.7.2
sed -e '/^case "$0"/s;$0;$(readlink -f $0);' \
-i apr-config.in
./configure --prefix=/usr \
--disable-static \
--with-installbuilddir=/usr/share/apr-1/build &&
make
make install
make install DESTDIR=$BUILD_ROOT

[locations]
/usr/include/apr-1/
Expand Down
8 changes: 4 additions & 4 deletions testing/src/apr-util.ecmp
Original file line number Diff line number Diff line change
Expand Up @@ -10,17 +10,17 @@ apr
[description]
The Apache Portable Runtime Utility Library provides a predictable and consistent interface to underlying client library interfaces. This application programming interface assures predictable if not identical behavior regardless of which libraries are available on a given platform.

[download]
curl -L $URL | tar -xz

[install]
wget $URL
tar -xf apr-util-1.6.3.tar.bz2
cd apr-util-1.6.3
./configure --prefix=/usr \
--with-apr=/usr \
--with-gdbm=/usr \
--with-openssl=/usr \
--with-crypto &&
make
make install
make install DESTDIR=$BUILD_ROOT

[locations]
/usr/lib/apr-util-1

0 comments on commit 4f618ea

Please sign in to comment.