diff options
author | Aleksander Morgado <aleksander@lanedo.com> | 2012-02-13 11:58:06 +0100 |
---|---|---|
committer | Aleksander Morgado <aleksander@lanedo.com> | 2012-03-15 14:15:04 +0100 |
commit | ffdb034413d281361803ebb52fcbb4f569e1b9f2 (patch) | |
tree | ca900ffa5d3e94839586f09ec3e0cc6d52d4d491 /src | |
parent | 71c3c8d8e55af4b78ad99285f32ee28b6fe87aa0 (diff) |
build: renamed files holding daemon-specific enum types
Diffstat (limited to 'src')
-rw-r--r-- | src/Makefile.am | 20 | ||||
-rw-r--r-- | src/mm-bearer.c | 2 |
2 files changed, 11 insertions, 11 deletions
diff --git a/src/Makefile.am b/src/Makefile.am index 026c47fc..bc2f7d2f 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -54,20 +54,20 @@ libserial_la_SOURCES = \ mm-qcdm-serial-port.h # Daemon specific enum types -WITH_ENUMS = mm-bearer.h +DAEMON_ENUMS = mm-bearer.h -mm-private-enums-types.h: Makefile.am $(WITH_ENUMS) $(top_srcdir)/build-aux/mm-enums-template.h +mm-daemon-enums-types.h: Makefile.am $(DAEMON_ENUMS) $(top_srcdir)/build-aux/mm-enums-template.h $(AM_V_GEN) glib-mkenums \ - --fhead "#include \"mm-bearer.h\"\n#ifndef __MM_PRIVATE_ENUMS_TYPES_H__\n#define __MM_PRIVATE_ENUMS_TYPES_H__\n" \ + --fhead "#include \"mm-bearer.h\"\n#ifndef __MM_DAEMON_ENUMS_TYPES_H__\n#define __MM_DAEMON_ENUMS_TYPES_H__\n" \ --template $(top_srcdir)/build-aux/mm-enums-template.h \ - --ftail "#endif /* __MM_PRIVATE_ENUMS_TYPES_H__ */\n" \ - $(WITH_ENUMS) > $@ + --ftail "#endif /* __MM_DAEMON_ENUMS_TYPES_H__ */\n" \ + $(DAEMON_ENUMS) > $@ -mm-private-enums-types.c: Makefile.am $(top_srcdir)/include/ModemManager-enums.h $(top_srcdir)/build-aux/mm-enums-template.c mm-private-enums-types.h +mm-daemon-enums-types.c: Makefile.am $(top_srcdir)/include/ModemManager-enums.h $(top_srcdir)/build-aux/mm-enums-template.c mm-daemon-enums-types.h $(AM_V_GEN) glib-mkenums \ - --fhead "#include \"mm-private-enums-types.h\"" \ + --fhead "#include \"mm-daemon-enums-types.h\"" \ --template $(top_srcdir)/build-aux/mm-enums-template.c \ - $(WITH_ENUMS) > $@ + $(DAEMON_ENUMS) > $@ sbin_PROGRAMS = modem-manager @@ -117,8 +117,8 @@ modem_manager_SOURCES = \ main.c \ mm-log.c \ mm-log.h \ - mm-private-enums-types.h \ - mm-private-enums-types.c \ + mm-daemon-enums-types.h \ + mm-daemon-enums-types.c \ mm-private-boxed-types.h \ mm-private-boxed-types.c \ mm-callback-info.c \ diff --git a/src/mm-bearer.c b/src/mm-bearer.c index d64d4732..5506d2c7 100644 --- a/src/mm-bearer.c +++ b/src/mm-bearer.c @@ -25,7 +25,7 @@ #include <ModemManager.h> #include <libmm-common.h> -#include "mm-private-enums-types.h" +#include "mm-daemon-enums-types.h" #include "mm-iface-modem.h" #include "mm-bearer.h" #include "mm-base-modem-at.h" |