[Toxine-cvs] CVS: toxine/src Makefile.am,1.7,1.8 commands.c,1.57,1.58
Brought to you by:
f1rmb
From: Daniel Caujolle-B. <f1...@us...> - 2004-04-08 15:40:26
|
Update of /cvsroot/toxine/toxine/src In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv3678/src Modified Files: Makefile.am commands.c Log Message: @@ small auto* fixes, fix readline CFLAGS Index: Makefile.am =================================================================== RCS file: /cvsroot/toxine/toxine/src/Makefile.am,v retrieving revision 1.7 retrieving revision 1.8 diff -u -r1.7 -r1.8 --- Makefile.am 8 Apr 2004 15:14:19 -0000 1.7 +++ Makefile.am 8 Apr 2004 15:27:17 -0000 1.8 @@ -1,7 +1,8 @@ SUBDIRS = plugins -CFLAGS = @CFLAGS@ @XINE_CFLAGS@ +AM_CFLAGS = @CFLAGS@ @XINE_CFLAGS@ @READLINE_INCLUDES@ +LIBTOOL = $(SHELL) $(top_builddir)/libtoollib-nofpic bin_PROGRAMS = toxine EXTRA_PROGRAMS = mangen sortcmds Index: commands.c =================================================================== RCS file: /cvsroot/toxine/toxine/src/commands.c,v retrieving revision 1.57 retrieving revision 1.58 diff -u -r1.57 -r1.58 --- commands.c 7 Apr 2004 18:21:07 -0000 1.57 +++ commands.c 8 Apr 2004 15:27:17 -0000 1.58 @@ -31,9 +31,9 @@ #include <time.h> #include <pthread.h> -#include "readline.h" -#include "tilde.h" -#include "history.h" +#include <readline.h> +#include <tilde.h> +#include <history.h> #include "common.h" #include "utils.h" |