[seed] [modules] Standardize on seed-{modulename}.c for all except DBUS (for now)
- From: Tim Horton <hortont src gnome org>
- To: svn-commits-list gnome org
- Subject: [seed] [modules] Standardize on seed-{modulename}.c for all except DBUS (for now)
- Date: Sat, 4 Jul 2009 08:17:39 +0000 (UTC)
commit 0b7fba5a148898e7fbd22044ebfe4af5d65a31b6
Author: Tim Horton <hortont svn gnome org>
Date: Sat Jul 4 04:16:58 2009 -0400
[modules] Standardize on seed-{modulename}.c for all except DBUS (for now)
modules/Multiprocessing/Makefile.am | 2 +-
.../{multi.c => seed-Multiprocessing.c} | 0
modules/example/Makefile.am | 2 +-
modules/example/{example.c => seed-example.c} | 0
modules/gettext/Makefile.am | 2 +-
modules/gettext/{gettext.c => seed-gettext.c} | 0
modules/gtkbuilder/Makefile.am | 2 +-
.../gtkbuilder/{gtkbuilder.c => seed-gtkbuilder.c} | 0
modules/libxml/Makefile.am | 2 +-
modules/libxml/{libxml.c => seed-libxml.c} | 0
modules/mpfr/Makefile.am | 2 +-
modules/mpfr/{mpfr.c => seed-mpfr.c} | 0
modules/os/Makefile.am | 2 +-
modules/os/{os.c => seed-os.c} | 0
modules/sandbox/Makefile.am | 2 +-
modules/sandbox/{sandbox.c => seed-sandbox.c} | 0
modules/seed-module.h | 2 +-
17 files changed, 9 insertions(+), 9 deletions(-)
---
diff --git a/modules/Multiprocessing/Makefile.am b/modules/Multiprocessing/Makefile.am
index 8390029..cf2798e 100644
--- a/modules/Multiprocessing/Makefile.am
+++ b/modules/Multiprocessing/Makefile.am
@@ -8,7 +8,7 @@ seedlib_LTLIBRARIES = \
libmultiprocessing.la
libmultiprocessing_la_SOURCES = \
- multi.c
+ seed-Multiprocessing.c
libmultiprocessing_la_CFLAGS = \
$(GOBJECT_INTROSPECTION_CFLAGS) \
diff --git a/modules/Multiprocessing/multi.c b/modules/Multiprocessing/seed-Multiprocessing.c
similarity index 100%
rename from modules/Multiprocessing/multi.c
rename to modules/Multiprocessing/seed-Multiprocessing.c
diff --git a/modules/example/Makefile.am b/modules/example/Makefile.am
index 643f082..0df6387 100644
--- a/modules/example/Makefile.am
+++ b/modules/example/Makefile.am
@@ -6,7 +6,7 @@ seedlib_LTLIBRARIES = \
libexample.la
libexample_la_SOURCES = \
- example.c
+ seed-example.c
AM_CPPFLAGS = \
diff --git a/modules/example/example.c b/modules/example/seed-example.c
similarity index 100%
rename from modules/example/example.c
rename to modules/example/seed-example.c
diff --git a/modules/gettext/Makefile.am b/modules/gettext/Makefile.am
index c66050c..7ae8abf 100644
--- a/modules/gettext/Makefile.am
+++ b/modules/gettext/Makefile.am
@@ -6,7 +6,7 @@ seedlib_LTLIBRARIES = \
libgettext.la
libgettext_la_SOURCES = \
- gettext.c
+ seed-gettext.c
AM_CPPFLAGS = \
-I top_srcdir@/libseed/ \
diff --git a/modules/gettext/gettext.c b/modules/gettext/seed-gettext.c
similarity index 100%
rename from modules/gettext/gettext.c
rename to modules/gettext/seed-gettext.c
diff --git a/modules/gtkbuilder/Makefile.am b/modules/gtkbuilder/Makefile.am
index 313e9b4..b469e27 100644
--- a/modules/gtkbuilder/Makefile.am
+++ b/modules/gtkbuilder/Makefile.am
@@ -6,7 +6,7 @@ seedlib_LTLIBRARIES = \
libgtkbuilder.la
libgtkbuilder_la_SOURCES = \
- gtkbuilder.c
+ seed-gtkbuilder.c
AM_CPPFLAGS = \
diff --git a/modules/gtkbuilder/gtkbuilder.c b/modules/gtkbuilder/seed-gtkbuilder.c
similarity index 100%
rename from modules/gtkbuilder/gtkbuilder.c
rename to modules/gtkbuilder/seed-gtkbuilder.c
diff --git a/modules/libxml/Makefile.am b/modules/libxml/Makefile.am
index dc79e1e..19d56b7 100644
--- a/modules/libxml/Makefile.am
+++ b/modules/libxml/Makefile.am
@@ -8,7 +8,7 @@ seedlib_LTLIBRARIES = \
liblibxml.la
liblibxml_la_SOURCES = \
- libxml.c
+ seed-libxml.c
AM_CPPFLAGS = \
-I top_srcdir@/libseed/ \
diff --git a/modules/libxml/libxml.c b/modules/libxml/seed-libxml.c
similarity index 100%
rename from modules/libxml/libxml.c
rename to modules/libxml/seed-libxml.c
diff --git a/modules/mpfr/Makefile.am b/modules/mpfr/Makefile.am
index 1228144..999c638 100644
--- a/modules/mpfr/Makefile.am
+++ b/modules/mpfr/Makefile.am
@@ -6,7 +6,7 @@ seedlib_LTLIBRARIES = \
libmpfr.la
libmpfr_la_SOURCES = \
- mpfr.c
+ seed-mpfr.c
AM_CPPFLAGS = \
-I top_srcdir@/libseed/ \
diff --git a/modules/mpfr/mpfr.c b/modules/mpfr/seed-mpfr.c
similarity index 100%
rename from modules/mpfr/mpfr.c
rename to modules/mpfr/seed-mpfr.c
diff --git a/modules/os/Makefile.am b/modules/os/Makefile.am
index c571340..4816958 100644
--- a/modules/os/Makefile.am
+++ b/modules/os/Makefile.am
@@ -6,7 +6,7 @@ seedlib_LTLIBRARIES = \
libos.la
libos_la_SOURCES = \
- os.c
+ seed-os.c
libos_la_CFLAGS = \
$(GOBJECT_INTROSPECTION_CFLAGS) \
diff --git a/modules/os/os.c b/modules/os/seed-os.c
similarity index 100%
rename from modules/os/os.c
rename to modules/os/seed-os.c
diff --git a/modules/sandbox/Makefile.am b/modules/sandbox/Makefile.am
index e2ff69a..7441192 100644
--- a/modules/sandbox/Makefile.am
+++ b/modules/sandbox/Makefile.am
@@ -4,7 +4,7 @@ seedlib_LTLIBRARIES = \
libsandbox.la
libsandbox_la_SOURCES = \
- sandbox.c
+ seed-sandbox.c
AM_CPPFLAGS = \
diff --git a/modules/sandbox/sandbox.c b/modules/sandbox/seed-sandbox.c
similarity index 100%
rename from modules/sandbox/sandbox.c
rename to modules/sandbox/seed-sandbox.c
diff --git a/modules/seed-module.h b/modules/seed-module.h
index f19bd25..2f247a6 100644
--- a/modules/seed-module.h
+++ b/modules/seed-module.h
@@ -3,7 +3,7 @@
#include "../libseed/seed.h"
-// TODO: Move [example sqlite canvas Multiprocessing readline
+// TODO: Move [example sqlite canvas Multiprocessing
// os sandbox dbus libxml cairo gtkbuilder]
// towards utilization of this header.
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]