Commit 6245e78378bd311b44cd0fac64d85f31bab74cde

Authored by Perry Werneck
1 parent 8d2d0a07
Exists in master and in 2 other branches develop, macos

Still working in the Arch builds.

Showing 2 changed files with 104 additions and 189 deletions   Show diff stats
@@ -21,11 +21,11 @@ if test $? != 0 ; then @@ -21,11 +21,11 @@ if test $? != 0 ; then
21 exit -1 21 exit -1
22 fi 22 fi
23 23
24 -autoheader --force  
25 -if test $? != 0 ; then  
26 - echo "autoheader failed."  
27 - exit -1  
28 -fi 24 +#autoheader --force
  25 +#if test $? != 0 ; then
  26 +# echo "autoheader failed."
  27 +# exit -1
  28 +#fi
29 29
30 autoconf --force 30 autoconf --force
31 if test $? != 0 ; then 31 if test $? != 0 ; then
src/include/config.h.in
1 -/* src/include/config.h.in. Generated from configure.ac by autoheader. */ 1 +/*
  2 + * Software pw3270, desenvolvido com base nos códigos fontes do C3270 e X3270
  3 + * (Paul Mattes Paul.Mattes@usa.net), de emulação de terminal 3270 para acesso a
  4 + * aplicativos mainframe. Registro no INPI sob o nome G3270.
  5 + *
  6 + * Copyright (C) <2008> <Banco do Brasil S.A.>
  7 + *
  8 + * Este programa é software livre. Você pode redistribuí-lo e/ou modificá-lo sob
  9 + * os termos da GPL v.2 - Licença Pública Geral GNU, conforme publicado pela
  10 + * Free Software Foundation.
  11 + *
  12 + * Este programa é distribuído na expectativa de ser útil, mas SEM QUALQUER
  13 + * GARANTIA; sem mesmo a garantia implícita de COMERCIALIZAÇÃO ou de ADEQUAÇÃO
  14 + * A QUALQUER PROPÓSITO EM PARTICULAR. Consulte a Licença Pública Geral GNU para
  15 + * obter mais detalhes.
  16 + *
  17 + * Você deve ter recebido uma cópia da Licença Pública Geral GNU junto com este
  18 + * programa; se não, escreva para a Free Software Foundation, Inc., 59 Temple
  19 + * Place, Suite 330, Boston, MA, 02111-1307, USA
  20 + *
  21 + * Este programa está nomeado como config.h.in e possui - linhas de código.
  22 + *
  23 + * Contatos:
  24 + *
  25 + * perry.werneck@gmail.com (Alexandre Perry de Souza Werneck)
  26 + * erico.mendonca@gmail.com (Erico Mascarenhas de Mendonça)
  27 + *
  28 + */
  29 +
  30 +#ifndef LIB3270_CONFIG_INCLUDED
  31 +
  32 + #define LIB3270_CONFIG_INCLUDED 1
  33 +
  34 + /* Version info */
  35 + #undef PACKAGE_NAME
  36 + #undef PRODUCT_NAME
  37 + #undef PACKAGE_VERSION
  38 + #undef PACKAGE_RELEASE
  39 + #undef LIB3270_NAME
  40 + #undef GETTEXT_PACKAGE
  41 +
  42 + #undef RPQ_BUILD_DATE
  43 + #undef RPQ_TIMESTAMP_VALUE
  44 + #undef RPQ_REVISION
  45 + #undef SCCS_USER
  46 + #undef SCCS_DATE
  47 +
  48 + /* Default settings */
  49 +
  50 + /** @brief The lib3270's default host URL */
  51 + #undef LIB3270_DEFAULT_HOST
  52 +
  53 + #undef LIB3270_DATADIR
  54 +
  55 + /** @brief the delay, in miliseconds, between the host unlocking the keyboard and lib3270 actually performing the unlock */
  56 + #define UNLOCK_MS 350
  57 +
  58 + /* Library options */
  59 + #undef HAVE_GNUC_VISIBILITY
  60 + #undef HAVE_LIBINTL
  61 + #undef HAVE_GETADDRINFO
  62 + #undef HAVE_VASPRINTF
  63 + #undef HAVE_INET_NTOP
  64 + #undef HAVE_LIBCURL
  65 + #undef HAVE_SYSLOG
  66 +
  67 + #undef HAVE_ICONV
  68 + #undef ICONV_CONST
  69 +
  70 + /* Security options */
  71 + #undef HAVE_LDAP
  72 + #undef HAVE_LIBSSL
  73 +
  74 + #undef SSL_ENABLE_SELF_SIGNED_CERT_CHECK
  75 +
  76 + #undef SSL_ENABLE_CRL_CHECK
  77 + #undef SSL_ENABLE_CRL_EXPIRATION_CHECK
  78 + #undef SSL_ENABLE_NOTIFICATION_WHEN_FAILED
  79 +
  80 + /* If defined uses a hardcoded CRL path */
  81 + #undef SSL_CRL_URL
  82 +
  83 + /* Optional parts. */
  84 + #undef X3270_DBCS
  85 + #undef X3270_SCRIPT
  86 +
  87 + #define X3270_TN3270E
  88 + #define X3270_ANSI
  89 + #define X3270_APL
  90 +
  91 + #define X3270_TRACE
  92 + #define X3270_FT
  93 +
  94 + #undef HAVE_PRINTER
  95 + #undef HAVE_MALLOC_H
  96 + #undef HAVE_STRTOK_R
  97 + #undef HAVE_LOCALTIME_R
  98 +
  99 +#endif /* LIB3270_CONFIG_INCLUDED */
2 100
3 -/* The gettext package name. */  
4 -#undef GETTEXT_PACKAGE  
5 -  
6 -/* Define to 1 if you have the <dlfcn.h> header file. */  
7 -#undef HAVE_DLFCN_H  
8 -  
9 -/* Define to 1 if you have the `getaddrinfo' function. */  
10 -#undef HAVE_GETADDRINFO  
11 -  
12 -/* supports GCC visibility attributes */  
13 -#undef HAVE_GNUC_VISIBILITY  
14 -  
15 -/* Define if you have the iconv() function and it works. */  
16 -#undef HAVE_ICONV  
17 -  
18 -/* Do we have inet_ntop()? */  
19 -#undef HAVE_INET_NTOP  
20 -  
21 -/* Define to 1 if you have the <inttypes.h> header file. */  
22 -#undef HAVE_INTTYPES_H  
23 -  
24 -/* LDAP is available */  
25 -#undef HAVE_LDAP  
26 -  
27 -/* Define to 1 if you have the <ldap.h> header file. */  
28 -#undef HAVE_LDAP_H  
29 -  
30 -/* Do we have libcurl? */  
31 -#undef HAVE_LIBCURL  
32 -  
33 -/* Libintl is available */  
34 -#undef HAVE_LIBINTL  
35 -  
36 -/* Do we have libssl? */  
37 -#undef HAVE_LIBSSL  
38 -  
39 -/* Do we have localtime_r? */  
40 -#undef HAVE_LOCALTIME_R  
41 -  
42 -/* do we have malloc.h? */  
43 -#undef HAVE_MALLOC_H  
44 -  
45 -/* Define to 1 if you have the <memory.h> header file. */  
46 -#undef HAVE_MEMORY_H  
47 -  
48 -/* Define to 1 if you have the <stdint.h> header file. */  
49 -#undef HAVE_STDINT_H  
50 -  
51 -/* Define to 1 if you have the <stdlib.h> header file. */  
52 -#undef HAVE_STDLIB_H  
53 -  
54 -/* Define to 1 if you have the <strings.h> header file. */  
55 -#undef HAVE_STRINGS_H  
56 -  
57 -/* Define to 1 if you have the <string.h> header file. */  
58 -#undef HAVE_STRING_H  
59 -  
60 -/* Do we have strtok_r? */  
61 -#undef HAVE_STRTOK_R  
62 -  
63 -/* do we have syslog.h? */  
64 -#undef HAVE_SYSLOG  
65 -  
66 -/* Define to 1 if you have the <sys/stat.h> header file. */  
67 -#undef HAVE_SYS_STAT_H  
68 -  
69 -/* Define to 1 if you have the <sys/types.h> header file. */  
70 -#undef HAVE_SYS_TYPES_H  
71 -  
72 -/* Define to 1 if you have the <unistd.h> header file. */  
73 -#undef HAVE_UNISTD_H  
74 -  
75 -/* Do we have vasprintf? */  
76 -#undef HAVE_VASPRINTF  
77 -  
78 -/* Define as const if the declaration of iconv() needs const. */  
79 -#undef ICONV_CONST  
80 -  
81 -/* "The default tn3270 host" */  
82 -#undef LIB3270_DEFAULT_HOST  
83 -  
84 -/* The protocol library name */  
85 -#undef LIB3270_NAME  
86 -  
87 -/* The SDK version number */  
88 -#undef LIB3270_SDK_VERSION  
89 -  
90 -/* Define to the sub-directory where libtool stores uninstalled libraries. */  
91 -#undef LT_OBJDIR  
92 -  
93 -/* Name of package */  
94 -#undef PACKAGE  
95 -  
96 -/* Define to the address where bug reports for this package should be sent. */  
97 -#undef PACKAGE_BUGREPORT  
98 -  
99 -/* The library major release */  
100 -#undef PACKAGE_MAJOR_RELEASE  
101 -  
102 -/* The library major version */  
103 -#undef PACKAGE_MAJOR_VERSION  
104 -  
105 -/* The library minor release */  
106 -#undef PACKAGE_MINOR_RELEASE  
107 -  
108 -/* The library minor version */  
109 -#undef PACKAGE_MINOR_VERSION  
110 -  
111 -/* Define to the full name of this package. */  
112 -#undef PACKAGE_NAME  
113 -  
114 -/* The package release */  
115 -#undef PACKAGE_RELEASE  
116 -  
117 -/* Define to the full name and version of this package. */  
118 -#undef PACKAGE_STRING  
119 -  
120 -/* Define to the one symbol short name of this package. */  
121 -#undef PACKAGE_TARNAME  
122 -  
123 -/* Define to the home page for this package. */  
124 -#undef PACKAGE_URL  
125 -  
126 -/* Define to the version of this package. */  
127 -#undef PACKAGE_VERSION  
128 -  
129 -/* The product name */  
130 -#undef PRODUCT_NAME  
131 -  
132 -/* The RPQ build date */  
133 -#undef RPQ_BUILD_DATE  
134 -  
135 -/* The RPQ revision */  
136 -#undef RPQ_REVISION  
137 -  
138 -/* The RPQ timestamp */  
139 -#undef RPQ_TIMESTAMP_VALUE  
140 -  
141 -/* The build date */  
142 -#undef SCCS_DATE  
143 -  
144 -/* The build user */  
145 -#undef SCCS_USER  
146 -  
147 -/* The default URL for CRL download */  
148 -#undef SSL_CRL_URL  
149 -  
150 -/* Should we check the CRL? */  
151 -#undef SSL_ENABLE_CRL_CHECK  
152 -  
153 -/* Should we check the CRL expiration date? */  
154 -#undef SSL_ENABLE_CRL_EXPIRATION_CHECK  
155 -  
156 -/* Should we emit a notification when ssl validation fails? */  
157 -#undef SSL_ENABLE_NOTIFICATION_WHEN_FAILED  
158 -  
159 -/* Should we accept self signed cert? */  
160 -#undef SSL_ENABLE_SELF_SIGNED_CERT_CHECK  
161 -  
162 -/* Define to 1 if you have the ANSI C header files. */  
163 -#undef STDC_HEADERS  
164 -  
165 -/* The delay, in miliseconds, between the host unlocking the keyboard and  
166 - lib3270 actually performing the unlock */  
167 -#undef UNLOCK_MS  
168 -  
169 -/* Version number of package */  
170 -#undef VERSION  
171 -  
172 -/* X3270 compatibility */  
173 -#undef X3270_ANSI  
174 -  
175 -/* X3270 compatibility */  
176 -#undef X3270_APL  
177 -  
178 -/* X3270 compatibility */  
179 -#undef X3270_FT  
180 -  
181 -/* X3270 compatibility */  
182 -#undef X3270_TN3270E  
183 -  
184 -/* X3270 compatibility */  
185 -#undef X3270_TRACE