[Groonga-commit] groonga/grnxx [master] Create lib/alpha where to put experimental modules.

Back to archive index

susumu.yata null+****@clear*****
Thu Nov 29 14:30:23 JST 2012


susumu.yata	2012-11-29 14:30:23 +0900 (Thu, 29 Nov 2012)

  New Revision: c441200687bd7c6de2d8e7ef12a13c56da91f0d5
  https://github.com/groonga/grnxx/commit/c441200687bd7c6de2d8e7ef12a13c56da91f0d5

  Log:
    Create lib/alpha where to put experimental modules.

  Added files:
    lib/alpha/Makefile.am
    lib/alpha/sample.cpp
    lib/alpha/sample.hpp
  Modified files:
    configure.ac
    lib/Makefile.am

  Modified: configure.ac (+1 -0)
===================================================================
--- configure.ac    2012-11-29 14:03:45 +0900 (94a0b41)
+++ configure.ac    2012-11-29 14:30:23 +0900 (301405b)
@@ -40,6 +40,7 @@ AC_CHECK_LIB([rt], [clock_gettime])
 
 AC_CONFIG_FILES([Makefile
                  lib/Makefile
+                 lib/alpha/Makefile
                  lib/db/Makefile
                  lib/io/Makefile
                  test/Makefile])

  Modified: lib/Makefile.am (+2 -1)
===================================================================
--- lib/Makefile.am    2012-11-29 14:03:45 +0900 (1329cc8)
+++ lib/Makefile.am    2012-11-29 14:30:23 +0900 (442412d)
@@ -1,8 +1,9 @@
-SUBDIRS = db io
+SUBDIRS = alpha db io
 
 lib_LTLIBRARIES = libgrnxx.la
 
 libgrnxx_la_LIBADD =		\
+	alpha/libgrnxx_alpha.la	\
 	db/libgrnxx_db.la	\
 	io/libgrnxx_io.la
 

  Added: lib/alpha/Makefile.am (+8 -0) 100644
===================================================================
--- /dev/null
+++ lib/alpha/Makefile.am    2012-11-29 14:30:23 +0900 (8044c8d)
@@ -0,0 +1,8 @@
+noinst_LTLIBRARIES = libgrnxx_alpha.la
+
+libgrnxx_alpha_la_SOURCES =		\
+	sample.cpp
+
+libgrnxx_alpha_includedir = ${includedir}/grnxx/alpha
+libgrnxx_alpha_include_HEADERS =	\
+	sample.hpp

  Added: lib/alpha/sample.cpp (+24 -0) 100644
===================================================================
--- /dev/null
+++ lib/alpha/sample.cpp    2012-11-29 14:30:23 +0900 (d55f1c8)
@@ -0,0 +1,24 @@
+/*
+  Copyright (C) 2012  Brazil, Inc.
+
+  This library 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 library 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
+  Lesser General Public License for more details.
+
+  You should have received a copy of the GNU Lesser General Public
+  License along with this library; if not, write to the Free Software
+  Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
+*/
+#include "sample.hpp"
+
+namespace grnxx {
+namespace alpha {
+
+}  // namespace alpha
+}  // namespace grnxx

  Added: lib/alpha/sample.hpp (+27 -0) 100644
===================================================================
--- /dev/null
+++ lib/alpha/sample.hpp    2012-11-29 14:30:23 +0900 (dac3ecb)
@@ -0,0 +1,27 @@
+/*
+  Copyright (C) 2012  Brazil, Inc.
+
+  This library 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 library 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
+  Lesser General Public License for more details.
+
+  You should have received a copy of the GNU Lesser General Public
+  License along with this library; if not, write to the Free Software
+  Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
+*/
+#ifndef GRNXX_ALPHA_SAMPLE_HPP
+#define GRNXX_ALPHA_SAMPLE_HPP
+
+namespace grnxx {
+namespace alpha {
+
+}  // namespace alpha
+}  // namespace grnxx
+
+#endif  // GRNXX_ALPHA_SAMPLE_HPP
-------------- next part --------------
HTML����������������������������...
Download 



More information about the Groonga-commit mailing list
Back to archive index