Commit 4538d4f6fb2f2600d94ba27a5f9d6e9c7df5f261

Authored by Perry Werneck
1 parent f0e2fc86
Exists in master

Preparando para empacotamento

.gitignore
... ... @@ -12,4 +12,6 @@ config.h
12 12 stamp-h1
13 13 Makefile
14 14 dbus-glue.h
15   -
  15 +.bin
  16 +.obj
  17 +.src
... ...
Makefile.in
... ... @@ -89,7 +89,7 @@ $(OBJRLS)/%.o: \
89 89  
90 90 @echo $< ...
91 91 @$(MKDIR) `dirname $@`
92   - @$(CCC) $(CFLAGS) -DNDEBUG=1 \
  92 + @$(CC) $(CFLAGS) -DNDEBUG=1 \
93 93 -DBUILD_DATE=`date +"0x%Y%m%d"` \
94 94 -o $@ -c $<
95 95  
... ...
pw3270d.cbp
... ... @@ -3,6 +3,7 @@
3 3 <FileVersion major="1" minor="6" />
4 4 <Project>
5 5 <Option title="Gateway pw3270" />
  6 + <Option makefile_is_custom="1" />
6 7 <Option pch_mode="2" />
7 8 <Option compiler="gcc" />
8 9 <Build>
... ...
src/private.h
... ... @@ -29,10 +29,10 @@
29 29 #ifndef PRIVATE_H_INCLUDED
30 30  
31 31 #define PRIVATE_H_INCLUDED
  32 + #include "config.h"
32 33  
33   - #define ERROR_DOMAIN g_quark_from_static_string("pw3270DBUS")
  34 + #define ERROR_DOMAIN g_quark_from_static_string(PACKAGE_NAME)
34 35  
35   - // #define HAVE_SYSLOG 1
36 36 #define PW3270_SERVICE_DBUS_SERVICE_PATH "/br/com/bb/pw3270/service"
37 37 #define PW3270_SERVICE_DBUS_SERVICE "br.com.bb.pw3270.service"
38 38  
... ...