cvs: embed /php-irssi irssi.diff

[email protected] ("Wez Furlong") Sat, 01 Feb 2003 04:01:21 -0000
Newsgroups php.embed.cvs
Message-ID <cvswez1044072080@cvsserver>
wez		Fri Jan 31 23:01:21 2003 EDT

  Modified files:              
    /embed/php-irssi	irssi.diff 
  Log:
  Update the irssi patch.
  Timo has removed the execute function from the irssi CVS, so now the patch
  only needs to add some configure stuff to irssi.
  
  
Index: embed/php-irssi/irssi.diff
diff -u embed/php-irssi/irssi.diff:1.2 embed/php-irssi/irssi.diff:1.3
--- embed/php-irssi/irssi.diff:1.2	Wed Jan 29 15:34:57 2003
+++ embed/php-irssi/irssi.diff	Fri Jan 31 23:01:19 2003
@@ -4,7 +4,7 @@
 retrieving revision 1.238
 diff -u -p -r1.238 configure.in
 --- configure.in	25 Jan 2003 03:19:40 -0000	1.238
-+++ configure.in	29 Jan 2003 20:30:02 -0000
++++ configure.in	1 Feb 2003 03:59:34 -0000
 @@ -196,6 +196,9 @@ AC_ARG_WITH(perl,
  	fi,
  	want_perl=static)
@@ -37,7 +37,7 @@
 retrieving revision 1.13
 diff -u -p -r1.13 Makefile.am
 --- src/Makefile.am	17 May 2001 20:13:57 -0000	1.13
-+++ src/Makefile.am	29 Jan 2003 20:30:02 -0000
++++ src/Makefile.am	1 Feb 2003 03:59:34 -0000
 @@ -10,7 +10,11 @@ if HAVE_PERL
  PERLDIR=perl
  endif
@@ -51,43 +51,3 @@
  
 -SUBDIRS = lib-popt lib-config core irc fe-common $(PERLDIR) $(TEXTUI) $(BOTUI)
 +SUBDIRS = lib-popt lib-config core irc fe-common $(PERLDIR) $(PHPDIR) $(TEXTUI) $(BOTUI)
-Index: src/core/misc.c
-===================================================================
-RCS file: /home/cvs/irssi/src/core/misc.c,v
-retrieving revision 1.43
-diff -u -p -r1.43 misc.c
---- src/core/misc.c	8 Jan 2003 20:54:36 -0000	1.43
-+++ src/core/misc.c	29 Jan 2003 20:30:02 -0000
-@@ -173,6 +173,7 @@ int strarray_find(char **array, const ch
- 	return -1;
- }
- 
-+#if 0
- int execute(const char *cmd)
- {
- 	char **args;
-@@ -203,6 +204,7 @@ int execute(const char *cmd)
- 	return 0;
- #endif
- }
-+#endif
- 
- GSList *gslist_find_string(GSList *list, const char *key)
- {
-Index: src/core/misc.h
-===================================================================
-RCS file: /home/cvs/irssi/src/core/misc.h,v
-retrieving revision 1.19
-diff -u -p -r1.19 misc.h
---- src/core/misc.h	28 Dec 2002 17:54:13 -0000	1.19
-+++ src/core/misc.h	29 Jan 2003 20:30:02 -0000
-@@ -21,7 +21,9 @@ int strarray_length(char **array);
- /* return index of `item' in `array' or -1 if not found */
- int strarray_find(char **array, const char *item);
- 
-+#if 0
- int execute(const char *cmd); /* returns pid or -1 = error */
-+#endif
- 
- GSList *gslist_find_string(GSList *list, const char *key);
- GSList *gslist_find_icase_string(GSList *list, const char *key);