Initialize Tizen 2.3
[framework/multimedia/gst-plugins-base0.10.git] / common / m4 / gst-plugindir.m4
1 dnl AG_GST_SET_PLUGINDIR
2
3 dnl AC_DEFINE PLUGINDIR to the full location where plug-ins will be installed
4 dnl AC_SUBST plugindir, to be used in Makefile.am's
5
6 AC_DEFUN([AG_GST_SET_PLUGINDIR],
7 [
8   dnl define location of plugin directory
9   AS_AC_EXPAND(PLUGINDIR, ${libdir}/gstreamer-$GST_MAJORMINOR)
10   AC_DEFINE_UNQUOTED(PLUGINDIR, "$PLUGINDIR",
11     [directory where plugins are located])
12   AC_MSG_NOTICE([Using $PLUGINDIR as the plugin install location])
13
14   dnl plugin directory configure-time variable for use in Makefile.am
15   plugindir="\$(libdir)/gstreamer-$GST_MAJORMINOR"
16   AC_SUBST(plugindir)
17 ])