Commit 4538d4f6fb2f2600d94ba27a5f9d6e9c7df5f261
1 parent
f0e2fc86
Exists in
master
Preparando para empacotamento
Showing
4 changed files
with
7 additions
and
4 deletions
Show diff stats
.gitignore
Makefile.in
@@ -89,7 +89,7 @@ $(OBJRLS)/%.o: \ | @@ -89,7 +89,7 @@ $(OBJRLS)/%.o: \ | ||
89 | 89 | ||
90 | @echo $< ... | 90 | @echo $< ... |
91 | @$(MKDIR) `dirname $@` | 91 | @$(MKDIR) `dirname $@` |
92 | - @$(CCC) $(CFLAGS) -DNDEBUG=1 \ | 92 | + @$(CC) $(CFLAGS) -DNDEBUG=1 \ |
93 | -DBUILD_DATE=`date +"0x%Y%m%d"` \ | 93 | -DBUILD_DATE=`date +"0x%Y%m%d"` \ |
94 | -o $@ -c $< | 94 | -o $@ -c $< |
95 | 95 |
pw3270d.cbp
@@ -3,6 +3,7 @@ | @@ -3,6 +3,7 @@ | ||
3 | <FileVersion major="1" minor="6" /> | 3 | <FileVersion major="1" minor="6" /> |
4 | <Project> | 4 | <Project> |
5 | <Option title="Gateway pw3270" /> | 5 | <Option title="Gateway pw3270" /> |
6 | + <Option makefile_is_custom="1" /> | ||
6 | <Option pch_mode="2" /> | 7 | <Option pch_mode="2" /> |
7 | <Option compiler="gcc" /> | 8 | <Option compiler="gcc" /> |
8 | <Build> | 9 | <Build> |
src/private.h
@@ -29,10 +29,10 @@ | @@ -29,10 +29,10 @@ | ||
29 | #ifndef PRIVATE_H_INCLUDED | 29 | #ifndef PRIVATE_H_INCLUDED |
30 | 30 | ||
31 | #define PRIVATE_H_INCLUDED | 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 | #define PW3270_SERVICE_DBUS_SERVICE_PATH "/br/com/bb/pw3270/service" | 36 | #define PW3270_SERVICE_DBUS_SERVICE_PATH "/br/com/bb/pw3270/service" |
37 | #define PW3270_SERVICE_DBUS_SERVICE "br.com.bb.pw3270.service" | 37 | #define PW3270_SERVICE_DBUS_SERVICE "br.com.bb.pw3270.service" |
38 | 38 |