Commit 8b6619d75276c8ead831830ba43d1776c7e78ad8

Authored by Perry Werneck
1 parent 01b3437b
Exists in master and in 1 other branch develop

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 31  
32 32 dnl Initialise automake with the package name, version and
33 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 36 dnl Place auxilliary scripts here.
37 37 AC_CONFIG_AUX_DIR([scripts])
... ... @@ -60,7 +60,7 @@ dnl ---------------------------------------------------------------------------
60 60 dnl Version info
61 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 65 app_vrs_major=$(echo $VERSION | cut -d. -f1)
66 66 app_vrs_minor=$(echo $VERSION | cut -d. -f2)
... ... @@ -98,7 +98,7 @@ case "$host" in
98 98 app_cv_osname="windows"
99 99  
100 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 103 LIBS="$LIBS -lws2_32 -lwtsapi32 -lcomdlg32"
104 104 DLLEXT=".dll"
... ...
src/core/actions.cc
... ... @@ -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 68 return action([id](TN3270::Host &host) {
69 69 host.push(id);
... ...