aboutsummaryrefslogtreecommitdiff
path: root/devel/apr1
Commit message (Collapse)AuthorAgeFilesLines
* Convert to UCL & cleanup pkg-message (categories d)Mathieu Arnold2019-08-131-4/+6
| | | | Notes: svn path=/head/; revision=508835
* Update to 1.7.0Jochen Neumeister2019-08-065-15/+9
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | *) apr_dir_read: [Unix] Dropped the preference of the dirread_r() flavor for dirread(), because the former is both deprecated and unneeded. [Yann Ylavic, William Rowe] *) apr_file_info: [Win32 only] Treat only "name surrogate" reparse points as symlinks, and not other reparse tag types. PR47630 [Oleg Liatte <olegliatte gmail.com>] *) Test %ld vs. %lld to avoid compiler emits using APR_OFF_T_FMT, in the case of apparently equivilant long and long long types. [William Rowe] *) Recognize APPLE predefined macros as equivilant to DARWIN. [Jim Jagielski] *) Signals: Allow handling of SIGUSR2 in apr_signal_thread. [Yann Ylavic] *) Atomics: Support for 64bit ints. [Jim Jagielski] *) Add the apr_encode_* API that implements RFC4648 and RFC7515 compliant BASE64, BASE64URL, BASE32, BASE32HEX and BASE16 encode/decode functions. [Graham Leggett] *) rand: Use arc4random_buf() on BSD platforms and getrandom() on Linux, when available. [Christian Weisgerber <naddy openbsd.org, Yann Ylavic] *) Add apr_sockaddr_zone_set, apr_sockaddr_zone_set to set and retrieve the zone for link-local IPv6 addresses. [Joe Orton] *) apr_sockaddr_equal: Compare link-local IPv6 addresses with different zones as not equal. [Joe Orton] *) apr_sockaddr_ip_getbuf, apr_sockaddr_ip_get: Append "%zone" for IPv6 link-local addresses. [Joe Orton] *) Locks: add a --disable-timedlocks config option in case users encounter more platforms where it fails [Nick Kew]. *) apr_allocator, apr_pools: Add apr_allocator_page_size() and apr_allocator_min_order_set() to respectively get the (system's) page size in use and set the minimum allocation size for an allocator (expressed in 2^order pages). [Yann Ylavic] *) locks: provide portable implementations of timedlock()s for posix-sems, sysv-sems and pthreads for those platforms that lack native versions (eg: OSX/macOS). [Jim Jagielski] *) locks: Introduce apr_{thread,proc,global}_mutex_timedlock(). [Yann Ylavic] - Add PORTVERSION (with svn mv) to relevant patches to make it easier for maintaining PR: 239382 Sponsored by: Netzkommune GmbH Differential Revision: https://reviews.freebsd.org/D21073 Notes: svn path=/head/; revision=508239
* Update `databases/gdbm' to version 1.18.1, an important bugfix releaseAlexey Dokuchaev2018-11-111-0/+1
| | | | | | | | | | | | | which restores compatibility with old databases (version 1.8) and some later versions which were built without mmap(2) support. Due to shlib version change, bump port revisions of the consumer ports. PR: 233059 Exp-run by: antoine Approved by: maintainer (johans, numerous timeouts) Notes: svn path=/head/; revision=484696
* devel/apr1: Update APR to 1.6.5Bernard Spil2018-10-274-10/+15
| | | | | | | | | | | - MySQL 8.0 (port marked "devel") not compatible [1] PR: 230538 [1] Reported by: <please forget me.uk> Differential Revision: https://reviews.freebsd.org/D17688 Notes: svn path=/head/; revision=483173
* devel/apr1: Bump portrevisionBernard Spil2018-03-211-1/+1
| | | | | | | | | | - Repair my rookie mistake of earlier today - Bump revision of dependent ports (again) Reported by: antoine Notes: svn path=/head/; revision=465240
* devel/apr1: Fix runtime issues of dependent portBernard Spil2018-03-212-8/+131
| | | | | | | | | | | | | - iconv is in base in all supported FreeBSD versions - Fix build with MariaDB 10.2 [2] - Bump portrevision in dependencies PR: 226705 [1], 226026 [2] With hat: apache Approved by: joneum (apache) Notes: svn path=/head/; revision=465232
* - Switch to new test frameworkDmitry Marakasov2018-03-181-1/+1
| | | | | | | Approved by: portmgr blanket Notes: svn path=/head/; revision=464884
* devel/apr1: Update to 1.6.3.1.6.1Bernard Spil2017-11-084-11/+12
| | | | | | | | | - Fixes build with LibreSSL [1] PR: 222762 [1] Notes: svn path=/head/; revision=453723
* devel/apr1: Fix SQLite optionBernard Spil2017-07-132-3/+9
| | | | | | | | | | | | - Fix SQLITE configure args (typo) - Whitespace fixes - Fix typo in UPDATING entry - Add pkg-message with warning Reported by: Stefan Esser Notes: svn path=/head/; revision=445645
* devel/apr1: Update to 1.6 branchBernard Spil2017-07-126-656/+62
| | | | | | | | | | | | | | | | | | | | | - Update APR to 1.6.0 - Update APR-util to 1.6.2 - Add UPDATING entry - Ungroup APR - Add missing descriptions - Switch to using OPT_VARS - Add ODBC driver - Remove FreeTDS driver and patch - Remove Windows files from WRKDIR not WRKSRC - Cosmetic fixes - Update patches for new version Reviewed by: ohauer (maintainer) Approved by: ohauer (maintainer) Differential Revision: https://reviews.freebsd.org/D11285 Notes: svn path=/head/; revision=445601
* devel/nspr, security/nss: drop version from SONAMEJan Beich2016-10-091-1/+1
| | | | | | | | | | | | | | | | | | | | | No other downstream appends synthetic library version, and doing so causes underlinking due to fragile build system (see below). Not to mention being unable to swap out bundled libs from upstream builds. $ cc -lplds4 -L/usr/local/lib /usr/lib/crt1.o: In function `_start1': crt1_c.c:(.text+0xa6): undefined reference to `main' /usr/local/lib/libplds4.so: undefined reference to `pthread_set_name_np' /usr/local/lib/libplds4.so: undefined reference to `pthread_create' /usr/local/lib/libplds4.so: undefined reference to `pthread_condattr_init' /usr/local/lib/libplds4.so: undefined reference to `pthread_setschedparam' /usr/local/lib/libplds4.so: undefined reference to `pthread_getschedparam' PR: 213144 Exp-run by: antoine Notes: svn path=/head/; revision=423591
* - add patch to modify apr1 poll() emulation to match behavior expected by serfOlli Hauer2016-08-042-0/+78
| | | | | | | | | | | | | | | | | | serf depends on the poll emulation in apr returning a POLLERR event if a non-blocking connect() attempt fails in order to trigger an IPv6 -> IPv4 fallback, or a fallback to another address for a multi-homed host. On FreeBSD, the poll emulation is done using kqueue, and the result returned by the poll() emulation is POLLIN + POLLHUP. - upstream apache PR: https://bz.apache.org/bugzilla/show_bug.cgi?id=59914 PR: 211430 Submitted by: Don Lewis (truckman@) MFH: 2016Q3 Notes: svn path=/head/; revision=419646
* When there is a do-install target, do not use a post-install target, doMathieu Arnold2016-07-191-1/+0
| | | | | | | | | | | | | | | everything at once. Sometime, rename post-install into a options helper target. I did not fix ports that were such a mess that I could not figure out what they really wanted to do. I also did not change ports that had some version of an auto-plist code in post-install, for the same reason. With hat: portmgr Sponsored by: Absolight Notes: svn path=/head/; revision=418767
* - replace USE_XXX with new USES=xxx notationOlli Hauer2016-07-051-2/+2
| | | | Notes: svn path=/head/; revision=418090
* Remove NLS, DOCS, EXAMPLES and IPV6 from OPTIONS_DEFAULT, they are enabled ↵Dmitry Marakasov2016-05-231-1/+1
| | | | | | | | | by default anyway and don't need to be listed Approved by: portmgr blanket Notes: svn path=/head/; revision=415742
* - Fix trailing whitespace in pkg-descrs, categories [a-f]*Dmitry Marakasov2016-05-191-3/+3
| | | | | | | Approved by: portmgr blanket Notes: svn path=/head/; revision=415498
* Remove ${PORTSDIR}/ from dependencies, categories d, e, f, and g.Mathieu Arnold2016-04-011-4/+4
| | | | | | | | With hat: portmgr Sponsored by: Absolight Notes: svn path=/head/; revision=412346
* - adopt new SQLITE USESOlli Hauer2016-01-101-1/+1
| | | | Notes: svn path=/head/; revision=405735
* Fix ports that confused the meaning of WRKDIR and WRKSRC.Mathieu Arnold2015-11-051-1/+3
| | | | | | | | | | | PR: 204056 Submitted by: mat Reviewed by: bapt Sponsored by: Absolight Differential Revision: https://reviews.freebsd.org/D2735 Notes: svn path=/head/; revision=400848
* - update apr to 1.5.2Olli Hauer2015-05-294-25/+30
| | | | | | | | | | | | | | | | | | | | | | | | | | Changes for APR 1.5.2 *) apr_escape: Correctly calculate the size of the returned string in apr_escape_path and set the correct return value in case we actually escape the string. [<aduryagin gmail.com>] PR 57230. *) apr_poll(cb): fix error paths returned values and leaks. [Yann Ylavic] *) apr_skiplist: Optimize the number of allocations by reusing pooled or malloc()ed nodes for the lifetime of the skiplist. [Yann Ylavic] *) apr_skiplist: Fix possible multiple-free() on the same value in apr_skiplist_remove_all(). [Yann Ylavic] *) apr_global_mutex/apr_proc_mutex: Resolve failures with the POSIX sem implementation in environments which receive signals. [Jeff Trawick] *) apr_skiplist: Fix potential corruption of skiplists leading to results or crashes. [Takashi Sato <takashi tks st>, Eric Covener] PR 56654. Notes: svn path=/head/; revision=387784
* MASTER_SITES cleanup.Mathieu Arnold2015-05-141-2/+1
| | | | | | | | | | | | | | | | | | | | | | - Replace ${MASTER_SITE_FOO} with FOO. - Merge MASTER_SITE_SUBDIR into MASTER_SITES when possible. (This means 99.9% of the time.) - Remove occurrences of MASTER_SITE_LOCAL when no subdirectory was present and no hint of what it should be was present. - Fix some logic. - And generally, make things more simple and easy to understand. While there, add magic values to the FESTIVAL, GENTOO, GIMP, GNUPG, QT and SAMBA macros. Also, replace some EXTRACT_SUFX occurences with USES=tar:*. Checked by: make fetch-urlall-list With hat: portmgr Sponsored by: Absolight Notes: svn path=/head/; revision=386312
* Use proper MAKE_CMD reference.Bryan Drewery2015-03-221-6/+6
| | | | | | | With hat: portmgr Notes: svn path=/head/; revision=381972
* Switch to USES=pgsqlChris Rees2014-11-221-1/+1
| | | | Notes: svn path=/head/; revision=373091
* - update to apr-util-1.5.4Olli Hauer2014-09-225-72/+60
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | - add LICENSE - add CPE support (reflect only apr-util) - s/libtool:keepla/libtool/ [1] - USE_BDB= s/48+/5+/ (db5 is already the default version in the ports tree) - build always with THREADS and remove the THREAD OPTION - use dedicated CONFIGURE_ENV for apr/apr-util [2] - always install lib/apr-util-1 directory - display apr/apr-util build steps with an ECHO_MSG for better buildlog analyzing Changes with APR-util 1.5.4 [3] *) MySQL driver: Fix incorrect handling of bad parameter in the driver support for apr_dbd_transaction_end(). PR 56330. *) apr_crypto_get_driver(): Fix invalid storage reference on error path. *) Fix compile failure for Android. PR 56627. *) Fix detection of Berkeley DB 6.0. PR 55277. *) Improve platform detection for bundled expat by updating config.guess and config.sub. [1] Quick test script snippet: grep apr-1.5 /usr/ports/INDEX* | cut -d\| -f 2 | sort -u | while read i; do grep -H libtool $i/Makefil* done [2] Use "-I${APR_WRKDIR}/include" as first CPPFLAGS value for apr-util (do not include old apr_version.h during the build) [3] http://www.apache.org/dist/apr/CHANGES-APR-1.5 with hat apache@ Notes: svn path=/head/; revision=368985
* - adopt new ${opt}_ARGS for USE and DEPENDSOlli Hauer2014-09-201-27/+38
| | | | | | | | | | | | | | - small cleanup and restructure - add LICENSE - no version bump [1] [1] A new apr-util release is in the pipe and with this commit the next changes are more transparent. with hat apache@ Notes: svn path=/head/; revision=368634
* Berkeley DB cleanup, remove versions 4.0 ... 4.7.Matthias Andree2014-08-211-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | - Mk/bsd.database.mk rewrite, new default to db5. - db6 is eligible by default only if installed on the system. - Bump PORTREVISION of all ports that directly depend on BerkeleyDB or where USE_BDB is found in the port's directory - Patch a few ports such that they will pick up or work with newer versions. - Add UPDATING entry - Drive-by format fix for pks - Drop BerkeleyDB option from mail/popular for now, requires more work. - Exp-run logs linked from the PR below. - Ports that do not build (IGNORE, BROKEN, etc.) have pro-forma changes for new Berkeley DB, but are untested. NOTE: please read UPDATING and the Wiki page before proceeding! Announcement: http://lists.freebsd.org/pipermail/freebsd-ports-announce/2014-August/000090.html Wiki reference: https://wiki.freebsd.org/Ports/BerkeleyDBCleanup PR: 192690 Approved by: portmgr (implicit, PORTREVISION bump on unstaged ports) Notes: svn path=/head/; revision=365599
* net/openldap24-*:Tijl Coosemans2014-07-241-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | - Convert to USES=libtool and bump dependent ports - Avoid USE_AUTOTOOLS - Don't use PTHREAD_LIBS - Use MAKE_CMD databases/glom: - Drop :keepla - Add INSTALL_TARGET=install-strip databases/libgda4* databases/libgda5*: - Convert to USES=libtool and bump dependent ports - USES=tar:xz - Use INSTALL_TARGET=install-strip - Use @sample databases/libgdamm: - Drop :keepla - USES=tar:bzip2 - Use INSTALL_TARGET=install-strip databases/libgdamm5: - Add INSTALL_TARGET=install-strip - Drop --enable-static (inherited from old repocopy) devel/anjuta x11-toolkits/py-gnome-extras: - Drop :keepla dns/powerdns dns/powerdns-devel: - Convert to USES=libtool - Add INSTALL_TARGET=install-strip - Disable static modules - Stop creating library symlinks with .0 suffix, not needed for dynamically opened modules mail/dovecot2: - Add USES=libtool mail/dovecot2-pigeonhole: - Drop CONFIGURE_TARGET (incorrect for Dragonfly) - Add USES=libtool and INSTALL_TARGET=install-strip math/gnumeric: - USES=libtool tar:xz Approved by: portmgr (implicit, bump unstaged ports) Notes: svn path=/head/; revision=362835
* Bump PORTREVISION on all ports with USE_SQLITE=yes or USE_SQLITE=3 thatTijl Coosemans2014-07-041-1/+1
| | | | | | | | | | have not been bumped yet after the latest libsqlite3.so library version change. Approved by: portmgr (implicit) Notes: svn path=/head/; revision=360588
* Support LIBS like LDFLAGS.Tijl Coosemans2014-06-111-2/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | - Add LIBS="${LIBS}" to MAKE_ENV and CONFIGURE_ENV. - Add an option helper for LIBS. - Adjust all ports that already use LIBS. Also remove references to PTHREAD_CFLAGS and PTHREAD_LIBS while here. - Some ports did not support having a LIBS environment variable and required additional patches. Somewhat simplified a linker command line looks like: ${CC} ${src_LDFLAGS} ${LDFLAGS} ${src_LIBS} ${LIBS} where src_LDFLAGS and src_LIBS are controlled by upstream and LDFLAGS and LIBS can be controlled by us. If possible -L and -l flags need to be added to LIBS to make sure they appear after any -L and -l flags set by upstream. Many ports currently add -L${LOCALBASE}/lib to LDFLAGS but this may appear too early on the command line causing installed libraries to be linked in instead of freshly built ones. Additional changes: benchmarks/netio: Replace WITH_IPV6 with an IPV6 option. comms/gnokii: Replace some patches with USES=pathfix. Also remove -fPIC. graphics/gimageview: USES=libtool and install desktop file in DESKTOPDIR. graphics/visionworkbench: Remove FreeBSD 7 support. multimedia/libmovtar: New LIB_DEPENDS syntax. multimedia/opencinematools: Use standard do-build. net/siproxd: USES=libtool:keepla (port actually needs .la files for plugins) net-mgmt/nagios: Remove -fPIC. net-mgmt/nagios4: Remove -fPIC. print/cups-base: Only add -lssp_nonshared on i386 and OSVERSION < 1000036. security/p11-kit: Replace PTHREAD_LIBS in CONFIGURE_ENV with ac_cv_func_pthread_mutexattr_init=no in CONFIGURE_ARGS. This skips a test in configure that falsely detects pthread_mutexattr_init in our libc. sysutils/dar: Fix iconv detection. x11/rxvt-unicode: Remove -lstdc++ and patch configure to remove a FreeBSD hack and use $CXX as linker as on other platforms. PR: 190592 Exp-run by: antoine Approved by: portmgr (antoine) Notes: svn path=/head/; revision=357486
* - USES libtool:keeplaOlli Hauer2014-06-112-5/+11
| | | | | | | | | | | - bump PORTREVISION Originally I planned to keep this change on hold, but a couple of minutes before gdbm was changed so this is a good time to annoy users only once. Notes: svn path=/head/; revision=357445
* - update apr to 1.5.1Olli Hauer2014-04-215-81/+16
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | - use OPTIONS_SUB instead PLIST_SUB - remove back ported patch - use POSIX instead SysV SHM - remove LDFLAGS from CONFIGURE_ENV (unbreak auto. testing) Changes for APR 1.5.1 *) apr_os_proc_mutex_get() on Unix: Avoid segfault for cross- process pthread mutexes. [Yann Ylavic <ylavic.dev gmail.com>] *) When using shmget-based shared memory, the ID used for ftok is now an APR hash of the filename instead of the constant '1'. We do this to help avoid collisions. PR 53996 [Jim Jagielski] *) apr_socket_atreadeof(): Fix breakage on OS X. [Jim Jagielski] *) Fix POSIX shared memory (shm_open) use for named shared memory. Includes adding '--enable-posix-shm' to force POSIX shm if available, and OS X compatibility. PR 55928. [Jozef Hatala <jh-asf skrt org>, Jim Jagielski] *) Fix race condition when calling apr_dir_make_recursive from multiple threads on Windows. [Bert Huijben] *) Fix apr_escape.c compilation errors on EBCDIC platforms. [Eric Covener] *) FreeBSD 10: Correct a regression in 1.5.0 which affected non- blocking sockets in some applications, including httpd. [Jeff Trawick] *) apr_skiplist: Add compatibility with C++ applications. [Jeff Trawick] *) Correct a regression in 1.5.0 which affected out-of-tree builds on Unix. [Rainer Jung] *) Improve platform detection for bundled expat by updating config.guess and config.sub. [Rainer Jung] with hat apache@ Notes: svn path=/head/; revision=351698
* - update to apr-1.5.0Olli Hauer2014-03-225-16/+60
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | - add fix for FreeBSD 10 obtained from http://svn.apache.org/viewvc?view=revision&revision=1551672 - bump USE_BDB=42+ -> USE_BDB=48+ [1] - add entry to UPDATING Changes for APR 1.5.0 (shortened) http://www.apache.org/dist/apr/CHANGES-APR-1.5 *) Add apr_sockaddr_is_wildcard() to check if a socket address refers to the wildcard address for the protocol family (e.g., 0.0.0.0/INADDR_ANY for IPv4). [Jeff Trawick] *) Add the apr_escape interface. [Graham Leggett] *) Add apr_skiplist family. [Jim Jagielski] *) Add the apr_table_getm() call, which transparently handles the merging of keys with multiple values. [Graham Leggett] *) Add apr_hash_this_key(), apr_hash_this_key_len(), and apr_hash_this_val() for easier access to those attributes from a hash iterator. [Hyrum K. Wright <hyrum_wright mail.utexas.edu>] *) Improve platform detection by updating config.guess and config.sub. [Rainer Jung] *) apr_socket_opt_set: Add support for APR_SO_BROADCAST. PR 46389. [Armin MÃŒller <mueller itestra com>] *) Enable platform specific support for the opening of a file or pipe in non-blocking mode through the APR_FOPEN_NONBLOCK flag. [Graham Leggett] [1] requested by Pavel Timofeev, Sean Bruno with hat apache@ PR: ports/186441 PR: ports/186899 Notes: svn path=/head/; revision=348807
* No need to define IPV6 twiceMathieu Arnold2014-02-101-2/+0
| | | | | | | | Pointy hat to: ehaupt Sponsored by: Absolight Notes: svn path=/head/; revision=343654
* According to the Porter's Handbook (5.12.2.3.) default options must be added toEmanuel Haupt2014-02-101-0/+2
| | | | | | | | | | | | | | OPTIONS_DEFINE. This policy has been implemented only recently that's why we have many ports violating this policy. This patch adds the default options specified in the Porter's Handbook to OPTIONS_DEFINE where they are being used. Ports maintained by gnome@FreeBSD.org, kde@FreeBSD.org and x11@FreeBSD.org have been excluded. Approved by: portmgr (bapt) Notes: svn path=/head/; revision=343634
* - update apr-util to 1.5.3Olli Hauer2013-11-243-12/+10
| | | | | | | | | | | | | | | | | | | - *no update* to apr-1.5.0 [1] Changes with APR-util 1.5.3 *) Fix warnings in odbc driver on 64bit systems. PR 55197 [Tom Donovan] *) Add support to apr_memcache for unix domain sockets. PR 54573 [Remi Gacogne <rgacogne+asf aquaray.com>] *) Add support for Berkeley DB 6.0. [Rainer Jung] [1] apache24 is broken if build against apr-1.5.0 and enable-v4-mapped is set to ON (the default) Notes: svn path=/head/; revision=334778
* - add stage supportOlli Hauer2013-09-291-3/+4
| | | | Notes: svn path=/head/; revision=328721
* Add NO_STAGE all over the place in preparation for the staging support (cat: ↵Baptiste Daroussin2013-09-201-0/+1
| | | | | | | devel part 1) Notes: svn path=/head/; revision=327722
* Introduce variable ICONV_PREFIX at Mk/Uses/iconv.mk. The default forBoris Samorodov2013-09-071-1/+1
| | | | | | | | | | pre 100043 is ${LOCALBASE} and /usr otherwise. Convert all ports to new variable usage. Approved by: portmgr (bapt, implicit) Notes: svn path=/head/; revision=326683
* - Remove MAKE_JOBS_SAFE variableAlex Kozlov2013-08-141-1/+0
| | | | | | | Approved by: portmgr (bdrewery) Notes: svn path=/head/; revision=324744
* - update devel/apr1Olli Hauer2013-07-065-98/+69
| | | | | | | | | | | | | | | | | | | | apr-1.4.6 -> apr-1.4.8 apr-util-1.4.1 -> apr-util-1.5.2 - add support for NSS crypto driver (apr-util) Changes URL's: http://svn.apache.org/viewvc/apr/apr/branches/1.4.x/CHANGES?view=markup http://svn.apache.org/viewvc/apr/apr-util/branches/1.5.x/CHANGES?view=markup http://svn.apache.org/viewvc/apr/apr-util/branches/1.4.x/CHANGES?view=markup Thanks to tijl@ for sending patches to the apache@ list. http://lists.freebsd.org/pipermail/freebsd-apache/2013-June/003172.html with hat apache@ Notes: svn path=/head/; revision=322367
* - Convert USE_ICONV=yes to USES=iconvMarcus von Appen2013-04-271-1/+1
| | | | | | | | | - Change USE_GNOME=pkgconfig|gnomehack to USES=pathfix|pkgconfig while here Reviewed by: bapt, kwm Notes: svn path=/head/; revision=316654
* - fix build with freetdsOlli Hauer2013-03-261-1/+1
| | | | | | | | | | - no version bump (not a default option) PR: 177118 Submitted by: Christopher Dukes <chris.dukes.aix@gmail.com> Notes: svn path=/head/; revision=315269
* - Revert PTHREAD cleanup, else apr-1-config returns wrong valuesOlli Hauer2013-02-191-0/+4
| | | | | | | | | | even if build with explicit LDFLAGS set. Noted on the apache@ list by Geoff Speicher http://lists.freebsd.org/pipermail/freebsd-apache/2013-February/003044.html Notes: svn path=/head/; revision=312605
* - Get rid of PTHREAD_CFLAGS and PTHREAD_LIBS (category: devel)Pietro Cerutti2013-02-141-3/+0
| | | | | | | Approved by: portmgr Notes: svn path=/head/; revision=312209
* - add apu OPTION for freetdsOlli Hauer2013-01-133-5/+576
| | | | | | | | | | | | | | | (no PORTREVISION bump, since not a default option) Requested on http://lists.freebsd.org/pipermail/freebsd-apache/2013-January/003020.html Apache bug Id. https://issues.apache.org/bugzilla/show_bug.cgi?id=53666 Submitted by: "Mikhail T." <mi+thun@aldan.algebra.com> Notes: svn path=/head/; revision=310344
* Fix PLIST.Alex Dupre2012-12-141-1/+3
| | | | Notes: svn path=/head/; revision=308907
* - add and enable Crypto framework [1]Olli Hauer2012-12-122-14/+49
| | | | | | | | | | | | | (only OpenSSL, there are some build issues with NSS) - remove unused PERL build dependency [2] - use OPTIONS_GROUP instead OPTIONS_DEFINE - bump PORTREVISION [1] requested by many on the apache@ list [2] thanks to andre@ (noted on the apache@ list) Notes: svn path=/head/; revision=308787
* devel/apr1 [1]Olli Hauer2012-09-025-76/+16
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | - update APR to 1.4.6 - update APR-util to 1.4.1 - remove PKGNAMESUFFIX'es www/apache-(event|itk|peruser|worker)-mpm - adopt new Makefile header, adjust PKGNAMESUFFIX in apache22 masterport PKGNAME match now LATEST_LINK www/apache22 [2]-[6] - rewrite for options NG - PORTNAME s|apache|apache22| - remove APR APR-util specific otions, will be checked now with help of apr/u-1-config Mk/bsd.apache.mk - rewrite for options NG - remove no longer needet make targets (show-categories, make-options-list) [1] PR: 165143 [2]-[6] PR: 130479 PR: 153406 PR: 158565 PR: 168769 PR: 167965 with hat apache@ Notes: svn path=/head/; revision=303550
* - cleanup option desc.Olli Hauer2012-07-081-13/+9
| | | | Notes: svn path=/head/; revision=300630
* - convert to options NGOlli Hauer2012-07-082-102/+105
| | | | | | | - sort pkg-plist Notes: svn path=/head/; revision=300627