From 8b6619d75276c8ead831830ba43d1776c7e78ad8 Mon Sep 17 00:00:00 2001 From: Perry Werneck Date: Fri, 27 Sep 2019 13:35:26 -0300 Subject: [PATCH] Fixing Action type name. --- configure.ac | 6 +++--- src/core/actions.cc | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/configure.ac b/configure.ac index c76ea36..32f2bbf 100644 --- a/configure.ac +++ b/configure.ac @@ -31,7 +31,7 @@ AC_PREREQ(2.61) dnl Initialise automake with the package name, version and dnl bug-reporting address. -AC_INIT([hllapi], [5.2], [perry.werneck@gmail.com]) +AC_INIT([libhllapi], [5.2], [perry.werneck@gmail.com]) dnl Place auxilliary scripts here. AC_CONFIG_AUX_DIR([scripts]) @@ -60,7 +60,7 @@ dnl --------------------------------------------------------------------------- dnl Version info dnl --------------------------------------------------------------------------- -AC_SUBST(PACKAGE_DESCRIPTION,"PW3270 HLLAPI Module") +AC_SUBST(PACKAGE_DESCRIPTION,"LIB3270/PW3270 HLLAPI API Module") app_vrs_major=$(echo $VERSION | cut -d. -f1) app_vrs_minor=$(echo $VERSION | cut -d. -f2) @@ -98,7 +98,7 @@ case "$host" in app_cv_osname="windows" CFLAGS="$CFLAGS -D_WIN32_WINNT=0x0600" - LDFLAGS="-Wl,-Bstatic,--whole-archive -lwinpthread -Wl,--no-whole-archive,-Bdynamic -static-libgcc -static-libstdc++ $LDFLAGS" + LDFLAGS="$LDFLAGS" LIBS="$LIBS -lws2_32 -lwtsapi32 -lcomdlg32" DLLEXT=".dll" diff --git a/src/core/actions.cc b/src/core/actions.cc index 2bd351f..4d15d41 100644 --- a/src/core/actions.cc +++ b/src/core/actions.cc @@ -63,7 +63,7 @@ } - static DWORD action(const TN3270::Action id) noexcept { + static DWORD action(const TN3270::KeyboardAction id) noexcept { return action([id](TN3270::Host &host) { host.push(id); -- libgit2 0.21.2