Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/alexmarsev/soundtouch.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authoroparviai <oparviai@f3a24b6a-cf45-0410-b55a-8c22e2698227>2008-02-17 17:20:52 +0300
committeroparviai <oparviai@f3a24b6a-cf45-0410-b55a-8c22e2698227>2008-02-17 17:20:52 +0300
commit08069afe5463f79045f4240d4c916e97f09b4ec1 (patch)
tree857d22bab2a692611dbe697307d33dbd9886d1ac /soundtouch.m4
parentc8c02a10a9d045345995369eb5dd6be9c8c7e49f (diff)
Fixes in Automake files & removed CR+LFs
Diffstat (limited to 'soundtouch.m4')
-rw-r--r--soundtouch.m4140
1 files changed, 70 insertions, 70 deletions
diff --git a/soundtouch.m4 b/soundtouch.m4
index 5688159..ff3eb0f 100644
--- a/soundtouch.m4
+++ b/soundtouch.m4
@@ -1,70 +1,70 @@
-# m4 configure test script for the SoundTouch library
-# (c)2003 David W. Durham
-#
-# $Id$
-#
-# This file can be included with other packages that need to test
-# for libSoundTouch.
-#
-# It will #define HAVE_LIBSOUNDTOUCH iff the library is found
-# It will AC_SUBST SOUNDTOUCH_LIBS and SOUNDTOUCH_CXXFLAGS as well
-# It also defines some flags to the configure script for specifying
-# the location to search for libSoundTouch
-#
-# A user of libSoundTouch should add @SOUNDTOUCH_LIBS@ and
-# @SOUNDTOUCH_CXXFLAGS@ to the appropriate variables in his
-# Makefile.am files
-#
-# This script works with autoconf-2.5x and automake-1.6 but I have
-# not tested it with older versions.
-
-
-dnl min version not supported yet
-dnl AM_PATH_SOUNDTOUCH([MINMUM-VERSION, [(additional) ACTION-IF-FOUND] [, ACTION-IF-NOT-FOUND]]])
-
-AH_TEMPLATE([HAVE_LIBSOUNDTOUCH], [defined by $0])
-SOUNDTOUCH_CXXFLAGS=""
-SOUNDTOUCH_LIBS=""
-
-AC_DEFUN([AM_PATH_SOUNDTOUCH],[
- AC_ARG_WITH(soundtouch-prefix,[ --with-soundtouch-prefix=DIR Prefix where SoundTouch was installed (optional)], [soundtouch_prefix="$withval"],[soundtouch_prefix=""])
-
- AC_ARG_ENABLE(soundtouch-check,[ --disable-soundtouch-check Do not look for the SoundTouch Library],[enable_soundtouch_check="$enableval"],[enable_soundtouch_check="yes"])
-
- if test "$enable_soundtouch_check" = "yes"
- then
- saved_CPPFLAGS="$CPPFLAGS"
- saved_LDFLAGS="$LDFLAGS"
-
- CPPFLAGS="$CPPFLAGS -I$soundtouch_prefix/include"
- LDFLAGS="$LDFLAGS -L$soundtouch_prefix/lib"
-
- dnl make sure SoundTouch.h header file exists
- dnl could use AC_CHECK_HEADERS to check for all of them, but the supporting .h file names may change later
- AC_CHECK_HEADER([soundtouch/SoundTouch.h],[
- dnl SoundTouch.h found
- dnl make sure libSoundTouch is linkable
- AC_CHECK_LIB([SoundTouch],[soundtouch_ac_test],[
- dnl libSoundTouch found
- SOUNDTOUCH_CXXFLAGS="-I$soundtouch_prefix/include"
- SOUNDTOUCH_LIBS="-L$soundtouch_prefix/lib -lSoundTouch"
- AC_DEFINE([HAVE_LIBSOUNDTOUCH])
-
- dnl run action-if-found
- ifelse([$2], , :, [$2])
- ],[
- dnl run action-if-not-found
- ifelse([$3], , :, [$3])
- ])
- ],[
- dnl run action-if-not-found
- ifelse([$3], , :, [$3])
- ])
-
- CPPFLAGS="$saved_CPPFLAGS"
- LDFLAGS="$saved_LDFLAGS"
- fi
-
- AC_SUBST(SOUNDTOUCH_CXXFLAGS)
- AC_SUBST(SOUNDTOUCH_LIBS)
-])
+# m4 configure test script for the SoundTouch library
+# (c)2003 David W. Durham
+#
+# $Id$
+#
+# This file can be included with other packages that need to test
+# for libSoundTouch.
+#
+# It will #define HAVE_LIBSOUNDTOUCH iff the library is found
+# It will AC_SUBST SOUNDTOUCH_LIBS and SOUNDTOUCH_CXXFLAGS as well
+# It also defines some flags to the configure script for specifying
+# the location to search for libSoundTouch
+#
+# A user of libSoundTouch should add @SOUNDTOUCH_LIBS@ and
+# @SOUNDTOUCH_CXXFLAGS@ to the appropriate variables in his
+# Makefile.am files
+#
+# This script works with autoconf-2.5x and automake-1.6 but I have
+# not tested it with older versions.
+
+
+dnl min version not supported yet
+dnl AM_PATH_SOUNDTOUCH([MINMUM-VERSION, [(additional) ACTION-IF-FOUND] [, ACTION-IF-NOT-FOUND]]])
+
+AH_TEMPLATE([HAVE_LIBSOUNDTOUCH], [defined by $0])
+SOUNDTOUCH_CXXFLAGS=""
+SOUNDTOUCH_LIBS=""
+
+AC_DEFUN([AM_PATH_SOUNDTOUCH],[
+ AC_ARG_WITH(soundtouch-prefix,[ --with-soundtouch-prefix=DIR Prefix where SoundTouch was installed (optional)], [soundtouch_prefix="$withval"],[soundtouch_prefix=""])
+
+ AC_ARG_ENABLE(soundtouch-check,[ --disable-soundtouch-check Do not look for the SoundTouch Library],[enable_soundtouch_check="$enableval"],[enable_soundtouch_check="yes"])
+
+ if test "$enable_soundtouch_check" = "yes"
+ then
+ saved_CPPFLAGS="$CPPFLAGS"
+ saved_LDFLAGS="$LDFLAGS"
+
+ CPPFLAGS="$CPPFLAGS -I$soundtouch_prefix/include"
+ LDFLAGS="$LDFLAGS -L$soundtouch_prefix/lib"
+
+ dnl make sure SoundTouch.h header file exists
+ dnl could use AC_CHECK_HEADERS to check for all of them, but the supporting .h file names may change later
+ AC_CHECK_HEADER([soundtouch/SoundTouch.h],[
+ dnl SoundTouch.h found
+ dnl make sure libSoundTouch is linkable
+ AC_CHECK_LIB([SoundTouch],[soundtouch_ac_test],[
+ dnl libSoundTouch found
+ SOUNDTOUCH_CXXFLAGS="-I$soundtouch_prefix/include"
+ SOUNDTOUCH_LIBS="-L$soundtouch_prefix/lib -lSoundTouch"
+ AC_DEFINE([HAVE_LIBSOUNDTOUCH])
+
+ dnl run action-if-found
+ ifelse([$2], , :, [$2])
+ ],[
+ dnl run action-if-not-found
+ ifelse([$3], , :, [$3])
+ ])
+ ],[
+ dnl run action-if-not-found
+ ifelse([$3], , :, [$3])
+ ])
+
+ CPPFLAGS="$saved_CPPFLAGS"
+ LDFLAGS="$saved_LDFLAGS"
+ fi
+
+ AC_SUBST(SOUNDTOUCH_CXXFLAGS)
+ AC_SUBST(SOUNDTOUCH_LIBS)
+])