diff options
-rw-r--r-- | .gitignore | 2 | ||||
-rw-r--r-- | ChangeLog | 1 | ||||
-rw-r--r-- | Makefile.am | 4 | ||||
-rw-r--r-- | movie_play.c (renamed from movie.c) | 2 |
4 files changed, 5 insertions, 4 deletions
@@ -15,7 +15,7 @@ depcomp follow install-sh missing -movie +movie_play muc powwow powwow.6 @@ -1,5 +1,6 @@ 2009-04-08 kalev + * Rename movie.c -> movie_play.c * Add a configure option to select plugin directory. * configure.in: Display summary at the end of configure run. * cmd2.c: Move aliases/actions back to default group if it was diff --git a/Makefile.am b/Makefile.am index 151acef..e930cbd 100644 --- a/Makefile.am +++ b/Makefile.am @@ -1,7 +1,7 @@ # Default help file directory AM_CFLAGS=-DPOWWOW_DIR=\"$(pkgdatadir)\" -DPLUGIN_DIR=\"$(plugindir)\" -bin_PROGRAMS = powwow muc catrw follow movie +bin_PROGRAMS = powwow muc catrw follow movie_play powwow_SOURCES = beam.c cmd.c log.c edit.c cmd2.c eval.c \ utils.c main.c tcp.c list.c map.c tty.c \ ptr.c @@ -11,7 +11,7 @@ powwow_HEADERS = beam.h cmd.h log.h edit.h cmd2.h eval.h \ utils.h main.h tcp.h list.h map.h tty.h \ ptr.h defines.h muc_SOURCES = muc.c -movie_SOURCES = movie.c +movie_play_SOURCES = movie_play.c follow_SOURCES = follow.c catrw_SOURCES = catrw.c @@ -1,5 +1,5 @@ /* - * movie.c -- replay powwow movies or convert them into ASCII + * movie_play.c -- replay powwow movies or convert them into ASCII * * This file is placed in the public domain. */ |