From 2191e6ea1a2839abdd3fceaf1ab63f9dfe4a3b24 Mon Sep 17 00:00:00 2001 From: Vincent Wei Date: Wed, 26 Feb 2020 21:32:54 +0800 Subject: [PATCH] add new files: rbtree.h, rbtree.c, map.h, map.c --- src/include/Makefile.am | 2 +- src/misc/Makefile.am | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/include/Makefile.am b/src/include/Makefile.am index f5f455bb..2d362f25 100644 --- a/src/include/Makefile.am +++ b/src/include/Makefile.am @@ -3,7 +3,7 @@ noinst_HEADERS = \ cursor.h dc.h event.h list.h element.h \ ial.h inline.h internals.h zorder.h menu.h misc.h \ msgstr.h sysfont.h timer.h devfont.h fontname.h \ - readbmp.h icon.h blockheap.h \ + readbmp.h icon.h blockheap.h rbtree.h \ ourhdr.h client.h server.h sharedres.h sockio.h drawsemop.h \ gal.h newgal.h memops.h incoreres.h sysres.h clipboard.h \ glyph.h license.h mgsock.h unicode-ops.h \ diff --git a/src/misc/Makefile.am b/src/misc/Makefile.am index a5fdbe53..e3754e21 100644 --- a/src/misc/Makefile.am +++ b/src/misc/Makefile.am @@ -12,7 +12,7 @@ if MG_MINIMALGDI libmisc_la_SOURCES = misc.c math.c rwops.c nposix.c else libmisc_la_SOURCES = misc.c systext.c rwops.c endianrw.c nposix.c clipboard.c \ - math.c about.c license.c anon_file.c \ + math.c about.c license.c anon_file.c rbtree.c map.c \ $(LITE_SRCS) endif