mirror of
https://github.com/davatorium/rofi.git
synced 2024-11-18 13:54:36 -05:00
[Build] Fix autotools build system.
This commit is contained in:
parent
47f37f2bbc
commit
e203084647
2 changed files with 5 additions and 3 deletions
|
@ -89,6 +89,7 @@ SOURCES=\
|
||||||
source/modes/script.c\
|
source/modes/script.c\
|
||||||
source/modes/help-keys.c\
|
source/modes/help-keys.c\
|
||||||
source/modes/filebrowser.c\
|
source/modes/filebrowser.c\
|
||||||
|
source/modes/recursivebrowser.c\
|
||||||
include/display.h\
|
include/display.h\
|
||||||
include/xcb.h\
|
include/xcb.h\
|
||||||
include/xcb-internal.h\
|
include/xcb-internal.h\
|
||||||
|
@ -126,6 +127,7 @@ SOURCES=\
|
||||||
include/modes/modes.h\
|
include/modes/modes.h\
|
||||||
include/modes/help-keys.h\
|
include/modes/help-keys.h\
|
||||||
include/modes/filebrowser.h\
|
include/modes/filebrowser.h\
|
||||||
|
include/modes/recursivebrowser.h\
|
||||||
include/modes/dmenuscriptshared.h\
|
include/modes/dmenuscriptshared.h\
|
||||||
resources/resources.c\
|
resources/resources.c\
|
||||||
resources/resources.h
|
resources/resources.h
|
||||||
|
|
|
@ -40,11 +40,11 @@ G_BEGIN_DECLS
|
||||||
*/
|
*/
|
||||||
typedef enum {
|
typedef enum {
|
||||||
/** Mode type is not set */
|
/** Mode type is not set */
|
||||||
MODE_TYPE_UNSET = 0b0000,
|
MODE_TYPE_UNSET = 0x0,
|
||||||
/** A normal mode. */
|
/** A normal mode. */
|
||||||
MODE_TYPE_SWITCHER = 0b0001,
|
MODE_TYPE_SWITCHER = 0x1,
|
||||||
/** A mode that can be used to completer */
|
/** A mode that can be used to completer */
|
||||||
MODE_TYPE_COMPLETER = 0b0010,
|
MODE_TYPE_COMPLETER = 0x2,
|
||||||
} ModeType;
|
} ModeType;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
Loading…
Reference in a new issue