aboutsummaryrefslogtreecommitdiff
path: root/misc/dahdi-kmod26
Commit message (Collapse)AuthorAgeFilesLines
* all: Remove all other $FreeBSD keywords.Mathieu Arnold2021-04-061-3/+1
|
* Remove # $FreeBSD$ from Makefiles.Mathieu Arnold2021-04-061-1/+0
|
* misc/dahdi-kmod26: enable on powerpc64Piotr Kubaj2021-01-171-1/+1
| | | | | | | MFH: 2021Q1 Notes: svn path=/head/; revision=561792
* Sort ARCHS. While here, pet portlint.Mark Linimon2017-06-271-2/+3
| | | | | | | Approved by: portmgr (tier-2 blanket) Notes: svn path=/head/; revision=444437
* Remove ${PORTSDIR}/ from dependencies, categories m, n, o, and p.Mathieu Arnold2016-04-011-1/+1
| | | | | | | | With hat: portmgr Sponsored by: Absolight Notes: svn path=/head/; revision=412348
* Unbreak on -CURRENT (taskqueue_enqueue_fast(9) removed).Max Khon2016-03-112-0/+26
| | | | Notes: svn path=/head/; revision=410809
* 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
* Bump PORTREVISION.Max Khon2015-03-211-0/+1
| | | | Notes: svn path=/head/; revision=381822
* Give kernel module a few seconds to initialize hardware beforeMax Khon2015-03-211-0/+1
| | | | | | | | | | calling dahdi_cfg. PR: 188780 Submitted by: Dan Lukes Notes: svn path=/head/; revision=381821
* Unbreak build with clang 3.6.Max Khon2015-03-212-0/+22
| | | | Notes: svn path=/head/; revision=381817
* Unbreak build on -CURRENT (missing include).Max Khon2015-03-211-0/+10
| | | | Notes: svn path=/head/; revision=381816
* Unbreak on -CURRENT (ignore unused command line arguments for clang).Max Khon2015-01-281-0/+18
| | | | Notes: svn path=/head/; revision=378028
* SYSCTL_ROOT_NODE exists only on FreeBSD >= 1100024Max Khon2014-09-131-4/+7
| | | | Notes: svn path=/head/; revision=368087
* Allow staging as a regular userAntoine Brodin2014-09-061-1/+1
| | | | Notes: svn path=/head/; revision=367425
* Unbreak on -CURRENT.Max Khon2014-08-311-0/+11
| | | | Notes: svn path=/head/; revision=366805
* - Unbreak on FreeBSD 11.Max Khon2014-05-106-89/+4
| | | | | | | - Switch to a newer snapshot that already contains port patches. Notes: svn path=/head/; revision=353565
* Convert all :U to :tu and :L to :tlBaptiste Daroussin2014-05-051-1/+1
| | | | | | | | | | | | | | | | | Since FreeBSD 8.4 and FreeBSD 9.1 make(1) do support :tu and :tl as a replacement for :U and :L (which has been marked as deprecated) bmake which is the default on FreeBSD 10+ only support by default :tu/:tl a hack has been added at the time to support :U and :L to ease migration. This hack is now not necessary anymore Note that this makes the ports tree incompatible with make(1) from FreeBSD 8.3 or earlier With hat: portmgr Notes: svn path=/head/; revision=352986
* Unbreak on -CURRENT: M_DONTWAIT -> M_NOWAIT.Max Khon2014-02-091-0/+33
| | | | Notes: svn path=/head/; revision=343454
* Fix FreeBSD 10 (and later) compilation patch (FreeBSD version check).Max Khon2014-02-091-4/+6
| | | | Notes: svn path=/head/; revision=343453
* - Stage supportRene Ladan2014-01-262-7/+8
| | | | | | | | | | - Remove obsolete NO_PACKAGE - Remove IGNORE check for obsolete versions of FreeBSD Approved by: portmgr (infrastructure blanket) Notes: svn path=/head/; revision=341258
* Unbreak on FreeBSD 10 and clang.Max Khon2013-11-182-0/+42
| | | | Notes: svn path=/head/; revision=334177
* Convert to USES=kmod, which removes duplicated code and ensures that allRene Ladan2013-11-092-15/+4
| | | | | | | | | | | | | | | | required steps are followed. There are no user-visible changes. The exception is multimedia/ptx-kmod, which now installs the kernel module into /boot/modules instead of ${PREFIX}/libexec/${PORTNAME}, this was something USES=kmod cannot handle. PR: ports/183625 Submitted by: myself Approved by: portmgr (bdrewery) Exp-run by: bdrewery Notes: svn path=/head/; revision=333329
* Add NO_STAGE all over the place in preparation for the staging support (cat: ↵Baptiste Daroussin2013-09-201-0/+1
| | | | | | | misc) Notes: svn path=/head/; revision=327745
* SSP support has been added to ports with WITH_SSP for i386 and amd64Bryan Drewery2013-09-201-5/+3
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | on FreeBSD 10, and amd64 on earlier versions. SSP_UNSAFE is added to disable in a port if it fails to build, but this should only be used in rare circumstances such as kernel modules. Otherwise, the port may just be failing due to lack of respecting LDFLAGS. On FreeBSD 10, this uses an ldscript in /usr/lib/libc.so to pull in libssp_nonshared.a to address issues linking on i386 [1]. On earlier FreeBSD versions the WITH_SSP knob will add -lssp_nonshared to LDFLAGS on i386. This is not needed on amd64. However, several hundred ports do not currently respect LDFLAGS, so this support is disabled currently as it causes build failures if a dependency is looking for the stack_chk symbols. Many thanks to jlh@ for this as he had many years of patience in getting all of the necessary pieces [1][2] in. [1] http://svnweb.freebsd.org/base/head/lib/libc/libc.ldscript?revision=251668&view=markup PR: ports/138228 [2] Submitted by: jlh (bsd.ssp.mk based on) Reviewed by: bapt With hat: portmgr exp-runs done: 37 over a month on 91i386,91amd64,10i386,10amd64 Notes: svn path=/head/; revision=327697
* Update to 2.6.1-r10738:Max Khon2012-12-052-3/+3
| | | | | | | | | | - fix kernel memory corruption due to double free on wct4xxp driver unload - fix double free's on error path in wct12xp driver initialization Feature safe: yes Notes: svn path=/head/; revision=308336
* DAHDI 2.6.1 development version:Max Khon2012-08-296-0/+242
- Digium TE820: PCI-Express eight-port T1/E1/J1 is now supported - new FreeBSD compat shims (similar to OFED in FreeBSD 9 and later) - wcb1xxp support (temporarily) removed - it was not working in 2.4 port anyway - dahdi_dynamic is likely to be broken Notes: svn path=/head/; revision=303334