mirror of
https://git.freebsd.org/ports.git
synced 2025-06-28 16:10:33 -04:00
- Pass maintainership to submitter Changelog: - no more run as root, uses own user and group by default - RCng startup script (trircd) - fixed build for amd64 - installs bin/tr-ircd instead of bin/ircd (conflict with irc/ircd-hybrid, irc/ptlink-ircd & co.) - does not install bin/md5sum (we have our md5) (conflict with archivers/dpkg and not necessary) - run and log directories can be defined via TRIRCD_RUNDIR and TRIRCD_LOGDIR - configuration directory via TRIRCD_CONFDIR (can be specified on runtime as well) - user and group definable via TRIRCD_USER TRIRCD_GROUP PR: 108835 Submitted by: Martin Matuska <martin@matuska.org>
29 lines
837 B
Text
29 lines
837 B
Text
--- configure.orig Tue Jan 18 17:06:36 2005
|
|
+++ configure Wed Feb 7 12:27:41 2007
|
|
@@ -2688,7 +2688,7 @@
|
|
echo "$as_me:$LINENO: result: Detected FreeBSD: -pthread" >&5
|
|
echo "${ECHO_T}Detected FreeBSD: -pthread" >&6
|
|
IRC_CFLAGS="$IRC_CFLAGS -pthread"
|
|
- PROG_IRCD="ircd"
|
|
+ PROG_IRCD="tr-ircd"
|
|
PROG_MD5SUM="md5sum"
|
|
PROG_TOOLS="ircpasswd"
|
|
;;
|
|
@@ -3665,7 +3665,7 @@
|
|
|
|
|
|
INSTALL="$PWD/autoconf/install-sh -c"
|
|
-INSTALL_PROGRAM="$INSTALL -m 4755"
|
|
+INSTALL_PROGRAM="$INSTALL -m 0755"
|
|
INSTALL_DATA="$INSTALL -m 0644"
|
|
|
|
make_is_gmake=0
|
|
@@ -9865,7 +9865,7 @@
|
|
#include <openssl/opensslv.h>
|
|
#include <stdlib.h>
|
|
int main(void) {
|
|
- if ( (OPENSSL_VERSION_NUMBER & 0x00906000) == 0x00906000)
|
|
+ if ( OPENSSL_VERSION_NUMBER >= 0x00906000 )
|
|
{
|
|
exit(0);
|
|
}
|