I've consistently been getting the following error while trying to
compile arts-shlib:
perl -pi -e 's,@\kdeinitdir\@,/sw/lib/kde3,' soundserver/Makefile
Sequence \k... not terminated in regex; marked by <-- HERE in m/@\k
<-- HERE deinitdir\@/ at -e line 1.
### execution of /var/tmp/tmp.1.wCKBO7 failed, exit code 255
Any ideas? It occurs just after the configuration is done. I'm
running 10.5.6, with the Xcode 3.1.2. I'm using the built-in X11 with
the most recent version of xquartz that runs on 10.5.6 (I don't have
access to 10.5.7, which xquartz 2.3.3 requires). Thanks. Let me
know if you need any other information. Here is the whole output:
Information about 8744 packages read in 1 seconds.
The following package will be installed or updated:
arts-shlibs
Setting runtime build-lock...
dpkg-deb -b /sw/src/fink.build/root-fink-buildlock-arts-1.5.10-1
/sw/src/fink.build
dpkg-deb: building package `fink-buildlock-arts-1.5.10-1' in
`/sw/src/fink.build/fink-buildlock-arts-1.5.10-1_2009.04.30-12.03.02_darwin-i386.deb'.
Installing build-lock package...
/sw/bin/dpkg-lockwait -i
/sw/src/fink.build/fink-buildlock-arts-1.5.10-1_2009.04.30-12.03.02_darwin-i386.deb
Selecting previously deselected package fink-buildlock-arts-1.5.10-1.
(Reading database ... 63888 files and directories currently installed.)
Unpacking fink-buildlock-arts-1.5.10-1 (from
.../fink-buildlock-arts-1.5.10-1_2009.04.30-12.03.02_darwin-i386.deb)
...
Setting up fink-buildlock-arts-1.5.10-1 (2009.04.30-12.03.02) ...
bzip2 -dc /sw/src/arts-1.5.10.tar.bz2 | /sw/bin/tar -xf -
--no-same-owner --no-same-permissions
bzip2 -dc /sw/src/kde-admindir-1502.tar.bz2 | /sw/bin/tar -xf -
--no-same-owner --no-same-permissions
[ -r /sw/fink/dists/unstable/main/finkinfo/kde/arts.patch ]
sed -e 's,@FINKPREFIX@,/sw,g'
/sw/fink/dists/unstable/main/finkinfo/kde/arts.patch | patch -p1
patching file admin/am_edit
patching file flow/audioioesd.cc
patching file flow/gsl/Makefile.am
patching file x11/Makefile.am
perl -pi -e 's,-O2,-Os,g; s,doc/HTML,doc/kde,g;
s,/usr/share/doc/packages/qt3/html,/sw/share/doc/qt3/html,g' admin/*
/var/tmp/tmp.1.wCKBO7
#!/bin/sh -ev
export PREFIX="/sw" USE_UNSERMAKE=1
. ./environment-helper.sh
#!/bin/sh
[ -n "$EH_PREFIX" ] && export PREFIX="$EH_PREFIX"
if [ -z "$PREFIX" ]; then
echo "ERROR: set \$PREFIX before sourcing this script!"
exit 1
fi
[ "$FINK_X11" = "true" ] && export FINK_X11=1
[ "$FINK_X11" = "yes" ] && export FINK_X11=1
[ "$FINK_X11" = "false" ] && export FINK_X11=0
[ "$FINK_X11" = "no" ] && export FINK_X11=0
[ -z "$FINK_X11" ] && export FINK_X11=0
export LDFLAGS=""
# set some basic OS stuff
SW_VERSION=`sw_vers -productVersion | cut -d. -f1-2`
sw_vers -productVersion | cut -d. -f1-2
case $SW_VERSION in
10.[01])
echo "unsupported OS version: $SW_VERSION"
exit 1
;;
10.2)
export MACOSX_DEPLOYMENT_TARGET=10.2
FREETYPE_CONFIG=$PREFIX/bin/freetype-config
;;
10.3)
export MACOSX_DEPLOYMENT_TARGET="$SW_VERSION"
export LD_TWOLEVEL_NAMESPACE=true
FREETYPE_CONFIG=$PREFIX/lib/freetype219/bin/freetype-config
;;
10.4)
export MACOSX_DEPLOYMENT_TARGET="$SW_VERSION"
export LD_TWOLEVEL_NAMESPACE=true
FREETYPE_CONFIG=$PREFIX/lib/freetype219/bin/freetype-config
GCCCMD="gcc"
[ -n "$CC" ] && GCCCMD="$CC"
if [ `$GCCCMD --version 2>&1 | grep -c ' 4.0.0 '` -gt 0 ]; then
cat <<END
=== ERROR === ERROR === ERROR === ERROR === ERROR === ERROR ===
You are using GCC 4.0.0, which is known to compile KDE, but
produce bad code. Please update to XCode 2.2 or higher.
=== ERROR === ERROR === ERROR === ERROR === ERROR === ERROR ===
END
exit 1
fi
;;
10.5)
export MACOSX_DEPLOYMENT_TARGET="$SW_VERSION"
export LD_TWOLEVEL_NAMESPACE=true
export
LDFLAGS="-Wl,-dylib_file,/System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib:/System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
-Wl,-dead_strip_dylibs"
FREETYPE_CONFIG=$PREFIX/lib/freetype219/bin/freetype-config
;;
*)
export MACOSX_DEPLOYMENT_TARGET="$SW_VERSION"
export LD_TWOLEVEL_NAMESPACE=true
export LDFLAGS="-Wl,-dead_strip_dylibs"
FREETYPE_CONFIG=$PREFIX/lib/freetype219/bin/freetype-config
;;
esac
if [ -n "$USE_UNSERMAKE" ] && [ "$USE_UNSERMAKE" -gt 0 ]; then
UNSERMAKEFLAGS=`perl -e '$ENV{MAKEFLAGS} =~ s/^.*?-j(\d+).*?$/-j1
--compile-jobs=$1/; print $ENV{MAKEFLAGS}'`
UNSERMAKEFLAGS="$UNSERMAKEFLAGS -p"
MAKEFLAGS=""
fi
perl -e '$ENV{MAKEFLAGS} =~ s/^.*?-j(\d+).*?$/-j1 --compile-jobs=$1/;
print $ENV{MAKEFLAGS}'
SEARCHDIRS="$PREFIX/lib/system-openssl $PREFIX/lib/freetype219
$PREFIX/lib/flex $PREFIX/lib/doxygen1.3"
[ "$FINK_X11" -eq 1 ] && SEARCHDIRS="$SEARCHDIRS $PREFIX/X11"
for dir in $SEARCHDIRS; do
if [ -d "$dir" ]; then
for incdir in "$dir/include/freetype2" "$dir/include"; do
if [ -d "$incdir" ]; then
export CPPFLAGS="$CPPFLAGS -I$incdir"
fi
done
[ -d "$dir/lib" ] && export LDFLAGS="-L$dir/lib
$LDFLAGS"
[ -d "$dir/bin" ] && export PATH="$dir/bin:$PATH"
[ -d "$dir/lib/pkgconfig" ] && export
PKG_CONFIG_PATH="$dir/lib/pkgconfig:$PKG_CONFIG_PATH"
fi
done
# -fast, minus the unsafe bits
if [ -d "libltdl" ]; then
export ACLOCALFLAGS="$ACLOCALFLAGS -I libltdl"
fi
export CFLAGS="-Os -fPIC"
export CXXFLAGS="$CFLAGS"
export CPPFLAGS="$CPPFLAGS -fno-common -no-cpp-precomp -DMACOSX
-DARTS_NO_ALARM -I$PREFIX/include"
export FREETYPE_CONFIG
export LIBS="$LIBS -L$PREFIX/lib"
export SED="sed"
export CONFIGURE_PARAMS="--includedir=$PREFIX/include
--libdir=$PREFIX/lib --prefix=$PREFIX --with-extra-libs=$PREFIX/lib
--with-extra-includes=$PREFIX/include --enable-mt --with-pic
--enable-rpath --enable-shared=yes --enable-static=no
--mandir=$PREFIX/share/man --with-xinerama --with-pam --disable-final
--with-ssl-dir=/usr --with-ssl --disable-dependency-tracking
--enable-gcc-hidden-visibility"
if [ "$FINK_X11" -eq 1 ]; then
CPPFLAGS="$CPPFLAGS -I$PREFIX/X11/include"
LIBS="$LIBS -L$PREFIX/X11/lib"
export ac_cv_have_x="have_x=yes ac_x_includes=$PREFIX/X11/include
ac_x_libraries=$PREFIX/X11/lib"
export kde_cv_have_x="have_x=yes kde_x_includes=$PREFIX/X11/include
kde_x_libraries=$PREFIX/X11/lib"
export x_includes="$PREFIX/X11/include" x_libraries="$PREFIX/X11/lib"
export XMKMF="$PREFIX/X11/bin/xorg-xmkmf"
IMAKE="$PREFIX/X11/bin/xorg-imake"
else
CPPFLAGS="$CPPFLAGS -I/usr/X11R6/include"
LIBS="$LIBS -L/usr/X11R6/lib"
fi
# miscellaneous stuff that packages use
export lt_cv_sys_max_cmd_len=65536
export HOME=/tmp
export QTDOCDIR="$PREFIX/share/doc/qt3/html"
[ -x "$PREFIX/lib/flex/bin/flex" ] && export LEX="$PREFIX/lib/flex/bin/flex"
if [ -e "$PREFIX/lib/qt3/include" ]; then
CONFIGURE_PARAMS="$CONFIGURE_PARAMS --with-qt-dir=$PREFIX/lib/qt3"
else
CONFIGURE_PARAMS="$CONFIGURE_PARAMS --with-qt-dir=$PREFIX
--with-qt-includes=$PREFIX/include/qt"
fi
PATH=`echo $PATH | perl -p -e 'for my $entry (split(/:/, $_)) { next
if ($entry =~ m,^/usr/local,); push(@path, $entry) }; $_ = join(":",
@path)'`
echo $PATH | perl -p -e 'for my $entry (split(/:/, $_)) { next if
($entry =~ m,^/usr/local,); push(@path, $entry) }; $_ = join(":",
@path)'
if [ -x "$PREFIX/lib/xmkmf/bin" ]; then
export PATH="$PREFIX/lib/xmkmf/bin:$PATH"
export IMAKEINCLUDE="-I$PREFIX/lib/X11/config"
fi
if [ "$FINK_X11" -eq 1 ]; then
export PATH="$PATH:$PREFIX/X11/bin"
if [ `grep -r /usr/X11R6 admin 2>/dev/null | wc -l` -gt 0 ]; then
echo "*** replacing /usr/X11R6 with $PREFIX/X11 in the admin/
directory ***"
find admin -type f | xargs perl -pi -e
"s,/usr/X11R6,$PREFIX/X11,g"
fi
else
export PATH="$PATH:/usr/X11R6/bin"
fi
if [ -x "/usr/bin/gcc-4.2" ]; then
if [ -x "$PREFIX/bin/ccache" ]; then
mkdir -p gcc-root
[ ! -e gcc-root/gcc-4.2 ] && ln -s $PREFIX/bin/ccache
gcc-root/gcc-4.2
[ ! -e gcc-root/g++-4.2 ] && ln -s $PREFIX/bin/ccache
gcc-root/g++-4.2
export PATH=`pwd`/gcc-root:"$PATH"
export CC="gcc-4.2"
export CXX="g++-4.2"
else
export CC="/usr/bin/gcc-4.2"
export CXX="/usr/bin/g++-4.2"
fi
else
export CC="gcc"
export CXX="g++"
fi
export ALL_LIBRARIES="$LDFLAGS $LIBS"
cat <<END
the following environment is being used:
ACLOCALFLAGS: $ACLOCALFLAGS
CFLAGS: $CFLAGS
CPPFLAGS: $CPPFLAGS
CXXFLAGS: $CXXFLAGS
CC: $CC
CXX: $CXX
FREETYPE_CONFIG: $FREETYPE_CONFIG
LDFLAGS: $LDFLAGS
LIBS: $LIBS
MACOSX_DEPLOYMENT_TARGET: $MACOSX_DEPLOYMENT_TARGET
PATH: $PATH
PKG_CONFIG_PATH: $PKG_CONFIG_PATH
CONFIGURE_PARAMS: $CONFIGURE_PARAMS
UNSERMAKEFLAGS: $UNSERMAKEFLAGS
MAKEFLAGS: $MAKEFLAGS
END
the following environment is being used:
ACLOCALFLAGS: -I libltdl
CFLAGS: -Os -fPIC
CPPFLAGS: -I/sw/lib/system-openssl/include
-I/sw/lib/freetype219/include/freetype2 -I/sw/lib/freetype219/include
-I/sw/lib/flex/include -fno-common -no-cpp-precomp -DMACOSX
-DARTS_NO_ALARM -I/sw/include -I/usr/X11R6/include
CXXFLAGS: -Os -fPIC
CC: /usr/bin/gcc-4.2
CXX: /usr/bin/g++-4.2
FREETYPE_CONFIG: /sw/lib/freetype219/bin/freetype-config
LDFLAGS: -L/sw/lib/flex/lib
-L/sw/lib/freetype219/lib -L/sw/lib/system-openssl/lib
-Wl,-dylib_file,/System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib:/System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
-Wl,-dead_strip_dylibs
LIBS: -L/sw/lib -L/usr/X11R6/lib
MACOSX_DEPLOYMENT_TARGET: 10.5
PATH:
/sw/lib/xmkmf/bin:/sw/lib/flex/bin:/sw/lib/freetype219/bin:/sw/var/lib/fink/path-prefix-g++-4.0:/sw/bin:/sw/sbin:/bin:/usr/bin:/sbin:/usr/sbin:/usr/X11R6/bin:/usr/X11R6/bin
PKG_CONFIG_PATH:
/sw/lib/freetype219/lib/pkgconfig:/sw/lib/system-openssl/lib/pkgconfig:
CONFIGURE_PARAMS: --includedir=/sw/include --libdir=/sw/lib
--prefix=/sw --with-extra-libs=/sw/lib
--with-extra-includes=/sw/include --enable-mt --with-pic
--enable-rpath --enable-shared=yes --enable-static=no
--mandir=/sw/share/man --with-xinerama --with-pam --disable-final
--with-ssl-dir=/usr --with-ssl --disable-dependency-tracking
--enable-gcc-hidden-visibility --with-qt-dir=/sw/lib/qt3
UNSERMAKEFLAGS: -p
MAKEFLAGS:
./build-helper.sh cvs arts 1.5.10 1 make -f admin/Makefile.common
cvs
*** YOU'RE USING UNSERMAKE.
*** GOOD LUCK!! :)
*** Creating acinclude.m4
make[1]: Nothing to be done for `acinclude.m4'.
*** Creating list of subdirectories
*** Creating Makefile.am
*** Creating configure.files
*** Creating configure.in
*** Creating aclocal.m4
acinclude.m4:3724: the serial number must appear before any macro definition
acinclude.m4:3769: the serial number must appear before any macro definition
acinclude.m4:3814: the serial number must appear before any macro definition
acinclude.m4:6007: the serial number must appear before any macro definition
acinclude.m4:12474: the serial number must appear before any macro definition
configure.in:41: warning: AC_CACHE_VAL(lt_prog_compiler_pic_works,
...): suspicious cache-id, must contain _cv_ to be cached
../../lib/autoconf/general.m4:1974: AC_CACHE_VAL is expanded from...
../../lib/autoconf/general.m4:1994: AC_CACHE_CHECK is expanded from...
acinclude.m4:6612: AC_LIBTOOL_COMPILER_OPTION is expanded from...
acinclude.m4:10812: AC_LIBTOOL_PROG_COMPILER_PIC is expanded from...
acinclude.m4:8648: _LT_AC_LANG_C_CONFIG is expanded from...
acinclude.m4:8647: AC_LIBTOOL_LANG_C_CONFIG is expanded from...
acinclude.m4:6077: AC_LIBTOOL_SETUP is expanded from...
acinclude.m4:6057: _AC_PROG_LIBTOOL is expanded from...
acinclude.m4:6022: AC_PROG_LIBTOOL is expanded from...
acinclude.m4:12312: AM_PROG_LIBTOOL is expanded from...
acinclude.m4:3497: KDE_PROG_LIBTOOL is expanded from...
configure.in:41: the top level
configure.in:41: warning: AC_CACHE_VAL(lt_prog_compiler_static_works,
...): suspicious cache-id, must contain _cv_ to be cached
acinclude.m4:6657: AC_LIBTOOL_LINKER_OPTION is expanded from...
configure.in:41: warning: AC_CACHE_VAL(lt_prog_compiler_pic_works_CXX,
...): suspicious cache-id, must contain _cv_ to be cached
acinclude.m4:8729: _LT_AC_LANG_CXX_CONFIG is expanded from...
acinclude.m4:8728: AC_LIBTOOL_LANG_CXX_CONFIG is expanded from...
acinclude.m4:7784: _LT_AC_TAGCONFIG is expanded from...
configure.in:41: warning:
AC_CACHE_VAL(lt_prog_compiler_static_works_CXX, ...): suspicious
cache-id, must contain _cv_ to be cached
configure.in:41: warning: AC_CACHE_VAL(lt_prog_compiler_pic_works_F77,
...): suspicious cache-id, must contain _cv_ to be cached
acinclude.m4:9896: _LT_AC_LANG_F77_CONFIG is expanded from...
acinclude.m4:9895: AC_LIBTOOL_LANG_F77_CONFIG is expanded from...
configure.in:41: warning:
AC_CACHE_VAL(lt_prog_compiler_static_works_F77, ...): suspicious
cache-id, must contain _cv_ to be cached
configure.in:41: warning: AC_CACHE_VAL(lt_prog_compiler_pic_works_GCJ,
...): suspicious cache-id, must contain _cv_ to be cached
acinclude.m4:9998: _LT_AC_LANG_GCJ_CONFIG is expanded from...
acinclude.m4:9997: AC_LIBTOOL_LANG_GCJ_CONFIG is expanded from...
configure.in:41: warning:
AC_CACHE_VAL(lt_prog_compiler_static_works_GCJ, ...): suspicious
cache-id, must contain _cv_ to be cached
*** Creating configure
configure.in:41: warning: AC_CACHE_VAL(lt_prog_compiler_pic_works,
...): suspicious cache-id, must contain _cv_ to be cached
../../lib/autoconf/general.m4:1974: AC_CACHE_VAL is expanded from...
../../lib/autoconf/general.m4:1994: AC_CACHE_CHECK is expanded from...
acinclude.m4:6612: AC_LIBTOOL_COMPILER_OPTION is expanded from...
acinclude.m4:10812: AC_LIBTOOL_PROG_COMPILER_PIC is expanded from...
acinclude.m4:8648: _LT_AC_LANG_C_CONFIG is expanded from...
acinclude.m4:8647: AC_LIBTOOL_LANG_C_CONFIG is expanded from...
acinclude.m4:6077: AC_LIBTOOL_SETUP is expanded from...
acinclude.m4:6057: _AC_PROG_LIBTOOL is expanded from...
acinclude.m4:6022: AC_PROG_LIBTOOL is expanded from...
acinclude.m4:12312: AM_PROG_LIBTOOL is expanded from...
acinclude.m4:3497: KDE_PROG_LIBTOOL is expanded from...
configure.in:41: the top level
configure.in:41: warning: AC_CACHE_VAL(lt_prog_compiler_static_works,
...): suspicious cache-id, must contain _cv_ to be cached
acinclude.m4:6657: AC_LIBTOOL_LINKER_OPTION is expanded from...
configure.in:41: warning: AC_CACHE_VAL(lt_prog_compiler_pic_works_CXX,
...): suspicious cache-id, must contain _cv_ to be cached
acinclude.m4:8729: _LT_AC_LANG_CXX_CONFIG is expanded from...
acinclude.m4:8728: AC_LIBTOOL_LANG_CXX_CONFIG is expanded from...
acinclude.m4:7784: _LT_AC_TAGCONFIG is expanded from...
configure.in:41: warning:
AC_CACHE_VAL(lt_prog_compiler_static_works_CXX, ...): suspicious
cache-id, must contain _cv_ to be cached
configure.in:41: warning: AC_CACHE_VAL(lt_prog_compiler_pic_works_F77,
...): suspicious cache-id, must contain _cv_ to be cached
acinclude.m4:9896: _LT_AC_LANG_F77_CONFIG is expanded from...
acinclude.m4:9895: AC_LIBTOOL_LANG_F77_CONFIG is expanded from...
configure.in:41: warning:
AC_CACHE_VAL(lt_prog_compiler_static_works_F77, ...): suspicious
cache-id, must contain _cv_ to be cached
configure.in:41: warning: AC_CACHE_VAL(lt_prog_compiler_pic_works_GCJ,
...): suspicious cache-id, must contain _cv_ to be cached
acinclude.m4:9998: _LT_AC_LANG_GCJ_CONFIG is expanded from...
acinclude.m4:9997: AC_LIBTOOL_LANG_GCJ_CONFIG is expanded from...
configure.in:41: warning:
AC_CACHE_VAL(lt_prog_compiler_static_works_GCJ, ...): suspicious
cache-id, must contain _cv_ to be cached
*** Creating config.h template
configure.in:41: warning: AC_CACHE_VAL(lt_prog_compiler_pic_works,
...): suspicious cache-id, must contain _cv_ to be cached
../../lib/autoconf/general.m4:1974: AC_CACHE_VAL is expanded from...
../../lib/autoconf/general.m4:1994: AC_CACHE_CHECK is expanded from...
acinclude.m4:6612: AC_LIBTOOL_COMPILER_OPTION is expanded from...
acinclude.m4:10812: AC_LIBTOOL_PROG_COMPILER_PIC is expanded from...
acinclude.m4:8648: _LT_AC_LANG_C_CONFIG is expanded from...
acinclude.m4:8647: AC_LIBTOOL_LANG_C_CONFIG is expanded from...
acinclude.m4:6077: AC_LIBTOOL_SETUP is expanded from...
acinclude.m4:6057: _AC_PROG_LIBTOOL is expanded from...
acinclude.m4:6022: AC_PROG_LIBTOOL is expanded from...
acinclude.m4:12312: AM_PROG_LIBTOOL is expanded from...
acinclude.m4:3497: KDE_PROG_LIBTOOL is expanded from...
configure.in:41: the top level
configure.in:41: warning: AC_CACHE_VAL(lt_prog_compiler_static_works,
...): suspicious cache-id, must contain _cv_ to be cached
acinclude.m4:6657: AC_LIBTOOL_LINKER_OPTION is expanded from...
configure.in:41: warning: AC_CACHE_VAL(lt_prog_compiler_pic_works_CXX,
...): suspicious cache-id, must contain _cv_ to be cached
acinclude.m4:8729: _LT_AC_LANG_CXX_CONFIG is expanded from...
acinclude.m4:8728: AC_LIBTOOL_LANG_CXX_CONFIG is expanded from...
acinclude.m4:7784: _LT_AC_TAGCONFIG is expanded from...
configure.in:41: warning:
AC_CACHE_VAL(lt_prog_compiler_static_works_CXX, ...): suspicious
cache-id, must contain _cv_ to be cached
configure.in:41: warning: AC_CACHE_VAL(lt_prog_compiler_pic_works_F77,
...): suspicious cache-id, must contain _cv_ to be cached
acinclude.m4:9896: _LT_AC_LANG_F77_CONFIG is expanded from...
acinclude.m4:9895: AC_LIBTOOL_LANG_F77_CONFIG is expanded from...
configure.in:41: warning:
AC_CACHE_VAL(lt_prog_compiler_static_works_F77, ...): suspicious
cache-id, must contain _cv_ to be cached
configure.in:41: warning: AC_CACHE_VAL(lt_prog_compiler_pic_works_GCJ,
...): suspicious cache-id, must contain _cv_ to be cached
acinclude.m4:9998: _LT_AC_LANG_GCJ_CONFIG is expanded from...
acinclude.m4:9997: AC_LIBTOOL_LANG_GCJ_CONFIG is expanded from...
configure.in:41: warning:
AC_CACHE_VAL(lt_prog_compiler_static_works_GCJ, ...): suspicious
cache-id, must contain _cv_ to be cached
*** Creating Makefile templates
configure.in:41: warning: AC_CACHE_VAL(lt_prog_compiler_pic_works,
...): suspicious cache-id, must contain _cv_ to be cached
../../lib/autoconf/general.m4:1974: AC_CACHE_VAL is expanded from...
../../lib/autoconf/general.m4:1994: AC_CACHE_CHECK is expanded from...
acinclude.m4:6612: AC_LIBTOOL_COMPILER_OPTION is expanded from...
acinclude.m4:10812: AC_LIBTOOL_PROG_COMPILER_PIC is expanded from...
acinclude.m4:8648: _LT_AC_LANG_C_CONFIG is expanded from...
acinclude.m4:8647: AC_LIBTOOL_LANG_C_CONFIG is expanded from...
acinclude.m4:6077: AC_LIBTOOL_SETUP is expanded from...
acinclude.m4:6057: _AC_PROG_LIBTOOL is expanded from...
acinclude.m4:6022: AC_PROG_LIBTOOL is expanded from...
acinclude.m4:12312: AM_PROG_LIBTOOL is expanded from...
acinclude.m4:3497: KDE_PROG_LIBTOOL is expanded from...
configure.in:41: the top level
configure.in:41: warning: AC_CACHE_VAL(lt_prog_compiler_static_works,
...): suspicious cache-id, must contain _cv_ to be cached
acinclude.m4:6657: AC_LIBTOOL_LINKER_OPTION is expanded from...
configure.in:41: warning: AC_CACHE_VAL(lt_prog_compiler_pic_works_CXX,
...): suspicious cache-id, must contain _cv_ to be cached
acinclude.m4:8729: _LT_AC_LANG_CXX_CONFIG is expanded from...
acinclude.m4:8728: AC_LIBTOOL_LANG_CXX_CONFIG is expanded from...
acinclude.m4:7784: _LT_AC_TAGCONFIG is expanded from...
configure.in:41: warning:
AC_CACHE_VAL(lt_prog_compiler_static_works_CXX, ...): suspicious
cache-id, must contain _cv_ to be cached
configure.in:41: warning: AC_CACHE_VAL(lt_prog_compiler_pic_works_F77,
...): suspicious cache-id, must contain _cv_ to be cached
acinclude.m4:9896: _LT_AC_LANG_F77_CONFIG is expanded from...
acinclude.m4:9895: AC_LIBTOOL_LANG_F77_CONFIG is expanded from...
configure.in:41: warning:
AC_CACHE_VAL(lt_prog_compiler_static_works_F77, ...): suspicious
cache-id, must contain _cv_ to be cached
configure.in:41: warning: AC_CACHE_VAL(lt_prog_compiler_pic_works_GCJ,
...): suspicious cache-id, must contain _cv_ to be cached
acinclude.m4:9998: _LT_AC_LANG_GCJ_CONFIG is expanded from...
acinclude.m4:9997: AC_LIBTOOL_LANG_GCJ_CONFIG is expanded from...
configure.in:41: warning:
AC_CACHE_VAL(lt_prog_compiler_static_works_GCJ, ...): suspicious
cache-id, must contain _cv_ to be cached
*** Creating date/time stamp
*** Finished
Don't forget to run ./configure
If you haven't done so in a while, run ./configure --help
./build-helper.sh configure arts 1.5.10 1 ./configure --prefix=/sw
--with-distribution='Fink/Mac OS X' $CONFIGURE_PARAMS
configure: WARNING: unrecognized options: --with-distribution,
--with-xinerama, --with-pam, --with-ssl-dir, --with-ssl
checking build system type... i686-apple-darwin9.6.0
checking host system type... i686-apple-darwin9.6.0
checking target system type... i686-apple-darwin9.6.0
checking for a BSD-compatible install... /usr/bin/install -c
checking for -p flag to install... yes
checking whether build environment is sane... yes
checking for a thread-safe mkdir -p... admin/install-sh -c -d
checking for gawk... gawk
checking whether make sets $(MAKE)... yes
checking for a BSD-compatible install... /usr/bin/install -c -p
checking for style of include used by make... GNU
checking for gcc... /usr/bin/gcc-4.2
checking for C compiler default output file name... a.out
checking whether the C compiler works... yes
checking whether we are cross compiling... no
checking for suffix of executables...
checking for suffix of object files... o
checking whether we are using the GNU C compiler... yes
checking whether /usr/bin/gcc-4.2 accepts -g... yes
checking for /usr/bin/gcc-4.2 option to accept ISO C89... none needed
checking dependency style of /usr/bin/gcc-4.2... none
checking how to run the C preprocessor... /usr/bin/gcc-4.2 -E
checking whether we are using the GNU C++ compiler... yes
checking whether /usr/bin/g++-4.2 accepts -g... yes
checking dependency style of /usr/bin/g++-4.2... none
checking whether /usr/bin/gcc-4.2 is blacklisted... no
checking whether /usr/bin/g++-4.2 supports -Wundef... yes
checking whether /usr/bin/g++-4.2 supports -Wno-long-long... yes
checking whether /usr/bin/g++-4.2 supports -Wno-non-virtual-dtor... yes
checking whether /usr/bin/g++-4.2 supports -fno-reorder-blocks... yes
checking whether /usr/bin/g++-4.2 supports -fno-exceptions... yes
checking whether /usr/bin/g++-4.2 supports -fno-check-new... yes
checking whether /usr/bin/g++-4.2 supports -fno-common... yes
checking whether /usr/bin/g++-4.2 supports -fexceptions... yes
checking whether system headers can cope with -Os -fno-inline... irrelevant
checking how to run the C++ preprocessor... /usr/bin/g++-4.2 -E
checking whether /usr/bin/g++-4.2 supports -O0... yes
./configure: line 7931: ldd: command not found
not using lib directory suffix
checking for a sed that does not truncate output... /usr/bin/sed
checking for grep that handles long lines and -e... /usr/bin/grep
checking for egrep... /usr/bin/grep -E
checking for ld used by /usr/bin/gcc-4.2...
/usr/libexec/gcc/i686-apple-darwin9/4.2.1/ld
checking if the linker (/usr/libexec/gcc/i686-apple-darwin9/4.2.1/ld)
is GNU ld... no
checking for /usr/libexec/gcc/i686-apple-darwin9/4.2.1/ld option to
reload object files... -r
checking for BSD-compatible nm... /usr/bin/nm -p
checking whether ln -s works... yes
checking how to recognise dependent libraries... pass_all
checking for ANSI C header files... yes
checking for sys/types.h... yes
checking for sys/stat.h... yes
checking for stdlib.h... yes
checking for string.h... yes
checking for memory.h... yes
checking for strings.h... yes
checking for inttypes.h... yes
checking for stdint.h... yes
checking for unistd.h... yes
checking dlfcn.h usability... yes
checking dlfcn.h presence... yes
checking for dlfcn.h... yes
checking how to run the C++ preprocessor... /usr/bin/g++-4.2 -E
checking for g77... no
checking for xlf... no
checking for f77... no
checking for frt... no
checking for pgf77... no
checking for cf77... no
checking for fort77... no
checking for fl32... no
checking for af77... no
checking for xlf90... no
checking for f90... no
checking for pgf90... no
checking for pghpf... no
checking for epcf90... no
checking for gfortran... no
checking for g95... no
checking for xlf95... no
checking for f95... no
checking for fort... no
checking for ifort... no
checking for ifc... no
checking for efc... no
checking for pgf95... no
checking for lf95... no
checking for ftn... no
checking whether we are using the GNU Fortran 77 compiler... no
checking whether accepts -g... no
checking the maximum length of command line arguments... (cached) 65536
checking command to parse /usr/bin/nm -p output from /usr/bin/gcc-4.2
object... ok
checking for objdir... .libs
checking for ar... ar
checking for ranlib... ranlib
checking for strip... strip
checking if /usr/bin/gcc-4.2 supports -fno-rtti -fno-exceptions... no
checking for /usr/bin/gcc-4.2 option to produce PIC... -fno-common
checking if /usr/bin/gcc-4.2 PIC flag -fno-common works... yes
checking if /usr/bin/gcc-4.2 static flag -static works... no
checking if /usr/bin/gcc-4.2 supports -c -o file.o... yes
checking whether the /usr/bin/gcc-4.2 linker
(/usr/libexec/gcc/i686-apple-darwin9/4.2.1/ld) supports shared
libraries... yes
checking dynamic linker characteristics... darwin9.6.0 dyld
checking how to hardcode library paths into programs... immediate
checking whether stripping libraries is possible... yes
checking for dlopen in -ldl... yes
checking whether a program can dlopen itself... yes
checking whether a statically linked program can dlopen itself... yes
checking if libtool supports shared libraries... yes
checking whether to build shared libraries... yes
checking whether to build static libraries... no
configure: creating libtool
appending configuration tag "CXX" to libtool
checking for ld used by /usr/bin/g++-4.2...
/usr/libexec/gcc/i686-apple-darwin9/4.2.1/ld
checking if the linker (/usr/libexec/gcc/i686-apple-darwin9/4.2.1/ld)
is GNU ld... no
checking whether the /usr/bin/g++-4.2 linker
(/usr/libexec/gcc/i686-apple-darwin9/4.2.1/ld) supports shared
libraries... yes
checking for /usr/bin/g++-4.2 option to produce PIC... -fno-common
checking if /usr/bin/g++-4.2 PIC flag -fno-common works... yes
checking if /usr/bin/g++-4.2 static flag -static works... no
checking if /usr/bin/g++-4.2 supports -c -o file.o... yes
checking whether the /usr/bin/g++-4.2 linker
(/usr/libexec/gcc/i686-apple-darwin9/4.2.1/ld) supports shared
libraries... yes
checking dynamic linker characteristics... darwin9.6.0 dyld
checking how to hardcode library paths into programs... immediate
appending configuration tag "F77" to libtool
checking which extension is used for shared libraries...
checking which variable specifies run-time library path... DYLD_LIBRARY_PATH
checking for the default library search path... /usr/local/lib /lib /usr/lib
checking for objdir... .libs
checking command to parse /usr/bin/nm -p output... yes
checking whether libtool supports -dlopen/-dlpreopen... yes
checking for dlopen in -ldl... (cached) yes
checking for shl_load... no
checking for shl_load in -ldld... no
checking for dld_link in -ldld... no
checking for dlerror... yes
checking for _ prefix in compiled symbols... (cached) yes
checking whether we have to add an underscore for dlsym... no
checking whether deplibs are loaded by dlopen... yes
checking malloc.h usability... no
checking malloc.h presence... no
checking for malloc.h... no
checking for memory.h... (cached) yes
checking for stdlib.h... (cached) yes
checking stdio.h usability... yes
checking stdio.h presence... yes
checking for stdio.h... yes
checking ctype.h usability... yes
checking ctype.h presence... yes
checking for ctype.h... yes
checking for dlfcn.h... (cached) yes
checking dl.h usability... no
checking dl.h presence... no
checking for dl.h... no
checking dld.h usability... no
checking dld.h presence... no
checking for dld.h... no
checking for string.h... (cached) yes
checking for strchr... yes
checking for strrchr... yes
checking for memcpy... yes
checking for strcmp... yes
checking for extra includes... added
checking for extra libs... added
checking for strlcat... yes
checking if strlcat needs custom prototype... no
checking for strlcpy... yes
checking if strlcpy needs custom prototype... no
checking for main in -lutil... yes
checking for main in -lcompat... no
checking for crypt in -lcrypt... no
checking for crypt in -lc... yes
checking for socklen_t... yes
checking for dnet_ntoa in -ldnet... no
checking for dnet_ntoa in -ldnet_stub... no
checking for inet_ntoa... yes
checking for connect... yes
checking for remove... yes
checking for shmat... yes
checking for sys/types.h... (cached) yes
checking for stdint.h... (cached) yes
checking sys/bitypes.h usability... no
checking sys/bitypes.h presence... no
checking for sys/bitypes.h... no
checking for poll in -lpoll... yes
checking Carbon/Carbon.h usability... yes
checking Carbon/Carbon.h presence... yes
checking for Carbon/Carbon.h... yes
checking CoreAudio/CoreAudio.h usability... yes
checking CoreAudio/CoreAudio.h presence... yes
checking for CoreAudio/CoreAudio.h... yes
checking if res_init needs -lresolv... yes
checking for res_init... yes
checking if res_init needs custom prototype... no
checking for killpg in -lucb... no
checking size of int... 4
checking size of short... 2
checking size of long... 4
checking size of char *... 4
checking for dlopen in -ldl... (cached) yes
checking for shl_unload in -ldld... no
checking size of size_t... 4
checking size of unsigned long... 4
checking sizeof size_t == sizeof unsigned long... yes
checking for PIE support... yes
checking if enabling -pie/fPIE support... yes
checking crt_externs.h usability... yes
checking crt_externs.h presence... yes
checking for crt_externs.h... yes
checking for _NSGetEnviron... yes
checking for vsnprintf... yes
checking for snprintf... yes
checking for pkg-config... /sw/bin/pkg-config
checking if Qt compiles without flags... no
checking grepping for visibility push/pop in headers... yes
checking whether /usr/bin/g++-4.2 supports -fvisibility=hidden... yes
checking if Qt is patched for -fvisibility... yes
checking for gcc -fvisibility-inlines-hidden bug... no
checking if C++ programs can be compiled... yes
checking for dirent.h that defines DIR... yes
checking for library containing opendir... none required
checking for ANSI C header files... (cached) yes
checking fcntl.h usability... yes
checking fcntl.h presence... yes
checking for fcntl.h... yes
checking sys/time.h usability... yes
checking sys/time.h presence... yes
checking for sys/time.h... yes
checking for unistd.h... (cached) yes
checking sys/cdefs.h usability... yes
checking sys/cdefs.h presence... yes
checking for sys/cdefs.h... yes
checking fnmatch.h usability... yes
checking fnmatch.h presence... yes
checking for fnmatch.h... yes
checking sysent.h usability... no
checking sysent.h presence... no
checking for sysent.h... no
checking for strings.h... (cached) yes
checking for sys/stat.h... (cached) yes
checking sys/select.h usability... yes
checking sys/select.h presence... yes
checking for sys/select.h... yes
checking sys/socket.h usability... yes
checking sys/socket.h presence... yes
checking for sys/socket.h... yes
checking linux/socket.h usability... no
checking linux/socket.h presence... no
checking for linux/socket.h... no
checking socketbits.h usability... no
checking socketbits.h presence... no
checking for socketbits.h... no
checking sigaction.h usability... no
checking sigaction.h presence... no
checking for sigaction.h... no
checking paths.h usability... yes
checking paths.h presence... yes
checking for paths.h... yes
checking for malloc.h... (cached) no
checking monetary.h usability... yes
checking monetary.h presence... yes
checking for monetary.h... yes
checking sys/param.h usability... yes
checking sys/param.h presence... yes
checking for sys/param.h... yes
checking limits.h usability... yes
checking limits.h presence... yes
checking for limits.h... yes
checking sys/mnttab.h usability... no
checking sys/mnttab.h presence... no
checking for sys/mnttab.h... no
checking mntent.h usability... no
checking mntent.h presence... no
checking for mntent.h... no
checking fstab.h usability... yes
checking fstab.h presence... yes
checking for fstab.h... yes
checking sys/soundcard.h usability... no
checking sys/soundcard.h presence... no
checking for sys/soundcard.h... no
checking for X... libraries /usr/X11/lib, headers /usr/X11/include
checking for IceConnectionNumber in -lICE... yes
checking for libXext... yes
checking for pthread_create in -lpthread... yes
checking for libz... -lz
checking for libpng... -lpng -lz -lm
checking for libjpeg6b... no
checking for libjpeg... -ljpeg
checking for perl... /sw/bin/perl
checking for Qt... libraries /sw/lib/qt3/lib, headers
/sw/lib/qt3/include using -mt
checking for moc... /sw/lib/qt3/bin/moc
checking for uic... /sw/lib/qt3/bin/uic
checking whether uic supports -L ... yes
checking whether uic supports -nounload ... yes
checking if Qt needs -ljpeg... no
checking for rpath... yes
checking for KDE... will be installed in /sw
checking for main in -lcompat... (cached) no
checking for main in -lutil... (cached) yes
checking for sem_init... yes
checking X11/ICE/ICElib.h usability... yes
checking X11/ICE/ICElib.h presence... yes
checking for X11/ICE/ICElib.h... yes
checking whether time.h and sys/time.h may both be included... yes
checking whether byte ordering is bigendian... no
checking for socket... yes
checking for snprintf... (cached) yes
checking for vsnprintf... (cached) yes
checking for seteuid... yes
checking for setegid... yes
checking for random... yes
checking for strfmon... yes
checking for stpcpy... yes
checking for mkstemp... yes
checking for setmntent... no
checking for gettimeofday... yes
checking for vasprintf... yes
checking for pid_t... yes
checking vfork.h usability... no
checking vfork.h presence... no
checking for vfork.h... no
checking for fork... yes
checking for vfork... yes
checking for working fork... yes
checking for working vfork... (cached) yes
checking for usleep... yes
checking if usleep needs custom prototype... no
checking for setenv... yes
checking if setenv needs custom prototype... no
checking for gethostname... yes
checking if gethostname needs custom prototype... no
checking for random... yes
checking if random needs custom prototype... no
checking for srandom... yes
checking if srandom needs custom prototype... no
checking for S_ISSOCK... yes
checking for socklen_t... (cached) yes
checking libaudioio.h usability... no
checking libaudioio.h presence... no
checking for libaudioio.h... no
checking audio/audiolib.h usability... no
checking audio/audiolib.h presence... no
checking for audio/audiolib.h... no
checking esd.h usability... yes
checking esd.h presence... yes
checking for esd.h... yes
checking for esd_open_sound in -lesd... yes
checking audiofile.h usability... yes
checking audiofile.h presence... yes
checking for audiofile.h... yes
checking for afOpenFile in -laudiofile... yes
checking dmedia/audio.h usability... no
checking dmedia/audio.h presence... no
checking for dmedia/audio.h... no
checking for mas-config... no
checking for posix realtime scheduling support... no
checking for getdomainname... yes
checking if getdomainname needs custom prototype... no
checking ioctl type... 3
checking for x86 float to int conversions... yes
checking for x86 SSE instructions... yes
checking for stdio emulation in artsdsp... no
checking whether /usr/bin/g++-4.2 supports -ftemplate-depth-99... yes
checking sys/asoundlib.h usability... no
checking sys/asoundlib.h presence... no
checking for sys/asoundlib.h... no
checking alsa/asoundlib.h usability... no
checking alsa/asoundlib.h presence... no
checking for alsa/asoundlib.h... no
checking for IRIX... "no"
checking for pkg-config... (cached) /sw/bin/pkg-config
checking for GLib-2.0 (at least 1.3.3)... yes
checking for Jack Audio Connection Kit... not installed
checking soundcard.h usability... no
checking soundcard.h presence... no
checking for soundcard.h... no
checking for _oss_ioctl in -lossaudio... no
checking for ov_read_float in -lvorbisfile... yes
checking ogg/ogg.h usability... yes
checking ogg/ogg.h presence... yes
checking for ogg/ogg.h... yes
checking vorbis/vorbisfile.h usability... yes
checking vorbis/vorbisfile.h presence... yes
checking for vorbis/vorbisfile.h... yes
checking vorbis/vorbisenc.h usability... yes
checking vorbis/vorbisenc.h presence... yes
checking for vorbis/vorbisenc.h... yes
checking for ov_read_float() from rc3... no
checking for mad_synth_frame in -lmad... yes
checking mad.h usability... yes
checking mad.h presence... yes
checking for mad.h... yes
checking the required GSL-Loader library set... complete
checking size of pthread_mutex_t... 44
checking size of pthread_cond_t... 28
checking size of intmax_t... 8
checking for pthread_mutexattr_settype()... yes
checking for getcwd... yes
checking for working alloca.h... yes
checking for alloca... yes
checking for an implementation of va_copy()... yes
checking for an implementation of __va_copy()... yes
checking if libltdl should be compiled... yes
checking if mcop should be compiled... yes
checking if mcopidl should be compiled... yes
checking if flow should be compiled... yes
checking if mcop_mt should be compiled... yes
checking if soundserver should be compiled... yes
checking if artsc should be compiled... yes
checking if examples should be compiled... yes
checking if tests should be compiled... yes
checking if doc should be compiled... yes
checking if x11 should be compiled... yes
checking if qtmcop should be compiled... yes
checking if gmcop should be compiled... yes
configure: creating ./config.status
wrong input (flag != 4) at admin/conf.change.pl line 117, <> line 1515.
config.status: creating Makefile
config.status: creating artsc/Makefile
config.status: creating doc/Makefile
config.status: creating examples/Makefile
config.status: creating flow/Makefile
config.status: creating flow/gsl/Makefile
config.status: creating flow/gslpp/Makefile
config.status: creating flow/mcopclass/Makefile
config.status: creating gmcop/Makefile
config.status: creating libltdl/Makefile
config.status: creating mcop/Makefile
config.status: creating mcop_mt/Makefile
config.status: creating mcopidl/Makefile
config.status: creating qtmcop/Makefile
config.status: creating soundserver/Makefile
config.status: creating tests/Makefile
config.status: creating x11/Makefile
config.status: creating artsc/artsc-config
config.status: creating artsc/artsdsp
config.status: creating soundserver/artsversion-new.h
config.status: creating flow/gsl/gslconfig.h
config.status: creating config.h
config.status: creating mcop/arts_export.h
config.status: creating artsc/artsc_export.h
config.status: executing depfiles commands
configure: WARNING: unrecognized options: --with-distribution,
--with-xinerama, --with-pam, --with-ssl-dir, --with-ssl
Good - your configure finished. Start make now
perl -pi -e 's,@\kdeinitdir\@,/sw/lib/kde3,' soundserver/Makefile
Sequence \k... not terminated in regex; marked by <-- HERE in m/@\k
<-- HERE deinitdir\@/ at -e line 1.
### execution of /var/tmp/tmp.1.wCKBO7 failed, exit code 255
Removing runtime build-lock...
Removing build-lock package...
/sw/bin/dpkg-lockwait -r fink-buildlock-arts-1.5.10-1
(Reading database ... 63889 files and directories currently installed.)
Removing fink-buildlock-arts-1.5.10-1 ...
Failed: phase compiling: arts-1.5.10-1 failed
Before reporting any errors, please run "fink selfupdate" and
try again. If you continue to have issues, please check to see if the
FAQ on fink's website solves the problem. If not, ask on the fink-users
or fink-beginners mailing lists, with a carbon copy to the maintainer:
Benjamin Reed <[email protected]>
Note that this is preferable to emailing the maintainer directly, since
most fink package maintainers do not have access to all possible
hardware and software configurations.
------------------------------------------------------------------------------
Register Now & Save for Velocity, the Web Performance & Operations
Conference from O'Reilly Media. Velocity features a full day of
expert-led, hands-on workshops and two days of sessions from industry
leaders in dedicated Performance & Operations tracks. Use code vel09scf
and Save an extra 15% before 5/3. http://p.sf.net/sfu/velocityconf
_______________________________________________
Fink-users mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/fink-users