Commit 83cfc46611f0b5008ae072708e57d27ba25337fe

Authored by perry.werneck@gmail.com
1 parent aa08fbd8

Experimentando com android

Showing 3 changed files with 41 additions and 6 deletions   Show diff stats
Makefile.in
... ... @@ -101,12 +101,7 @@ $(TMPDIR)/pot/%.pot: %.c
101 101  
102 102 #---[ Sources ]----------------------------------------------------------------
103 103  
104   -SOURCES = XtGlue.c init.c actions.c ansi.c charset.c ctlr.c \
105   - ft.c ft_cut.c ft_dft.c glue.c host.c kybd.c \
106   - proxy.c resources.c rpq.c screen.c see.c \
107   - sf.c tables.c telnet.c toggles.c trace_ds.c utf8.c util.c \
108   - xio.c resolver.c log.c paste.c macros.c fallbacks.c version.c \
109   - selection.c bounds.c
  104 +include sources.mak
110 105  
111 106 #---[ Misc targets ]-----------------------------------------------------------
112 107  
... ...
globals.h
... ... @@ -55,6 +55,11 @@
55 55 /*
56 56 * gettext stuff
57 57 */
  58 +#ifdef ANDROID
  59 + #undef HAVE_LIBINTL
  60 + #undef HAVE_LIBSSL
  61 +#endif
  62 +
58 63 #ifdef HAVE_LIBINTL
59 64 #include <libintl.h>
60 65 #define _( x ) gettext(x)
... ...
sources.mak 0 → 100644
... ... @@ -0,0 +1,35 @@
  1 +#
  2 +# "Software pw3270, desenvolvido com base nos códigos fontes do WC3270 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 +# Contatos:
  22 +#
  23 +# perry.werneck@gmail.com (Alexandre Perry de Souza Werneck)
  24 +# erico.mendonca@gmail.com (Erico Mascarenhas de Mendonça)
  25 +# licinio@bb.com.br (Licínio Luis Branco)
  26 +# kraucer@bb.com.br (Kraucer Fernandes Mazuco)
  27 +#
  28 +
  29 +SOURCES = XtGlue.c init.c actions.c ansi.c charset.c ctlr.c \
  30 + ft.c ft_cut.c ft_dft.c glue.c host.c kybd.c \
  31 + proxy.c resources.c rpq.c screen.c see.c \
  32 + sf.c tables.c telnet.c toggles.c trace_ds.c utf8.c util.c \
  33 + xio.c resolver.c log.c paste.c macros.c fallbacks.c version.c \
  34 + selection.c bounds.c
  35 +
... ...