r1552 - in trunk/src/target/OM-2007/openmoko-libs: . libmokojournal

dodji at sita.openmoko.org dodji at sita.openmoko.org
Thu Mar 29 17:56:48 CEST 2007


Author: dodji
Date: 2007-03-29 17:56:43 +0200 (Thu, 29 Mar 2007)
New Revision: 1552

Added:
   trunk/src/target/OM-2007/openmoko-libs/libmokojournal/
   trunk/src/target/OM-2007/openmoko-libs/libmokojournal/Makefile.am
   trunk/src/target/OM-2007/openmoko-libs/libmokojournal/moko-journal.c
   trunk/src/target/OM-2007/openmoko-libs/libmokojournal/moko-journal.h
Modified:
   trunk/src/target/OM-2007/openmoko-libs/ChangeLog
   trunk/src/target/OM-2007/openmoko-libs/Makefile.am
   trunk/src/target/OM-2007/openmoko-libs/configure.ac
Log:
Added the openmoko-libs/libmokojournal directory structure

	* openmoko-libs/Makefile.am, openmoko-libs/configure.ac: declare
	  the new openmoko-libs/openmokojournal directory
	* openmoko-libs/libmokojournal/Makefile.am: added the new boilerplate
	  moko-journal.[c|h] files.
	* openmoko-libs/libmokojournal/moko-journal.c,h: added these new
	  empty files.


Modified: trunk/src/target/OM-2007/openmoko-libs/ChangeLog
===================================================================
--- trunk/src/target/OM-2007/openmoko-libs/ChangeLog	2007-03-29 15:56:38 UTC (rev 1551)
+++ trunk/src/target/OM-2007/openmoko-libs/ChangeLog	2007-03-29 15:56:43 UTC (rev 1552)
@@ -1,3 +1,12 @@
+2007-03-29 Dodji Seketeli <dodji at openedhand.com>
+
+	* openmoko-libs/Makefile.am, openmoko-libs/configure.ac: declare
+	  the new openmoko-libs/openmokojournal directory
+	* openmoko-libs/libmokojournal/Makefile.am: added the new boilerplate
+	  moko-journal.[c|h] files.
+	* openmoko-libs/libmokojournal/moko-journal.c,h: added these new
+	  empty files.
+
 2007-03-29  Rob Bradford  <rob at openedhand.com>
 
 	* libmokoui/Makefile.am:

Modified: trunk/src/target/OM-2007/openmoko-libs/Makefile.am
===================================================================
--- trunk/src/target/OM-2007/openmoko-libs/Makefile.am	2007-03-29 15:56:38 UTC (rev 1551)
+++ trunk/src/target/OM-2007/openmoko-libs/Makefile.am	2007-03-29 15:56:43 UTC (rev 1552)
@@ -1,5 +1,5 @@
 # SUBDIRS = libmokocore libmokoui libmokopim libmokonet
-SUBDIRS = libmokoui data
+SUBDIRS = libmokoui libmokojournal data
 
 pcdata_DATA= openmoko-libs.pc
 pcdatadir= $(libdir)/pkgconfig

Modified: trunk/src/target/OM-2007/openmoko-libs/configure.ac
===================================================================
--- trunk/src/target/OM-2007/openmoko-libs/configure.ac	2007-03-29 15:56:38 UTC (rev 1551)
+++ trunk/src/target/OM-2007/openmoko-libs/configure.ac	2007-03-29 15:56:43 UTC (rev 1552)
@@ -40,5 +40,6 @@
 libmokoui/Makefile
 libmokopim/Makefile
 libmokonet/Makefile
+libmokojournal/Makefile
 data/Makefile
 ])

Added: trunk/src/target/OM-2007/openmoko-libs/libmokojournal/Makefile.am
===================================================================
--- trunk/src/target/OM-2007/openmoko-libs/libmokojournal/Makefile.am	2007-03-29 15:56:38 UTC (rev 1551)
+++ trunk/src/target/OM-2007/openmoko-libs/libmokojournal/Makefile.am	2007-03-29 15:56:43 UTC (rev 1552)
@@ -0,0 +1,13 @@
+lib_LTLIBRARIES=libmokojournal.la
+
+public_headers=moko-journal.h
+sources=moko-journal.c
+
+libmokojournal_la_SOURCES= $(sources) $(public_headers)
+libmokojournal_la_LIBADD=
+libmokojournal_la_LDFLAGS= -version-info 0:0:0
+AM_CFLAGS = -Wall -pedantic -std=c99
+
+libmokojournalheadersdir=$(includedir)/openmoko-libs/libmokojournal
+libmokojournalheaders_DATA=$(public_headers)
+

Added: trunk/src/target/OM-2007/openmoko-libs/libmokojournal/moko-journal.c
===================================================================
--- trunk/src/target/OM-2007/openmoko-libs/libmokojournal/moko-journal.c	2007-03-29 15:56:38 UTC (rev 1551)
+++ trunk/src/target/OM-2007/openmoko-libs/libmokojournal/moko-journal.c	2007-03-29 15:56:43 UTC (rev 1552)
@@ -0,0 +1,21 @@
+/* vi: set sw=2: */
+/*
+ * Copyright (C) 2007 by OpenMoko, Inc.
+ * Written by OpenedHand Ltd <info at openedhand.com>
+ * All Rights Reserved
+ *
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; either version 2 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 General Public License along
+ * with this program; if not, write to the Free Software Foundation, Inc.,
+ * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
+ */
+#include "moko-journal.h"

Added: trunk/src/target/OM-2007/openmoko-libs/libmokojournal/moko-journal.h
===================================================================
--- trunk/src/target/OM-2007/openmoko-libs/libmokojournal/moko-journal.h	2007-03-29 15:56:38 UTC (rev 1551)
+++ trunk/src/target/OM-2007/openmoko-libs/libmokojournal/moko-journal.h	2007-03-29 15:56:43 UTC (rev 1552)
@@ -0,0 +1,24 @@
+/* vi: set sw=2: */
+/*
+ * Copyright (C) 2007 by OpenMoko, Inc.
+ * Written by OpenedHand Ltd <info at openedhand.com>
+ * All Rights Reserved
+ *
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; either version 2 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 General Public License along
+ * with this program; if not, write to the Free Software Foundation, Inc.,
+ * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
+ */
+#ifndef __MOKO_JOURNAL_H__
+#define  __MOKO_JOURNAL_H__
+
+#endif /*__MOKO_JOURNAL_H__*/





More information about the commitlog mailing list