Files
macports-ports/audio/libofa/files/patch-configure.ac.diff
Ryan Schmidt 6201ac3cb1 libofa:
* rename configure.in to configure.ac in preparation for automake 1.14
 * patch configure.ac to change AM_CONFIG_HEADER to AC_CONFIG_HEADERS for automake 1.13 compatibility
 * patch examples/protocol.cpp to remove inclusion of curl/types.h and curl/easy.h for compatibility with recent versions of curl (https://trac.macports.org/ticket/34103)
 * license GPL-2
 * use googlecode fetchgroup
 * add rmd160 and sha256 checksum types
 * use "use_autoreconf yes" instead of doing it manually

git-svn-id: https://svn.macports.org/repository/macports/trunk/dports@102761 d073be05-634f-4543-b044-5fe20cf6d1d6
2013-02-08 02:34:44 +00:00

20 lines
642 B
Diff

--- configure.ac.orig 2006-05-10 13:00:19.000000000 -0500
+++ configure.ac 2013-02-07 20:20:59.000000000 -0600
@@ -1,6 +1,6 @@
dnl Process this file with autoconf to produce a configure script.
AC_INIT(lib/mainprint.cpp)
-AM_CONFIG_HEADER(config.h)
+AC_CONFIG_HEADERS([config.h])
VERSION="0.9.3"
AM_INIT_AUTOMAKE(libofa, "$VERSION")
@@ -74,7 +74,7 @@
dnl FFTW for FFTW v2. FFTW3 for FFTW v3. VDSP for vDSP. MKL for MKL
dnl TODO: PREANSI for win32
-if test x$os = xdarwin; then
+if test x$os = xBROKENdarwin; then
AC_MSG_NOTICE([Using vDSP on OS X])
LIBS="$LIBS -framework Accelerate"
FFT_WRAPPER="fftlibvdsp_op.cpp"