This file is indexed.

/usr/share/aclocal/xine.m4 is in libxine2-dev 1.2.6-1+b2.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

  1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
dnl Configure paths for XINE
dnl
dnl Copyright (C) 2001 Daniel Caujolle-Bert <segfault@club-internet.fr>
dnl
dnl This program is free software; you can redistribute it and/or modify
dnl it under the terms of the GNU General Public License as published by
dnl the Free Software Foundation; either version 2 of the License, or
dnl (at your option) any later version.
dnl
dnl This program is distributed in the hope that it will be useful,
dnl but WITHOUT ANY WARRANTY; without even the implied warranty of
dnl MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
dnl GNU General Public License for more details.
dnl
dnl You should have received a copy of the GNU General Public License
dnl along with this program; if not, write to the Free Software
dnl Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA.
dnl
dnl
dnl As a special exception to the GNU General Public License, if you
dnl distribute this file as part of a program that contains a configuration
dnl script generated by Autoconf, you may include it under the same
dnl distribution terms that you use for the rest of that program.
dnl

dnl _XINE_VERSION_PARSE(version)
AC_DEFUN([_XINE_VERSION_PARSE], [`echo $1 | perl -e 'my $v = <>; chomp $v;
my @v = split(" ", $v); $v = $v[[@S|@#v]]; $v =~ s/[[^0-9.]].*$//; @v = split (/\./, $v);
push @v, 0 while $[#v] < 2; print $v[[0]] * 10000 + $v[[1]] * 100 + $v[[2]], "\n"'`])


dnl _XINE_VERSION_CHECK(required, actual)
AC_DEFUN([_XINE_VERSION_CHECK], [
    required_version=ifelse([$1], , [0.0.0], [$1])
    required_version_parsed=_XINE_VERSION_PARSE([$required_version])
    actual_version=ifelse([$2], , [0.0.0], [$2])
    actual_version_parsed=_XINE_VERSION_PARSE([$actual_version])
    if test $required_version_parsed -le $actual_version_parsed; then
        ifelse([$3], , [:], [$3])
    else
        ifelse([$4], , [:], [$4])
    fi
])


dnl AM_PATH_XINE([MINIMUM-VERSION, [ACTION-IF-FOUND [, ACTION-IF-NOT-FOUND ]]])
dnl Test for XINE, and define XINE_CFLAGS and XINE_LIBS
dnl
AC_DEFUN([AM_PATH_XINE], [
    if test -z "$PKG_CONFIG"; then
        AC_PATH_PROG(PKG_CONFIG, pkg-config, no)
    fi

    AC_ARG_VAR([XINE_CONFIG], [Full path to xine-config (xine-lib < 1.2)])
    AC_ARG_WITH([xine-prefix],
                [AS_HELP_STRING([--with-xine-prefix], [prefix where xine-lib is installed (optional, xine-lib < 1.2)])])
    AC_ARG_WITH([xine-exec-prefix],
                [AS_HELP_STRING([--with-xine-exec-prefix], [exec prefix where xine-lib is installed (optional, xine-lib < 1.2)])])

    xine_config_args=""
    if test x"$with_xine_exec_prefix" != x""; then
        xine_config_args="$xine_config_args --exec-prefix=$with_xine_exec_prefix"
        test x"$XINE_CONFIG" != x"" && XINE_CONFIG="$with_xine_exec_prefix/bin/xine-config"
    fi
    if test x"$with_xine_prefix" != x""; then
        xine_config_args="$xine_config_args --prefix=$with_xine_prefix"
        test x"$XINE_CONFIG" = x"" && XINE_CONFIG="$with_xine_prefix/bin/xine-config"
    fi

    if "$PKG_CONFIG" --atleast-version 1.1.90 libxine; then
	min_xine_version=ifelse([$1], , [1.2.0], [$1])
	PKG_CHECK_MODULES([XINE], [libxine >= $min_xine_version],
	    [XINE_VERSION="`"$PKG_CONFIG" --modversion libxine`"
	    XINE_ACFLAGS="`"$PKG_CONFIG" --variable=acflags libxine`"
	    xine_data_dir="`"$PKG_CONFIG" --variable=datadir libxine`"
	    xine_script_dir="`"$PKG_CONFIG" --variable=scriptdir libxine`"
	    xine_plugin_dir="`"$PKG_CONFIG" --variable=plugindir libxine`"
	    xine_locale_dir="`"$PKG_CONFIG" --variable=localedir libxine`"
	    $2],
	    [$3])
    else
	min_xine_version=ifelse([$1], , [0.5.0], [$1])
	AC_PATH_TOOL([XINE_CONFIG], [xine-config], [no])
        AC_MSG_CHECKING([for XINE-LIB version >= $min_xine_version])
        XINE_CFLAGS="`$XINE_CONFIG $xine_config_args --cflags 2>/dev/null`"
        XINE_LIBS="`$XINE_CONFIG $xine_config_args --libs 2>/dev/null`"
        XINE_VERSION="`$XINE_CONFIG $xine_config_args --version 2>/dev/null`"
        XINE_ACFLAGS="`$XINE_CONFIG $xine_config_args --acflags 2>/dev/null`"
        xine_data_dir="`$XINE_CONFIG $xine_config_args --datadir 2>/dev/null`"
        xine_script_dir="`$XINE_CONFIG $xine_config_args --scriptdir 2>/dev/null`"
        xine_plugin_dir="`$XINE_CONFIG $xine_config_args --plugindir 2>/dev/null`"
        xine_locale_dir="`$XINE_CONFIG $xine_config_args --localedir 2>/dev/null`"
        _XINE_VERSION_CHECK([$min_xine_version], [$XINE_VERSION],
                            [xine_version_ok=yes; AC_MSG_RESULT([yes, $XINE_VERSION])],
                            [xine_version_ok=no;  AC_MSG_RESULT([no, $XINE_VERSION])])
	if test x"$xine_version_ok" = x"yes"; then
	    ifelse([$2], , [:], [$2])
	else
            AC_MSG_NOTICE([
*** You need a version of xine-lib newer than $XINE_VERSION.
*** The latest version of xine-lib is always available from:
***        http://www.xinehq.de
***
*** If you have already installed a sufficiently new version, this error
*** probably means that the wrong copy of the xine-config shell script is
*** being found. The easiest way to fix this is to remove the old version
*** of xine-lib, but you can also set the XINE_CONFIG environment variable
*** to point to the correct copy of xine-config. In this case, you will have
*** to modify your LD_LIBRARY_PATH enviroment variable, or edit
*** /etc/ld.so.conf so that the correct libraries are found at run-time.
            ])
	    ifelse([$3], , [:], [$3])
        fi
    fi

    AC_SUBST(XINE_CFLAGS)
    AC_SUBST(XINE_LIBS)
    AC_SUBST(XINE_ACFLAGS)
])

dnl XINE_ARG_WITH(VARIABLE, HELP-TEXT)
dnl Like AC_ARG_WITH but strictly sets variables
dnl hard_with_VARIABLE = "yes" or "no" if the option is present, else undefined
dnl with_VARIABLE      = "yes" or "no" if the option is enabled or disabled
dnl                      (falls back on default_with_VARIABLE)
dnl if both = yes, error is permissible if missing requirement(s)
AC_DEFUN([XINE_ARG_WITH], [
	if test "x$default_with_[]m4_translit([[$1]], [-], [_])" = x; then
		AC_MSG_ERROR([default_with_[]m4_translit([[$1]], [-], [_]) is not set])
	fi
	AC_ARG_WITH([$1], [AS_HELP_STRING([--with-$1], [$2])],
		[test x"$withval" != xno && with_[]m4_translit([[$1]], [-], [_])=yes || with_[]m4_translit([[$1]], [-], [_])=no; hard_with_[]m4_translit([[$1]], [-], [_])="$with_[]m4_translit([[$1]], [-], [_])"],
		[with_[]m4_translit([[$1]], [-], [_])="$default_with_[]m4_translit([[$1]], [-], [_])"; hard_with_[]m4_translit([[$1]], [-], [_])=''])])

dnl XINE_ARG_ENABLE(VARIABLE, HELP-TEXT)
dnl Like AC_ARG_WITH_X but wrapping AC_ARG_ENABLE
AC_DEFUN([XINE_ARG_ENABLE], [
	if test "x$default_enable_[]m4_translit([[$1]], [-], [_])" = x; then
		AC_MSG_ERROR([default_enable_[]m4_translit([[$1]], [-], [_]) is not set])
	fi
	AC_ARG_ENABLE([$1], [AS_HELP_STRING([--enable-$1], [$2])],
		[test x"$enableval" != xno && enable_[]m4_translit([[$1]], [-], [_])=yes || enable_[]m4_translit([[$1]], [-], [_])=no; hard_enable_[]m4_translit([[$1]], [-], [_])="$enable_[]m4_translit([[$1]], [-], [_])"],
		[enable_[]m4_translit([[$1]], [-], [_])="$default_enable_[]m4_translit([[$1]], [-], [_])"; hard_enable_[]m4_translit([[$1]], [-], [_])=''])])