Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

GHA: Add MSYS2 build #4

Merged
merged 3 commits into from
Jun 12, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
30 changes: 30 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -64,3 +64,33 @@ jobs:
- name: Show pkg-config files
run: |
head -n100 *.pc
ci-msys2:
runs-on: windows-latest
strategy:
fail-fast: false
defaults:
run:
shell: msys2 {0}
steps:
- uses: actions/checkout@v2
- name: Set up build
uses: msys2/setup-msys2@v2
with:
update: true
install: >-
base-devel
autotools
mingw-w64-x86_64-toolchain
mingw-w64-x86_64-libpng
- name: Bootstrap
run: |
sh ./bootstrap
- name: Configure
run: |
sh ./configure
- name: Make
run: |
make
- name: Show pkg-config files
run: |
head -n100 *.pc
26 changes: 24 additions & 2 deletions configure.ac
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,9 @@ AC_CHECK_LIB(m, sincos)
dnl Checks for header files.
AC_HEADER_STDC
AC_PATH_XTRA
AC_CHECK_HEADERS([fcntl.h limits.h memory.h netdb.h netinet/in.h stddef.h sys/file.h sys/socket.h sys/systeminfo.h sys/time.h termios.h unistd.h values.h])
AC_CHECK_HEADERS([fcntl.h limits.h memory.h netdb.h netinet/in.h stddef.h sys/file.h sys/socket.h sys/systeminfo.h sys/time.h unistd.h values.h])

AC_SYS_POSIX_TERMIOS

dnl get the flags required to link other languages against fortran
dnl using their compilers, not fortran
Expand All @@ -70,7 +72,7 @@ dnl These are the driver files that will actually be built.
dnl In true autoconf style, we do not attempt to generate this list
dnl automatically (see the automake manual's FAQ for justification).

drivers="exdriv.lo pgdriv.lo cadriv.lo hgdriv.lo lxdriv.lo vtdriv.lo hidriv.lo psdriv.lo ttdriv.lo cwdriv.lo gldriv.lo nedriv.lo hpdriv.lo lsdriv.lo nudriv.lo qmdriv.lo vadriv.lo cgdriv.lo nexsup.lo rvdriv.lo xmdriv.lo tkdriv.lo pkdriv.lo xadriv.lo"
drivers="exdriv.lo pgdriv.lo cadriv.lo hgdriv.lo lxdriv.lo hidriv.lo psdriv.lo cwdriv.lo gldriv.lo hpdriv.lo lsdriv.lo nudriv.lo qmdriv.lo vadriv.lo cgdriv.lo rvdriv.lo xmdriv.lo tkdriv.lo pkdriv.lo xadriv.lo"

dnl Not all platforms have X
have_x11=no
Expand Down Expand Up @@ -197,6 +199,24 @@ AS_IF([test "$mst_prog_gnu_f77_version" != '0.0.0' && test "$mst_prog_gnu_f77_ve
AC_SUBST([PKG_CONFIG_LIBS])
AC_SUBST([PKG_CONFIG_CFLAGS])

dnl drivers ttdriv and vtdriv require termios; only include them if
dnl it's available.

AM_CONDITIONAL([HAVE_TERMIOS], [test "$ac_cv_sys_posix_termios" = "yes" ])

AS_IF( [test "$ac_cv_sys_posix_termios" = "yes" ],
[
drivers="$drivers ttdriv.lo vtdriv.lo"
]
)

dnl drivers nexup and nedriv require sys/socket.h
AS_IF([test "$ac_cv_header_sys_socket_h" = "yes"],
[
drivers="$drivers nexsup.lo nedriv.lo"
]
)



dnl Add the png driver if the PNG header and library are available.
Expand Down Expand Up @@ -241,6 +261,8 @@ AS_IF([test $have_png = yes],
)




dnl clean up pkg-config requires line
PKG_CONFIG_REQUIRES=`echo $PKG_CONFIG_REQUIRES | ${ac_cv_path_SED} "s/^,//"`
AC_SUBST(PKG_CONFIG_REQUIRES)
Expand Down
6 changes: 3 additions & 3 deletions drivers/Makefile.am
Original file line number Diff line number Diff line change
Expand Up @@ -31,9 +31,9 @@ grexec.f: $(BUILT_DRIVER_ROUTINES) makegrexec.pl
# These are all the driver routines, even if they do not build

DRIVER_ROUTINES = exdriv.f pgdriv.f cadriv.f hgdriv.f lxdriv.f \
ppdriv.f.in vtdriv.f gidriv.f hidriv.f psdriv.f ttdriv.f cwdriv.f \
gldriv.f nedriv.f wddriv.f.in hpdriv.f lsdriv.f nudriv.f qmdriv.f \
vadriv.f cgdriv.c nexsup.c rvdriv.c x2driv.c xmdriv.c figdisp_comm.c \
ppdriv.f.in gidriv.f hidriv.f psdriv.f cwdriv.f \
gldriv.f wddriv.f.in hpdriv.f lsdriv.f nudriv.f qmdriv.f \
vadriv.f cgdriv.c rvdriv.c x2driv.c xmdriv.c figdisp_comm.c \
pgxwin.c pndriv.c tkdriv.c xadriv.c xwdriv.c bcdriv.f gvdriv.f \
ladriv.f lvdriv.f tfdriv.f xedriv.f gcdriv.f todriv.f zedriv.f \
ccdriv.f ljdriv.f lhdriv.f mfdriv.f hjdriv.f lndriv.f pxdriv.f \
Expand Down
4 changes: 2 additions & 2 deletions fonts/Makefile.am
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,9 @@ pgpack_SOURCES = pgpack.f

pkg_libexecdir = $(libexecdir)/$(PACKAGE)

grfont.dat: grfont.txt pgpack
grfont.dat: grfont.txt pgpack$(EXEEXT)
-rm -f grfont.dat
./pgpack < $(srcdir)/grfont.txt
./pgpack$(EXEEXT) < $(srcdir)/grfont.txt

install-exec-hook : grfont.dat
$(MKDIR_P) $(DESTDIR)$(pkg_libexecdir)
Expand Down
6 changes: 5 additions & 1 deletion sys/Makefile.am
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,11 @@ F_ROUTINES = grflun.f grgenv.f grglun.f grgmsg.f grlgtr.f \
groptx.f grsy00.f grtrml.f grtter.f


C_ROUTINES = grdate.c grfileio.c grgetc.c grgmem.c grtermio.c gruser.c
C_ROUTINES = grdate.c grfileio.c grgmem.c gruser.c

if HAVE_TERMIOS
C_ROUTINES += grgetc.c grtermio.c
endif

AM_CFLAGS = -DPG_PPU

Expand Down