aboutsummaryrefslogtreecommitdiff
path: root/make/template
Commit message (Expand)AuthorAgeFilesLines
* Update copyright headers.Gravatar InspIRCd Robot2025-01-041-1/+1
* Add a command for rehashing TLS profiles to the helper script.Gravatar Sadie Powell2024-11-271-2/+14
* Merge branch 'insp3' into insp4.Gravatar Sadie Powell2024-10-173-4/+4
|\
| * Tell people to connect to Teranova directly instead of our alias.Gravatar Sadie Powell2024-10-134-5/+5
* | Merge branch 'insp3' into insp4.Gravatar Sadie Powell2024-10-103-3/+3
|\|
| * Revert "Tell people to use the main ChatSpike domain not our alias".•••This reverts commit 78c4f3bd97d003d0f528d98752e0528023b27045. Gravatar Sadie Powell2024-10-084-4/+4
| * Tell people to use the main ChatSpike domain not our alias.•••Backport from master. Gravatar Sadie Powell2024-07-074-4/+4
* | Use -I for the vendor directory instead of -isystem.•••Fixes {fmt} from the system conflicting with our local vendored copy of {fmt}. Thanks to @slimture for testing. Closes #2105. Gravatar Sadie Powell2024-09-091-1/+1
* | Update copyright headers.Gravatar InspIRCd Robot2024-09-071-1/+1
* | Add a config variable for the example dir.•••This makes including example files easier on system-wide installs. Gravatar Sadie Powell2024-08-301-0/+3
* | Make the Perl helper script somewhat cleaner.•••- Avoid duplicate check* methods. - Remove some broken valgrind behaviour. - Call executable instead of hardcoding the version. - Simplify $binpath/$executable code. Gravatar Sadie Powell2024-08-101-73/+40
* | Update copyright headers.Gravatar InspIRCd Robot2024-07-143-1/+3
* | Use getentropy() from POSIX 2024 if it is available.Gravatar Sadie Powell2024-07-131-0/+3
* | Build with -pie as well as -fPIE.•••Co-authored-by: Marcus Rueckert <darix@nordisch.org> Gravatar Sadie Powell2024-07-031-1/+1
* | Update the AppArmor profile for the new profile syntax.•••Co-authored-by: Marcus Rueckert <darix@nordisch.org> Gravatar Sadie Powell2024-07-031-7/+10
* | Update copyright headers.Gravatar InspIRCd Robot2024-07-021-1/+1
* | Update copyright headers.Gravatar InspIRCd Robot2024-06-291-1/+1
* | Bump the man page change dates for the previous commit.Gravatar Sadie Powell2024-06-292-2/+2
* | Tell people to use the main ChatSpike domain not our alias.Gravatar Sadie Powell2024-06-283-3/+3
* | Update copyright headers.Gravatar InspIRCd Robot2024-06-212-3/+3
* | Make filenames a bit more friendly for Windows users.Gravatar Sadie Powell2024-06-171-8/+8
* | Update copyright headers.Gravatar InspIRCd Robot2024-06-142-2/+2
* | Fix some references to --debug that should be --protocoldebug now.Gravatar Sadie Powell2024-06-112-7/+11
* | Update copyright headers.Gravatar InspIRCd Robot2024-06-072-4/+3
* | Merge branch 'insp3' into insp4.Gravatar Sadie Powell2024-06-071-1/+1
|\|
| * Update copyright headers.Gravatar InspIRCd Robot2024-06-071-1/+1
| * Fix building on macOS.•••It seems like Apple have killed the remaining bits of TR1. Thankfully, all Apple systems we support now have a C++11 compiler so we can just force that on macOS. [skip alpine ci] [skip irctest ci] [skip ubuntu ci] [skip windows ci] Gravatar Sadie Powell2024-05-161-0/+1
* | Move ssl_mbedtls to inspircd-contrib.•••Closes #2088. Gravatar Sadie Powell2024-04-151-1/+1
* | Merge branch 'insp3' into master.Gravatar Sadie Powell2023-11-141-6/+4
|\|
| * Fix the helper script on newer versions of Valgrind.Gravatar Sadie Powell2023-11-061-6/+4
* | Merge branch 'insp3' into master.Gravatar Sadie Powell2023-08-152-0/+35
|\|
| * Add a script for deploying SSL files from an ACME renewal tool.Gravatar Sadie Powell2023-08-152-0/+35
* | Merge branch 'insp3' into master.Gravatar Sadie Powell2023-07-152-2/+2
|\|
| * Update copyright headers.Gravatar InspIRCd Robot2023-07-152-2/+2
* | Simplify the codes that InspIRCd can exit with.•••The custom codes that InspIRCd exits with are not very useful and can confuse init systems like systemd which assume that certain exit codes mean certain things. INSPIRCD_BINARY_EXIT was a workaround for this in v3 but considering thatsers have to check the logs anyway so we may as well just use EXIT_SUCCESS and EXIT_FAILURE. Gravatar Sadie Powell2023-07-131-46/+0
* | Merge branch 'insp3' into master.Gravatar Sadie Powell2023-07-121-1/+3
|\|
| * Define _BSD_SOURCE when building on Haiku.•••This fixes a few modules which depend on common BSD extensions. Gravatar Sadie Powell2023-07-121-0/+3
* | Merge branch 'insp3' into master.Gravatar Sadie Powell2023-07-051-1/+1
|\|
| * Fix a missing quote in the inspircd.1 man page.Gravatar Sadie Powell2023-07-041-1/+1
* | Merge branch 'insp3' into master.Gravatar Sadie Powell2023-04-281-1/+1
|\|
| * Update copyright headers.Gravatar InspIRCd Robot2023-04-281-1/+1
* | Clean up some remaining old format string stuff.Gravatar Sadie Powell2023-01-241-1/+1
* | Vendor the fmtlib library.Gravatar Sadie Powell2023-01-231-1/+1
* | Merge branch 'insp3' into master.Gravatar Sadie Powell2023-01-091-2/+2
|\|
| * Fix suspending GDB when the process gets sent a signal.Gravatar Sadie Powell2023-01-091-2/+2
* | Merge branch 'insp3' into master.Gravatar Sadie Powell2023-01-011-1/+1
|\|
| * Update copyright headers.Gravatar InspIRCd Robot2022-12-301-1/+1
* | Merge branch 'insp3' into master.Gravatar Sadie Powell2022-12-101-1/+1
|\|
| * Fix building with the Intel C++ compiler.•••- Fix adding -Wshadow in the compiler flags twice. - Detect the new Clang-based Intel compiler as well as the old one. - Silence some deprecation warnings using Intel syntax. Gravatar Sadie Powell2022-12-101-1/+1
* | Fix more warnings discovered with -Weverything.Gravatar Sadie Powell2022-09-051-1/+1