diff options
author | Mathieu Duponchelle <mathieu@centricular.com> | 2019-07-30 23:59:56 +0200 |
---|---|---|
committer | Mathieu Duponchelle <mathieu@centricular.com> | 2019-07-30 23:59:56 +0200 |
commit | 4ef3e5650a6c1da5e737241bd04cab17945aaf99 (patch) | |
tree | 95c5304fc3980294281522049a3d09c3f44b1a9e /gst-plugin | |
parent | a349e7c890bf96004eaf099dd7160bef500c222e (diff) |
gst-plugin/configure.ac: add missing defines
Diffstat (limited to 'gst-plugin')
-rw-r--r-- | gst-plugin/configure.ac | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/gst-plugin/configure.ac b/gst-plugin/configure.ac index 7f69f0a..dedce6e 100644 --- a/gst-plugin/configure.ac +++ b/gst-plugin/configure.ac @@ -29,6 +29,12 @@ AC_CHECK_PROG(HAVE_PKGCONFIG, pkg-config, [ ], [ AC_MSG_ERROR([You need to have pkg-config installed!]) ]) +AC_DEFINE_UNQUOTED(PACKAGE_VERSION, "$GST_REQUIRED", ["The version of the plugin"]) +AC_DEFINE(PACKAGE, "gst-template-plugin", ["The name of the package"]) +AC_DEFINE(GST_LICENSE, "LGPL", ["The license of the plugin"]) +AC_DEFINE(GST_PACKAGE_NAME, "GStreamer template Plug-ins", ["The name of the plugin"]) +AC_DEFINE(GST_PACKAGE_ORIGIN, "https://gstreamer.freedesktop.org", ["The origin of the plugin"]) + dnl Check for the required version of GStreamer core (and gst-plugins-base) dnl This will export GST_CFLAGS and GST_LIBS variables for use in Makefile.am dnl |