summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTrever Fischer <tdfischer@fedoraproject.org>2012-04-12 15:04:26 -0400
committerTrever Fischer <tdfischer@fedoraproject.org>2012-04-12 15:04:34 -0400
commita83bade3b47d21f83eeac807c237bc9a4cfd939d (patch)
tree4267109c5ec0b7ebb06d4a38c8d2eb08d24e9a75
parent75ca272b8dc4ee42bcf9ea12b17c9325612bdbd5 (diff)
Start work on libzeitgeist2
-rw-r--r--Makefile.am1
-rw-r--r--configure.ac1
-rw-r--r--libzeitgeist/.gitignore2
-rw-r--r--libzeitgeist/Makefile.am20
-rw-r--r--libzeitgeist/log.vala27
5 files changed, 51 insertions, 0 deletions
diff --git a/Makefile.am b/Makefile.am
index 824aa916..29143309 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -2,6 +2,7 @@ NULL =
SUBDIRS = \
src \
+ libzeitgeist \
extensions \
data \
python \
diff --git a/configure.ac b/configure.ac
index fc0b2029..32256888 100644
--- a/configure.ac
+++ b/configure.ac
@@ -93,6 +93,7 @@ AM_CONDITIONAL(HAVE_FTS, test "x$enable_fts" != "xno")
AC_CONFIG_FILES([
Makefile
src/Makefile
+ libzeitgeist/Makefile
extensions/Makefile
extensions/fts++/Makefile
extensions/fts++/test/Makefile
diff --git a/libzeitgeist/.gitignore b/libzeitgeist/.gitignore
new file mode 100644
index 00000000..c8b08435
--- /dev/null
+++ b/libzeitgeist/.gitignore
@@ -0,0 +1,2 @@
+.deps
+.libs
diff --git a/libzeitgeist/Makefile.am b/libzeitgeist/Makefile.am
new file mode 100644
index 00000000..b024bbe3
--- /dev/null
+++ b/libzeitgeist/Makefile.am
@@ -0,0 +1,20 @@
+NULL =
+
+
+lib_LTLIBRARIES = libzeitgeist.la
+
+AM_CPPFLAGS = \
+ $(ZEITGEIST_CFLAGS) \
+ -include $(CONFIG_HEADER) \
+ -w \
+ $(NULL)
+
+AM_VALAFLAGS = \
+ --target-glib=2.26 \
+ -D BUILTIN_EXTENSIONS \
+ $(top_srcdir)/config.vapi \
+ $(NULL)
+
+libzeitgeist_la_SOURCES = \
+ log.vala \
+ $(NULL)
diff --git a/libzeitgeist/log.vala b/libzeitgeist/log.vala
new file mode 100644
index 00000000..6cb93836
--- /dev/null
+++ b/libzeitgeist/log.vala
@@ -0,0 +1,27 @@
+/*
+ *
+ * Copyright © 2011 Collabora Ltd.
+ * By Trever Fischer <trever.fischer@collabora.co.uk>
+ *
+ * This program is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU Lesser General Public License as published by
+ * the Free Software Foundation, either version 2.1 of the License, or
+ * (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public License
+ * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ *
+ */
+
+namespace Zeitgeist
+{
+public class Log
+{
+
+}
+}