Commit 8b6619d75276c8ead831830ba43d1776c7e78ad8
1 parent
01b3437b
Exists in
master
and in
1 other branch
Fixing Action type name.
Showing
2 changed files
with
4 additions
and
4 deletions
Show diff stats
configure.ac
@@ -31,7 +31,7 @@ AC_PREREQ(2.61) | @@ -31,7 +31,7 @@ AC_PREREQ(2.61) | ||
31 | 31 | ||
32 | dnl Initialise automake with the package name, version and | 32 | dnl Initialise automake with the package name, version and |
33 | dnl bug-reporting address. | 33 | dnl bug-reporting address. |
34 | -AC_INIT([hllapi], [5.2], [perry.werneck@gmail.com]) | 34 | +AC_INIT([libhllapi], [5.2], [perry.werneck@gmail.com]) |
35 | 35 | ||
36 | dnl Place auxilliary scripts here. | 36 | dnl Place auxilliary scripts here. |
37 | AC_CONFIG_AUX_DIR([scripts]) | 37 | AC_CONFIG_AUX_DIR([scripts]) |
@@ -60,7 +60,7 @@ dnl --------------------------------------------------------------------------- | @@ -60,7 +60,7 @@ dnl --------------------------------------------------------------------------- | ||
60 | dnl Version info | 60 | dnl Version info |
61 | dnl --------------------------------------------------------------------------- | 61 | dnl --------------------------------------------------------------------------- |
62 | 62 | ||
63 | -AC_SUBST(PACKAGE_DESCRIPTION,"PW3270 HLLAPI Module") | 63 | +AC_SUBST(PACKAGE_DESCRIPTION,"LIB3270/PW3270 HLLAPI API Module") |
64 | 64 | ||
65 | app_vrs_major=$(echo $VERSION | cut -d. -f1) | 65 | app_vrs_major=$(echo $VERSION | cut -d. -f1) |
66 | app_vrs_minor=$(echo $VERSION | cut -d. -f2) | 66 | app_vrs_minor=$(echo $VERSION | cut -d. -f2) |
@@ -98,7 +98,7 @@ case "$host" in | @@ -98,7 +98,7 @@ case "$host" in | ||
98 | app_cv_osname="windows" | 98 | app_cv_osname="windows" |
99 | 99 | ||
100 | CFLAGS="$CFLAGS -D_WIN32_WINNT=0x0600" | 100 | CFLAGS="$CFLAGS -D_WIN32_WINNT=0x0600" |
101 | - LDFLAGS="-Wl,-Bstatic,--whole-archive -lwinpthread -Wl,--no-whole-archive,-Bdynamic -static-libgcc -static-libstdc++ $LDFLAGS" | 101 | + LDFLAGS="$LDFLAGS" |
102 | 102 | ||
103 | LIBS="$LIBS -lws2_32 -lwtsapi32 -lcomdlg32" | 103 | LIBS="$LIBS -lws2_32 -lwtsapi32 -lcomdlg32" |
104 | DLLEXT=".dll" | 104 | DLLEXT=".dll" |
src/core/actions.cc
@@ -63,7 +63,7 @@ | @@ -63,7 +63,7 @@ | ||
63 | 63 | ||
64 | } | 64 | } |
65 | 65 | ||
66 | - static DWORD action(const TN3270::Action id) noexcept { | 66 | + static DWORD action(const TN3270::KeyboardAction id) noexcept { |
67 | 67 | ||
68 | return action([id](TN3270::Host &host) { | 68 | return action([id](TN3270::Host &host) { |
69 | host.push(id); | 69 | host.push(id); |