summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEmil Velikov <emil.l.velikov@gmail.com>2015-03-18 23:50:30 +0000
committerAaron Plattner <aplattner@nvidia.com>2015-05-11 12:50:59 -0700
commite4681ab2b71638a48fc857669903f7ac7ec8b3cb (patch)
tree1a0c0407a7548edd30ad0dd72fe687a13e59f745
parent19b9af8db20a1d3db882647e95682f46ecdf266e (diff)
configure.ac: remove AM_MAINTAINER_MODE
Using this macro can lead to various security issues, as pointed out in the automake manual. Follow the example set by most X components and remove it from the build. Signed-off-by: Emil Velikov <emil.l.velikov@gmail.com> Reviewed-by: Aaron Plattner <aplattner@nvidia.com> Signed-off-by: Aaron Plattner <aplattner@nvidia.com>
-rwxr-xr-xautogen.sh2
-rw-r--r--configure.ac1
2 files changed, 1 insertions, 2 deletions
diff --git a/autogen.sh b/autogen.sh
index 904cd67..354f254 100755
--- a/autogen.sh
+++ b/autogen.sh
@@ -9,4 +9,4 @@ cd $srcdir
autoreconf -v --install || exit 1
cd $ORIGDIR || exit $?
-$srcdir/configure --enable-maintainer-mode "$@"
+$srcdir/configure "$@"
diff --git a/configure.ac b/configure.ac
index fa9c2c4..f1f6229 100644
--- a/configure.ac
+++ b/configure.ac
@@ -2,7 +2,6 @@ AC_PREREQ(2.60)
AC_INIT(libvdpau, 1.1, [vdpau@lists.freedesktop.org], libvdpau)
AM_INIT_AUTOMAKE([dist-bzip2 foreign])
-AM_MAINTAINER_MODE
AC_CONFIG_HEADERS(config.h)