Commit 753feba40f662ed3114d5fb1e6b2e4381984a82f
1 parent
d4c78f2c
Exists in
master
and in
5 other branches
Incluindo testes pela versão antiga do rexx, corrigindo erro ao compilar o plugin dbus
Showing
2 changed files
with
7 additions
and
2 deletions
Show diff stats
src/plugins/dbus3270/Makefile.in
... | ... | @@ -84,7 +84,7 @@ GTK_LIBS=@GTK_LIBS@ |
84 | 84 | |
85 | 85 | ifeq ($(LIB3270_MODE),Debug) |
86 | 86 | PW3270_LIBS=-L../../../.bin/Debug@DLLDIR@ -lpw3270 |
87 | - PW3270_CFLAGS=-I../../../src/include" | |
87 | + PW3270_CFLAGS=-I../../../src/include | |
88 | 88 | LIB3270_LIBS=-L../../../.bin/Debug@DLLDIR@ -l3270 |
89 | 89 | LIB3270_CFLAGS=-I../../../src/include |
90 | 90 | endif | ... | ... |
src/plugins/rx3270/rx3270.h
... | ... | @@ -36,7 +36,12 @@ |
36 | 36 | #include <lib3270/config.h> |
37 | 37 | #include <lib3270.h> |
38 | 38 | #include <lib3270/log.h> |
39 | - #include <oorexxapi.h> | |
39 | + | |
40 | +#ifdef HAVE_OOREXXAPI_H | |
41 | + #include <oorexxapi.h> | |
42 | +#else | |
43 | + #error Only Rexx 4 | |
44 | +#endif | |
40 | 45 | |
41 | 46 | #ifndef ETIMEDOUT |
42 | 47 | #define ETIMEDOUT -1 | ... | ... |