patches/ircii-01-config.diff
author jurikm
Sun, 12 Feb 2012 14:04:10 +0000
changeset 8245 383896da4129
parent 368 4f17f8b5e830
permissions -rw-r--r--
SFEsauerbraten.spec: add IPS package name
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
368
4f17f8b5e830 2007-08-30 Doug Scott <[email protected]>
drdoug007
parents:
diff changeset
     1
diff -uNr ircii-4.4X/Makefile.in ircii-4.4X.new/Makefile.in
4f17f8b5e830 2007-08-30 Doug Scott <[email protected]>
drdoug007
parents:
diff changeset
     2
--- ircii-4.4X/Makefile.in	Sat Apr 15 18:04:02 2000
4f17f8b5e830 2007-08-30 Doug Scott <[email protected]>
drdoug007
parents:
diff changeset
     3
+++ ircii-4.4X.new/Makefile.in	Wed Aug 23 00:47:34 2000
4f17f8b5e830 2007-08-30 Doug Scott <[email protected]>
drdoug007
parents:
diff changeset
     4
@@ -135,16 +135,16 @@
4f17f8b5e830 2007-08-30 Doug Scott <[email protected]>
drdoug007
parents:
diff changeset
     5
 
4f17f8b5e830 2007-08-30 Doug Scott <[email protected]>
drdoug007
parents:
diff changeset
     6
 # Set the next line to the full path for installation of the ircio program
4f17f8b5e830 2007-08-30 Doug Scott <[email protected]>
drdoug007
parents:
diff changeset
     7
 # if you wish to use it. 
4f17f8b5e830 2007-08-30 Doug Scott <[email protected]>
drdoug007
parents:
diff changeset
     8
-INSTALL_IRCIO = $(bindir)/ircio
4f17f8b5e830 2007-08-30 Doug Scott <[email protected]>
drdoug007
parents:
diff changeset
     9
+INSTALL_IRCIO = $(bindir)/ircio-ircii
4f17f8b5e830 2007-08-30 Doug Scott <[email protected]>
drdoug007
parents:
diff changeset
    10
 
4f17f8b5e830 2007-08-30 Doug Scott <[email protected]>
drdoug007
parents:
diff changeset
    11
 # This little program is necessary to have an interactive shell
4f17f8b5e830 2007-08-30 Doug Scott <[email protected]>
drdoug007
parents:
diff changeset
    12
 # in a window of ircII. The 'shell' script uses it, so also update
4f17f8b5e830 2007-08-30 Doug Scott <[email protected]>
drdoug007
parents:
diff changeset
    13
 # the path in there, if you want to enable this.
4f17f8b5e830 2007-08-30 Doug Scott <[email protected]>
drdoug007
parents:
diff changeset
    14
-INSTALL_IRCFLUSH = $(bindir)/ircflush
4f17f8b5e830 2007-08-30 Doug Scott <[email protected]>
drdoug007
parents:
diff changeset
    15
+INSTALL_IRCFLUSH = $(bindir)/ircflush-ircii
4f17f8b5e830 2007-08-30 Doug Scott <[email protected]>
drdoug007
parents:
diff changeset
    16
 
4f17f8b5e830 2007-08-30 Doug Scott <[email protected]>
drdoug007
parents:
diff changeset
    17
 # This program allows you to use screen/xterm's to put new irc windows
4f17f8b5e830 2007-08-30 Doug Scott <[email protected]>
drdoug007
parents:
diff changeset
    18
 # on new screen/xterm windows.
4f17f8b5e830 2007-08-30 Doug Scott <[email protected]>
drdoug007
parents:
diff changeset
    19
-INSTALL_WSERV = $(bindir)/wserv
4f17f8b5e830 2007-08-30 Doug Scott <[email protected]>
drdoug007
parents:
diff changeset
    20
+INSTALL_WSERV = $(bindir)/wserv-ircii
4f17f8b5e830 2007-08-30 Doug Scott <[email protected]>
drdoug007
parents:
diff changeset
    21
 
4f17f8b5e830 2007-08-30 Doug Scott <[email protected]>
drdoug007
parents:
diff changeset
    22
 # This command will be used to install the irc help files.  If you don't
4f17f8b5e830 2007-08-30 Doug Scott <[email protected]>
drdoug007
parents:
diff changeset
    23
 # want to install them, replace with the following:
4f17f8b5e830 2007-08-30 Doug Scott <[email protected]>
drdoug007
parents:
diff changeset
    24
@@ -178,7 +178,7 @@
4f17f8b5e830 2007-08-30 Doug Scott <[email protected]>
drdoug007
parents:
diff changeset
    25
 
4f17f8b5e830 2007-08-30 Doug Scott <[email protected]>
drdoug007
parents:
diff changeset
    26
 installirc: irc installdirs
4f17f8b5e830 2007-08-30 Doug Scott <[email protected]>
drdoug007
parents:
diff changeset
    27
 	$(INSTALL) irc $(INSTALL_IRC)-$(VERSION)
4f17f8b5e830 2007-08-30 Doug Scott <[email protected]>
drdoug007
parents:
diff changeset
    28
-	$(INSTALL) ircbug $(bindir)/ircbug
4f17f8b5e830 2007-08-30 Doug Scott <[email protected]>
drdoug007
parents:
diff changeset
    29
+	$(INSTALL) ircbug $(bindir)/ircbug-ircii
4f17f8b5e830 2007-08-30 Doug Scott <[email protected]>
drdoug007
parents:
diff changeset
    30
 	@if test -f $(INSTALL_IRC).old; then $(RM) $(INSTALL_IRC).old; fi
4f17f8b5e830 2007-08-30 Doug Scott <[email protected]>
drdoug007
parents:
diff changeset
    31
 	@if test -f $(INSTALL_IRC); then $(MV) $(INSTALL_IRC) $(INSTALL_IRC).old; fi
4f17f8b5e830 2007-08-30 Doug Scott <[email protected]>
drdoug007
parents:
diff changeset
    32
 	$(RM) $(INSTALL_IRC)
4f17f8b5e830 2007-08-30 Doug Scott <[email protected]>
drdoug007
parents:
diff changeset
    33
diff -uNr ircii-4.4X/configure.in ircii-4.4X.new/configure.in
4f17f8b5e830 2007-08-30 Doug Scott <[email protected]>
drdoug007
parents:
diff changeset
    34
--- ircii-4.4X/configure.in	Wed Aug 23 00:44:23 2000
4f17f8b5e830 2007-08-30 Doug Scott <[email protected]>
drdoug007
parents:
diff changeset
    35
+++ ircii-4.4X.new/configure.in	Wed Aug 23 00:48:22 2000
4f17f8b5e830 2007-08-30 Doug Scott <[email protected]>
drdoug007
parents:
diff changeset
    36
@@ -696,7 +696,7 @@
4f17f8b5e830 2007-08-30 Doug Scott <[email protected]>
drdoug007
parents:
diff changeset
    37
 
4f17f8b5e830 2007-08-30 Doug Scott <[email protected]>
drdoug007
parents:
diff changeset
    38
 if test ! -n "$IRCLIB";
4f17f8b5e830 2007-08-30 Doug Scott <[email protected]>
drdoug007
parents:
diff changeset
    39
 then
4f17f8b5e830 2007-08-30 Doug Scott <[email protected]>
drdoug007
parents:
diff changeset
    40
-	IRCLIB=\${datadir}/irc
4f17f8b5e830 2007-08-30 Doug Scott <[email protected]>
drdoug007
parents:
diff changeset
    41
+	IRCLIB=\${datadir}/ircii
4f17f8b5e830 2007-08-30 Doug Scott <[email protected]>
drdoug007
parents:
diff changeset
    42
 fi
4f17f8b5e830 2007-08-30 Doug Scott <[email protected]>
drdoug007
parents:
diff changeset
    43
 AC_SUBST(IRCLIB)
4f17f8b5e830 2007-08-30 Doug Scott <[email protected]>
drdoug007
parents:
diff changeset
    44
 
4f17f8b5e830 2007-08-30 Doug Scott <[email protected]>
drdoug007
parents:
diff changeset
    45
diff -uNr ircii-4.4X/include/config.h.dist ircii-4.4X.new/include/config.h.dist
4f17f8b5e830 2007-08-30 Doug Scott <[email protected]>
drdoug007
parents:
diff changeset
    46
--- ircii-4.4X/include/config.h.dist	Sun Jun 11 09:30:54 2000
4f17f8b5e830 2007-08-30 Doug Scott <[email protected]>
drdoug007
parents:
diff changeset
    47
+++ ircii-4.4X.new/include/config.h.dist	Wed Aug 23 00:53:14 2000
4f17f8b5e830 2007-08-30 Doug Scott <[email protected]>
drdoug007
parents:
diff changeset
    48
@@ -47,7 +47,7 @@
4f17f8b5e830 2007-08-30 Doug Scott <[email protected]>
drdoug007
parents:
diff changeset
    49
  * file and the ircII can find it, this setting is overridden.
4f17f8b5e830 2007-08-30 Doug Scott <[email protected]>
drdoug007
parents:
diff changeset
    50
  */
4f17f8b5e830 2007-08-30 Doug Scott <[email protected]>
drdoug007
parents:
diff changeset
    51
 #ifndef DEFAULT_SERVER
4f17f8b5e830 2007-08-30 Doug Scott <[email protected]>
drdoug007
parents:
diff changeset
    52
-# define DEFAULT_SERVER	    "change.this.to.a.server"
4f17f8b5e830 2007-08-30 Doug Scott <[email protected]>
drdoug007
parents:
diff changeset
    53
+# define DEFAULT_SERVER	    "poznan.irc.pl"
4f17f8b5e830 2007-08-30 Doug Scott <[email protected]>
drdoug007
parents:
diff changeset
    54
 #endif
4f17f8b5e830 2007-08-30 Doug Scott <[email protected]>
drdoug007
parents:
diff changeset
    55
 
4f17f8b5e830 2007-08-30 Doug Scott <[email protected]>
drdoug007
parents:
diff changeset
    56
 /*
4f17f8b5e830 2007-08-30 Doug Scott <[email protected]>
drdoug007
parents:
diff changeset
    57
@@ -89,7 +89,7 @@
4f17f8b5e830 2007-08-30 Doug Scott <[email protected]>
drdoug007
parents:
diff changeset
    58
  * DEFAULT_SERVER. 
4f17f8b5e830 2007-08-30 Doug Scott <[email protected]>
drdoug007
parents:
diff changeset
    59
 */
4f17f8b5e830 2007-08-30 Doug Scott <[email protected]>
drdoug007
parents:
diff changeset
    60
 
4f17f8b5e830 2007-08-30 Doug Scott <[email protected]>
drdoug007
parents:
diff changeset
    61
-#define SERVERS_FILE "ircII.servers"
4f17f8b5e830 2007-08-30 Doug Scott <[email protected]>
drdoug007
parents:
diff changeset
    62
+#define SERVERS_FILE "/etc/irc/ircII.servers"
4f17f8b5e830 2007-08-30 Doug Scott <[email protected]>
drdoug007
parents:
diff changeset
    63
 
4f17f8b5e830 2007-08-30 Doug Scott <[email protected]>
drdoug007
parents:
diff changeset
    64
 /* Uncomment the following if you want ircII to display the file
4f17f8b5e830 2007-08-30 Doug Scott <[email protected]>
drdoug007
parents:
diff changeset
    65
  * ircII.motd in the ircII library at startup.
4f17f8b5e830 2007-08-30 Doug Scott <[email protected]>
drdoug007
parents:
diff changeset
    66
@@ -159,7 +159,7 @@
4f17f8b5e830 2007-08-30 Doug Scott <[email protected]>
drdoug007
parents:
diff changeset
    67
 #define DEFAULT_LASTLOG 44
4f17f8b5e830 2007-08-30 Doug Scott <[email protected]>
drdoug007
parents:
diff changeset
    68
 #define DEFAULT_LASTLOG_LEVEL "ALL -CRAP"
4f17f8b5e830 2007-08-30 Doug Scott <[email protected]>
drdoug007
parents:
diff changeset
    69
 #define DEFAULT_LOG 0
4f17f8b5e830 2007-08-30 Doug Scott <[email protected]>
drdoug007
parents:
diff changeset
    70
-#define DEFAULT_LOGFILE "IrcLog"
4f17f8b5e830 2007-08-30 Doug Scott <[email protected]>
drdoug007
parents:
diff changeset
    71
+#define DEFAULT_LOGFILE ".irciilog"
4f17f8b5e830 2007-08-30 Doug Scott <[email protected]>
drdoug007
parents:
diff changeset
    72
 #define DEFAULT_MAIL 0
4f17f8b5e830 2007-08-30 Doug Scott <[email protected]>
drdoug007
parents:
diff changeset
    73
 #define DEFAULT_MAKE_NOTICE_MSG 1
4f17f8b5e830 2007-08-30 Doug Scott <[email protected]>
drdoug007
parents:
diff changeset
    74
 #define DEFAULT_MAX_RECURSIONS 10