Thu Nov 16 16:20:19 PST 2000 Michael Jennings <mej@eterm.org>

Well, it would've worked just fine if not for a stupid typo. =P


SVN revision: 3896
This commit is contained in:
Michael Jennings 2000-11-17 00:21:26 +00:00
parent 2b30d160f4
commit a472d182b7
3 changed files with 7 additions and 4 deletions

View File

@ -3990,3 +3990,8 @@ Thu Nov 16 16:40:54 PST 2000 Michael Jennings <mej@eterm.org>
just hope it still works *with* MMX.... =)
-------------------------------------------------------------------------------
Thu Nov 16 16:20:19 PST 2000 Michael Jennings <mej@eterm.org>
Well, it would've worked just fine if not for a stupid typo. =P
-------------------------------------------------------------------------------

View File

@ -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

View File

@ -111,8 +111,6 @@ bbar_create(void)
void
bbar_free(buttonbar_t *bbar)
{
button_t *b;
if (bbar->next) {
bbar_free(bbar->next);
}