Permalink
Name already in use
A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
bee-files/apr.be0
Go to fileThis commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[Announcement][1]: > There are a number of specific changes in how APR is deployed and how APR-util deals with external dependencies in these current releases, which may be disruptive to existing build strategies: > > * The typical cross-process locking stragegy now defaults to a pthreads lock which will not leak on abnormal process termination, as opposed to the earlier sysv semaphore locking strategy. This should result in fewer orphaned locks in misbehaving applications. > * Netware users should be aware that APR mis-defined the entity representing an "os mutex", and it was missing a level of indirection. The new definition should allow the use of the apr_os_proc_mutex_get/_put API's on the Netware platform but requires a rebuild against the APR 1.7.0 or later library. > * Expat sources are no longer bundled, this is now an external dependency. Install libexpat runtime (usually installed by default) and development packages using your system's package manager, or from https://libexpat.github.io/. > * MySQL support is updated as advised by the MySQL developers. MySQL versions older than 5.5 should not be used. If you do use an old MySQL version, use the thread-safe libmysqlclient_r version of the library. > * FreeTDS partial and incomplete support has been dropped. Users of MSSQL and SYBASE databases are recommended to use the ODBC driver instead. [1]: https://www.apache.org/dist/apr/Announcement1.x.html
executable file
88 lines (67 sloc)
2.59 KB
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env beesh | |
# BEE_VERSION apr-1.7.0-0 | |
BEE_BUILDTYPE=autotools | |
## this file was created by bee init and should be executed to build a | |
## bee-package. (Additional hints are located at the end of this file.) | |
############################################################################### | |
## The source URL(s) define the location of the sources that will be | |
## downloaded. Version variables may be used to simplify reuse of this bee-file. | |
SRCURL[0]="https://ftp.fau.de/apache/apr/apr-${PKGVERSION}.tar.gz" | |
############################################################################### | |
## Add URLs/pathes to patch files to the PATCHURL array. | |
## The sources will be patched in the order of the array. | |
# PATCHURL+=() | |
############################################################################### | |
## Add filename patterns to the EXCLUDE array of files that should not | |
## be added to you package but may be present in the image directory. | |
# EXCLUDE+=() | |
############################################################################### | |
## Uncomment the next statement, if the software may not be able to be build | |
## outside the source directory and need to be build inside the source | |
## directory. | |
# build_in_sourcedir | |
############################################################################### | |
## bee cannot detect buildtypes specified in subdirectories. | |
## Sometimes packages "hide" the real sources in a subdirectory named | |
## 'src' or 'cmake' or .. | |
## use 'sourcesubdir_append' to specify this directory if known. | |
# sourcesubdir_append src | |
############################################################################### | |
## Change the default (auto-detected) steps to | |
## extract, patch, configure/setup, build and install the software. | |
## Make sure the mee_install function does install everything to the | |
## image directory "${D}" | |
#mee_extract() { | |
# bee_extract "${@}" | |
#} | |
#mee_patch() { | |
# bee_patch "${@}" | |
#} | |
#mee_configure() { | |
# bee_configure | |
#} | |
#mee_build() { | |
# bee_build | |
#} | |
mee_install() { | |
bee_install | |
ln -s apr-1-config ${D}${BINDIR}/apr-config | |
} | |
## by default this may be 'make install DESTDIR="${D}"' | |
############################################################################### | |
## | |
## Additional hints: | |
## | |
## The name of this bee-file should follow the following naming convention: | |
## pkgname-pkgversion-pkgrevision.bee | |
## | |
## You may remove all comments as long as SRCURL[0]="" is set. | |
## | |
## Everything in this file will be executed in a bash environment. | |
## | |
## Build the package by executing | |
## './pkg-version-N.bee' or | |
## 'beesh ./pkg-version-N.bee' | |
## | |
## see http://beezinga.org/ | |
## |