comparison src/Makefile @ 16778:eda4d65f232c v8.1.1391

patch 8.1.1391: no popup window support commit https://github.com/vim/vim/commit/4d784b21d14fc66e98a2b07f70343cdd4acd62aa Author: Bram Moolenaar <Bram@vim.org> Date: Sat May 25 19:51:39 2019 +0200 patch 8.1.1391: no popup window support Problem: No popup window support. Solution: Add initial code for popup windows. Add the 'wincolor' option.
author Bram Moolenaar <Bram@vim.org>
date Sat, 25 May 2019 20:00:08 +0200
parents 687ab2b5252b
children 140bf183f946
comparison
equal deleted inserted replaced
16777:20d51e99dd6a 16778:eda4d65f232c
1618 ops.c \ 1618 ops.c \
1619 option.c \ 1619 option.c \
1620 os_unix.c \ 1620 os_unix.c \
1621 auto/pathdef.c \ 1621 auto/pathdef.c \
1622 popupmnu.c \ 1622 popupmnu.c \
1623 popupwin.c \
1623 pty.c \ 1624 pty.c \
1624 quickfix.c \ 1625 quickfix.c \
1625 regexp.c \ 1626 regexp.c \
1626 screen.c \ 1627 screen.c \
1627 search.c \ 1628 search.c \
1732 objects/ops.o \ 1733 objects/ops.o \
1733 objects/option.o \ 1734 objects/option.o \
1734 objects/os_unix.o \ 1735 objects/os_unix.o \
1735 objects/pathdef.o \ 1736 objects/pathdef.o \
1736 objects/popupmnu.o \ 1737 objects/popupmnu.o \
1738 objects/popupwin.o \
1737 objects/pty.o \ 1739 objects/pty.o \
1738 objects/quickfix.o \ 1740 objects/quickfix.o \
1739 objects/regexp.o \ 1741 objects/regexp.o \
1740 objects/screen.o \ 1742 objects/screen.o \
1741 objects/search.o \ 1743 objects/search.o \
1871 ops.pro \ 1873 ops.pro \
1872 option.pro \ 1874 option.pro \
1873 os_mac_conv.pro \ 1875 os_mac_conv.pro \
1874 os_unix.pro \ 1876 os_unix.pro \
1875 popupmnu.pro \ 1877 popupmnu.pro \
1878 popupwin.pro \
1876 pty.pro \ 1879 pty.pro \
1877 quickfix.pro \ 1880 quickfix.pro \
1878 regexp.pro \ 1881 regexp.pro \
1879 screen.pro \ 1882 screen.pro \
1880 search.pro \ 1883 search.pro \
3206 $(CCC) -o $@ auto/pathdef.c 3209 $(CCC) -o $@ auto/pathdef.c
3207 3210
3208 objects/popupmnu.o: popupmnu.c 3211 objects/popupmnu.o: popupmnu.c
3209 $(CCC) -o $@ popupmnu.c 3212 $(CCC) -o $@ popupmnu.c
3210 3213
3214 objects/popupwin.o: popupwin.c
3215 $(CCC) -o $@ popupwin.c
3216
3211 objects/pty.o: pty.c 3217 objects/pty.o: pty.c
3212 $(CCC) -o $@ pty.c 3218 $(CCC) -o $@ pty.c
3213 3219
3214 objects/quickfix.o: quickfix.c 3220 objects/quickfix.o: quickfix.c
3215 $(CCC) -o $@ quickfix.c 3221 $(CCC) -o $@ quickfix.c
3607 objects/pathdef.o: auto/pathdef.c vim.h protodef.h auto/config.h feature.h \ 3613 objects/pathdef.o: auto/pathdef.c vim.h protodef.h auto/config.h feature.h \
3608 os_unix.h auto/osdef.h ascii.h keymap.h term.h macros.h option.h beval.h \ 3614 os_unix.h auto/osdef.h ascii.h keymap.h term.h macros.h option.h beval.h \
3609 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \ 3615 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \
3610 proto.h globals.h 3616 proto.h globals.h
3611 objects/popupmnu.o: popupmnu.c vim.h protodef.h auto/config.h feature.h os_unix.h \ 3617 objects/popupmnu.o: popupmnu.c vim.h protodef.h auto/config.h feature.h os_unix.h \
3618 auto/osdef.h ascii.h keymap.h term.h macros.h option.h beval.h \
3619 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \
3620 proto.h globals.h
3621 objects/popupwin.o: popupwin.c vim.h protodef.h auto/config.h feature.h os_unix.h \
3612 auto/osdef.h ascii.h keymap.h term.h macros.h option.h beval.h \ 3622 auto/osdef.h ascii.h keymap.h term.h macros.h option.h beval.h \
3613 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \ 3623 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \
3614 proto.h globals.h 3624 proto.h globals.h
3615 objects/pty.o: pty.c vim.h protodef.h auto/config.h feature.h os_unix.h \ 3625 objects/pty.o: pty.c vim.h protodef.h auto/config.h feature.h os_unix.h \
3616 auto/osdef.h ascii.h keymap.h term.h macros.h option.h beval.h \ 3626 auto/osdef.h ascii.h keymap.h term.h macros.h option.h beval.h \