mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-26 09:46:09 +00:00
bc4d0f9efe
psyBNC is an extremely powerful IRC bouncer with multiple unique features. PR: ports/45720 Submitted by: Mina Naguib <webmaster@topfx.com>
24 lines
1.6 KiB
Plaintext
24 lines
1.6 KiB
Plaintext
--- ./tools/autoconf.c Fri May 17 13:21:08 2002
|
|
+++ ../../psybnc.mina/tools/autoconf.c Sun Nov 24 19:43:42 2002
|
|
@@ -442,9 +442,9 @@
|
|
fprintf(makefile,"INCLUDE = -I./src/ -I.\n");
|
|
fprintf(makefile,"OBJS = src/psybnc.o src/match.o src/p_client.o src/p_crypt.o src/p_dcc.o src/p_hash.o src/p_idea.o src/p_inifunc.o src/p_link.o src/p_log.o src/p_memory.o src/p_network.o src/p_parse.o src/p_peer.o src/p_server.o src/p_socket.o src/p_string.o src/p_sysmsg.o src/p_userfile.o src/p_uchannel.o src/p_script.o src/p_topology.o src/p_intnet.o src/p_blowfish.o src/p_translate.o src/p_coredns.o src/snprintf.o %s\n",env);
|
|
if(provi==0)
|
|
- fprintf(makefile,"DEFINE = -DHAVE_CONFIG %s%s%s%s%s%s\n",sunosopt,bigopt,ipv6opt,timeopt,sslopt,dnsopt);
|
|
+ fprintf(makefile,"DEFINE = -DHAVE_CONFIG %s%s%s%s%s%s -DPSYBASE=\\\"%s\\\" -DPREFIX=\\\"%s\\\"\n",sunosopt,bigopt,ipv6opt,timeopt,sslopt,dnsopt, PSYBASE, PREFIX);
|
|
else
|
|
- fprintf(makefile,"DEFINE = -DHAVE_PROV_CONFIG %s%s%s%s%s%s\n",sunosopt,bigopt,ipv6opt,timeopt,sslopt,dnsopt);
|
|
+ fprintf(makefile,"DEFINE = -DHAVE_PROV_CONFIG %s%s%s%s%s%s -DPSYBASE=\\\"%s\\\" -DPREFIX=\\\"%s\\\"\n",sunosopt,bigopt,ipv6opt,timeopt,sslopt,dnsopt, PSYBASE, PREFIX);
|
|
fprintf(makefile,"TARGET = psybnc\n");
|
|
fprintf(makefile,"\n");
|
|
fprintf(makefile,"all: $(OBJS)\n");
|
|
@@ -452,7 +452,7 @@
|
|
fprintf(makefile," @strip $(TARGET)\n");
|
|
if(ssl==0)
|
|
{
|
|
- if(!fexists("key/psybnc.cert.pem")) /* only create, if not exist */
|
|
+ if(!fexists(PSYBASE "/key/psybnc.cert.pem")) /* only create, if not exist */
|
|
{
|
|
mkdir("key",0700);
|
|
fprintf(makefile," @echo \"*** GENERATING SSL-KEYS FROM CERTIFICATE **\"\n");
|