summaryrefslogtreecommitdiff
path: root/configure.in
diff options
context:
space:
mode:
authorDaniel Caujolle-Bert <f1rmb@users.sourceforge.net>2001-08-28 22:52:57 +0000
committerDaniel Caujolle-Bert <f1rmb@users.sourceforge.net>2001-08-28 22:52:57 +0000
commite9cae6267fe66a03633426b6283de867e6eb0b65 (patch)
tree07d32c7b2e3c36150d5fc2746fe9bf20b6ee5dab /configure.in
parent07bc3636a8a0a1906624d7886c244e83f14b5236 (diff)
downloadxine-lib-e9cae6267fe66a03633426b6283de867e6eb0b65.tar.gz
xine-lib-e9cae6267fe66a03633426b6283de867e6eb0b65.tar.bz2
Fixed sed pattern. Reintroduce XINE_PAUSE status. Fixed deadlock in xine_pause. Fixed
many pause/unpause case. Syncing xine.h.tmpl.in with xine_internal.h about status (Please, don't forget to update the public API header, that made troubles). CVS patchset: 513 CVS date: 2001/08/28 22:52:57
Diffstat (limited to 'configure.in')
-rw-r--r--configure.in26
1 files changed, 13 insertions, 13 deletions
diff --git a/configure.in b/configure.in
index 321c3abf6..ad82a3053 100644
--- a/configure.in
+++ b/configure.in
@@ -581,19 +581,19 @@ dnl
dnl Get where .m4 should be installed.
dnl
case "`id`" in
-uid=0\(* )
- AC_MSG_CHECKING(for aclocal directory)
- if(aclocal --version) < /dev/null > /dev/null 2>&1; then
- ACLOCAL_DIR=`$ACLOCAL --print-ac-dir`
- AC_MSG_RESULT($ACLOCAL_DIR)
- else
- ACLOCAL_DIR="/usr/local/share/aclocal"
- AC_MSG_RESULT(none - will be installed in $ACLOCAL_DIR)
- fi
- escapedprefix=`echo "$prefix"|sed -e 's/\//\/\//g'`
- ACLOCAL_DIR=`echo "$ACLOCAL_DIR"|sed -e s/^"$escapedprefix"/'\${prefix}'/`
- AC_SUBST(ACLOCAL_DIR)
- ;;
+ uid=0\(* )
+ AC_MSG_CHECKING(for aclocal directory)
+ if(aclocal --version) < /dev/null > /dev/null 2>&1; then
+ ACLOCAL_DIR=`$ACLOCAL --print-ac-dir`
+ AC_MSG_RESULT($ACLOCAL_DIR)
+ else
+ ACLOCAL_DIR="/usr/local/share/aclocal"
+ AC_MSG_RESULT(none - will be installed in $ACLOCAL_DIR)
+ fi
+ escapedprefix="`echo $prefix | sed -e 's/\\//\\\\\//g'`"
+ ACLOCAL_DIR="`echo $ACLOCAL_DIR|sed -e s/^$escapedprefix/'\${prefix}'/`"
+ AC_SUBST(ACLOCAL_DIR)
+ ;;
esac
AM_CONDITIONAL(INSTALL_M4, test x"$ACLOCAL_DIR" != "x")