From a472d182b70731a8f51b6ba150380148631cae21 Mon Sep 17 00:00:00 2001 From: Michael Jennings Date: Fri, 17 Nov 2000 00:21:26 +0000 Subject: [PATCH] Thu Nov 16 16:20:19 PST 2000 Michael Jennings Well, it would've worked just fine if not for a stupid typo. =P SVN revision: 3896 --- ChangeLog | 5 +++++ src/Makefile.am | 4 ++-- src/buttons.c | 2 -- 3 files changed, 7 insertions(+), 4 deletions(-) diff --git a/ChangeLog b/ChangeLog index 28e7e88..84616e8 100644 --- a/ChangeLog +++ b/ChangeLog @@ -3990,3 +3990,8 @@ Thu Nov 16 16:40:54 PST 2000 Michael Jennings just hope it still works *with* MMX.... =) ------------------------------------------------------------------------------- +Thu Nov 16 16:20:19 PST 2000 Michael Jennings + + Well, it would've worked just fine if not for a stupid typo. =P + +------------------------------------------------------------------------------- diff --git a/src/Makefile.am b/src/Makefile.am index c0b88f6..96da936 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -4,7 +4,7 @@ lib_LTLIBRARIES = libEterm.la bin_PROGRAMS = Eterm MMX_SRCS = mmx_cmod.S -MMX_OBJS = $(MMX_SRCS:.S.o) +MMX_OBJS = $(MMX_SRCS:.S=.lo) libEterm_la_SOURCES = actions.c actions.h buttons.c buttons.h command.c \ command.h draw.c draw.h e.c e.h eterm_debug.h eterm_utmp.h \ @@ -16,7 +16,7 @@ libEterm_la_SOURCES = actions.c actions.h buttons.c buttons.h command.c windows.c windows.h libEterm_la_DEPENDENCIES = feature.h $(MMX_OBJS) libEterm_la_LDFLAGS = -release $(VERSION) -libEterm_la_LDADD = $(MMX_OBJS) +libEterm_la_LIBADD = $(MMX_OBJS) Eterm_SOURCES = main.c Eterm_DEPENDENCIES = libEterm.la diff --git a/src/buttons.c b/src/buttons.c index 85d57e0..4e38174 100644 --- a/src/buttons.c +++ b/src/buttons.c @@ -111,8 +111,6 @@ bbar_create(void) void bbar_free(buttonbar_t *bbar) { - button_t *b; - if (bbar->next) { bbar_free(bbar->next); }