Commit cd17708 1 parent f687463 commit cd17708 Copy full SHA for cd17708
File tree 3 files changed +14
-12
lines changed
3 files changed +14
-12
lines changed Original file line number Diff line number Diff line change @@ -23,7 +23,7 @@ all: $(BIN) $(PLAYER)
23
23
$(SRC ) : nnn.h
24
24
25
25
$(BIN ) : $(SRC )
26
- $(CC ) -O3 -fno-tree-loop-vectorize $(CFLAGS ) -o $@ $^ $(LDFLAGS ) $(LDLIBS )
26
+ $(CC ) -O2 $(CFLAGS ) -o $@ $^ $(LDFLAGS ) $(LDLIBS )
27
27
strip $@
28
28
29
29
debug : $(SRC )
Original file line number Diff line number Diff line change @@ -1182,10 +1182,12 @@ parsebmstr(char *bms)
1182
1182
static char *
1183
1183
get_bm_loc (char * key , char * buf )
1184
1184
{
1185
+ int r ;
1186
+
1185
1187
if (!key || !key [0 ])
1186
1188
return NULL ;
1187
1189
1188
- for (int r = 0 ; bookmark [r ].key && r < BM_MAX ; ++ r ) {
1190
+ for (r = 0 ; bookmark [r ].key && r < BM_MAX ; ++ r ) {
1189
1191
if (xstrcmp (bookmark [r ].key , key ) == 0 ) {
1190
1192
if (bookmark [r ].loc [0 ] == '~' ) {
1191
1193
char * home = getenv ("HOME" );
Original file line number Diff line number Diff line change @@ -48,16 +48,16 @@ packages:
48
48
deps :
49
49
- ncurses
50
50
- readline
51
- opensuse42.3 :
52
- builddeps :
53
- - make
54
- - gcc
55
- - pkg-config
56
- - ncurses-devel
57
- - readline-devel
58
- deps :
59
- - ncurses
60
- - readline
51
+ # opensuse42.3:
52
+ # builddeps:
53
+ # - make
54
+ # - gcc
55
+ # - pkg-config
56
+ # - ncurses-devel
57
+ # - readline-devel
58
+ # deps:
59
+ # - ncurses
60
+ # - readline
61
61
ubuntu16.04 :
62
62
builddeps :
63
63
- make
You can’t perform that action at this time.
0 commit comments