summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSebastian Zagrodzki2002-09-14 09:24:12 (GMT)
committercvs2git2012-06-24 12:13:13 (GMT)
commit299a231f3ed2c946648ed3af166e494dba225206 (patch)
tree5507fe213b4074ba2cdf9a2f172d4acf2e5c1888
parent92de6080f1f8e9a8afdc1267354fbb574f4bd2d7 (diff)
downloadlibsndfile-299a231f3ed2c946648ed3af166e494dba225206.zip
libsndfile-299a231f3ed2c946648ed3af166e494dba225206.tar.gz
bb328567ad639b72d22f7bf3b31550c7 libsndfile-1.0.1.tar.gz
Changed files: libsndfile-autoconf.patch -> 1.7
-rw-r--r--libsndfile-autoconf.patch36
1 files changed, 0 insertions, 36 deletions
diff --git a/libsndfile-autoconf.patch b/libsndfile-autoconf.patch
deleted file mode 100644
index 2969496..0000000
--- a/libsndfile-autoconf.patch
+++ /dev/null
@@ -1,36 +0,0 @@
---- libsndfile-0.0.25/configure.in.orig Sun Sep 23 22:58:31 2001
-+++ libsndfile-0.0.25/configure.in Wed Sep 26 06:24:46 2001
-@@ -47,33 +47,10 @@
- AC_ARG_ENABLE(gcc-pipe, [ --disable-gcc-pipe disable gcc -pipe option ],
- ac_arg_gcc_pipe="N", ac_arg_gcc_pipe="Y")
-
--AC_ARG_ENABLE(gcc-opt, [ --disable-gcc-opt disable gcc optimisations ],
-- ac_arg_gcc_opt="N", ac_arg_gcc_opt="Y")
--
- AC_ARG_ENABLE(force-broken-float,
- [ --enable-force-broken-float force use of broken float code ],
- ac_arg_broken_float="Y", ac_arg_broken_float="N")
-
--if test $ac_cv_prog_gcc = yes ; then
-- CFLAGS="$CFLAGS -g -O2 -Wstrict-prototypes"
-- if test "$ac_arg_gcc_opt" = "N" ; then
-- CFLAGS="$CFLAGS -g -O0 -Wstrict-prototypes"
-- AC_MSG_WARN([[*** Compiler optimisations switched off. ***]])
-- fi
-- dnl Disable -Wall and -pedantic for Apple Darwin/Rhapsody.
-- dnl System headers on these systems are broken.
-- case "$target_os" in
-- darwin* | rhapsody*)
-- ;;
-- *)
-- CFLAGS="$CFLAGS -Wall -pedantic"
-- ;;
-- esac
-- if test $ac_arg_gcc_pipe != "N" ; then
-- CFLAGS="$CFLAGS -pipe"
-- fi
-- fi
--
- if test $cross_compiling = yes ; then
- AC_MSG_WARN([[******************************************************************]])
- AC_MSG_WARN([[*** We are cross-compiling, so have to assume sizeof (short) == 2 ]])