File tree Expand file tree Collapse file tree 5 files changed +7
-7
lines changed Expand file tree Collapse file tree 5 files changed +7
-7
lines changed Original file line number Diff line number Diff line change 37
37
38
38
- name : Install system requirements
39
39
run : |
40
- pkg install -y autoconf automake libtool hs-pandoc
40
+ pkg install -y hs-pandoc
41
41
shell : dragonflybsd {0}
42
42
43
43
- uses : r-lib/actions/setup-r-dependencies@v2
Original file line number Diff line number Diff line change 42
42
43
43
- name : Install system requirements
44
44
run : |
45
- pkg install -y hs-pandoc autoconf automake libtool
46
- ln -s aclocal /usr/local/bin/aclocal-1.16
47
- ln -s automake /usr/local/bin/automake-1.16
45
+ pkg install -y hs-pandoc
48
46
shell : freebsd {0}
49
47
50
48
- uses : r-lib/actions/setup-r-dependencies@v2
Original file line number Diff line number Diff line change 38
38
- name : Install system dependencies
39
39
shell : netbsd {0}
40
40
run : |
41
- pkg_add autoconf automake libtool pandoc png
41
+ pkg_add pandoc png
42
42
# these do not work in the end, but I'll leave them here
43
43
ln -s libpng16.so /usr/pkg/lib/libpng.so
44
44
ln -s libfontconfig.so /usr/pkg/lib/libfontconfig.so.2
Original file line number Diff line number Diff line change 45
45
46
46
- name : Install system dependencies
47
47
run : |
48
- pkg_add -I pandoc automake-1.16.5 libtool
49
- echo 'export AUTOCONF_VERSION=2.69' >> /etc/profile
48
+ pkg_add -I pandoc
50
49
shell : openbsd {0}
51
50
52
51
- uses : r-lib/actions/setup-r-dependencies@v2
Original file line number Diff line number Diff line change @@ -30,7 +30,10 @@ all: $(SHLIB)
30
30
31
31
$(SHLIB): $(LIBUV)/.libs/libuv.a
32
32
33
+ # Avoid re-running autoconf/automake/aclocal.
34
+ # Need the timestamps in the right order.
33
35
$(LIBUV)/Makefile:
36
+ touch $(LIBUV)/aclocal.m4 && touch $(LIBUV)/configure && touch $(LIBUV)/Makefile.in
34
37
(cd $(LIBUV) \
35
38
&& CC="$(CC)" CPPFLAGS="$(CPPFLAGS)" CFLAGS="$(CFLAGS) $(CPICFLAGS) $(C_VISIBILITY) -std=c99" AR="$(AR)" RANLIB="$(RANLIB)" LDFLAGS="$(LDFLAGS)" ./configure $(R_CONFIGURE_FLAGS) --quiet)
36
39
You can’t perform that action at this time.
0 commit comments