sample libs install ok
authorcompudj <compudj@04897980-b3bd-0310-b5e0-8ef037075253>
Fri, 30 May 2003 13:28:06 +0000 (13:28 +0000)
committercompudj <compudj@04897980-b3bd-0310-b5e0-8ef037075253>
Fri, 30 May 2003 13:28:06 +0000 (13:28 +0000)
git-svn-id: http://ltt.polymtl.ca/svn@41 04897980-b3bd-0310-b5e0-8ef037075253

ltt/branches/poly/configure.in
ltt/branches/poly/lttv/plugins/Makefile.am
ltt/branches/poly/lttv/test/Makefile.am [deleted file]
ltt/branches/poly/lttv/test/sampledep.c [deleted file]
ltt/branches/poly/lttv/test/samplemodule.c [deleted file]
ltt/branches/poly/lttv/test/samplemodule2.c [deleted file]

index 9a867238bca4825cc36628670e9caf22f5e1c7ae..74d0d42dde7156028f4d9ef3e6eedfc42d9272f0 100644 (file)
@@ -37,8 +37,8 @@ AC_CHECK_FUNCS([select])
 
 #CPPFLAGS="$CPPFLAGS -I"
 
-lttplugindir="${libdir}/ltt/plugins"
-AC_SUBST(lttplugindir)
+lttvplugindir="${libdir}/lttv/plugins"
+AC_SUBST(lttvplugindir)
 
 DEFAULT_INCLUDES="-I\$(top_srcdir)/include"
 AC_SUBST(DEFAULT_INCLUDES)
@@ -52,6 +52,7 @@ AC_SUBST(lttincludedir)
 AC_CONFIG_FILES([Makefile
                  lttv/Makefile
                  lttv/plugins/Makefile
+                lttv/plugins/exemples/Makefile
                 lttd/Makefile
                 LibLTT/Makefile])
 AC_OUTPUT
index 381178416562788153333a9806ff812db017e1cd..0ab08e393c3f8df14e557c2062f767b6e718ecc7 100644 (file)
@@ -4,8 +4,10 @@
 # Created by Mathieu Desnoyers on May 6, 2003
 #
 
-libdir = ${lttplugindir}
+SUBDIRS = exemples
 
-#lib_LTLIBRARIES = samplemodule2.la
-#samplemodule2_la_LDFLAGS = -module
-#samplemodule2_la_SOURCES = samplemodule2.c
+libdir = ${lttvplugindir}
+
+#lib_LTLIBRARIES = sampledep.la
+#sampledep_la_LDFLAGS = -module
+#sampledep_la_SOURCES = sampledep.c
diff --git a/ltt/branches/poly/lttv/test/Makefile.am b/ltt/branches/poly/lttv/test/Makefile.am
deleted file mode 100644 (file)
index 5c448d7..0000000
+++ /dev/null
@@ -1,15 +0,0 @@
-#
-# Makefile for LTT New generation user interface : test plugins.
-#
-# Created by Mathieu Desnoyers on May 6, 2003
-#
-
-libdir = ${lttplugindir}
-
-lib_LTLIBRARIES = sampledep.la samplemodule.la samplemodule2.la
-sampledep_la_LDFLAGS = -module
-sampledep_la_SOURCES = sampledep.c
-samplemodule_la_LDFLAGS = -module
-samplemodule_la_SOURCES = samplemodule.c
-samplemodule2_la_LDFLAGS = -module
-samplemodule2_la_SOURCES = samplemodule2.c
diff --git a/ltt/branches/poly/lttv/test/sampledep.c b/ltt/branches/poly/lttv/test/sampledep.c
deleted file mode 100644 (file)
index 805c528..0000000
+++ /dev/null
@@ -1,21 +0,0 @@
-/* Sample module for Linux Trace Toolkit new generation User Interface */
-
-/* Created by Mathieu Desnoyers, may 2003 */
-
-#include <glib.h>
-#include <gmodule.h>
-
-/* Include module.h from lttv headers for module loading */
-#include <lttv/module.h>
-
-G_MODULE_EXPORT void init() {
-       g_critical("Sample module dependant init()");
-
-       lttv_module_load("samplemodule",0,NULL,DEPENDANT);
-}
-
-G_MODULE_EXPORT void destroy() {
-       g_critical("Sample module dependant destroy()");
-       lttv_module_unload_name("samplemodule",DEPENDANT);
-}
-       
diff --git a/ltt/branches/poly/lttv/test/samplemodule.c b/ltt/branches/poly/lttv/test/samplemodule.c
deleted file mode 100644 (file)
index e64ab2f..0000000
+++ /dev/null
@@ -1,15 +0,0 @@
-/* Sample module for Linux Trace Toolkit new generation User Interface */
-
-/* Created by Mathieu Desnoyers, may 2003 */
-
-#include <glib.h>
-#include <gmodule.h>
-
-G_MODULE_EXPORT void init() {
-       g_critical("Sample module init()");
-}
-
-G_MODULE_EXPORT void destroy() {
-       g_critical("Sample module destroy()");
-}
-       
diff --git a/ltt/branches/poly/lttv/test/samplemodule2.c b/ltt/branches/poly/lttv/test/samplemodule2.c
deleted file mode 100644 (file)
index 3d7bb1c..0000000
+++ /dev/null
@@ -1,15 +0,0 @@
-/* Sample module for Linux Trace Toolkit new generation User Interface */
-
-/* Created by Mathieu Desnoyers, may 2003 */
-
-#include <glib.h>
-#include <gmodule.h>
-
-G_MODULE_EXPORT void init() {
-       g_critical("Sample module 2 init()");
-}
-
-G_MODULE_EXPORT void destroy() {
-       g_critical("Sample module 2 destroy()");
-}
-       
This page took 0.025984 seconds and 4 git commands to generate.