aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIOhannes m zmölnig <zmoelnig@users.sourceforge.net>2010-11-12 10:06:43 +0000
committerIOhannes m zmölnig <zmoelnig@users.sourceforge.net>2010-11-12 10:06:43 +0000
commitae49ad28864d766209b15111a31bd4ee60893957 (patch)
tree16718ec345c6cf728b5c6113ace7624222872e80
parent4cb03672c977721488fa8dc17a472d11205b172f (diff)
don't link against libasound; fixed ld-flag
svn path=/trunk/externals/iem/syslog/; revision=14431
-rw-r--r--configure.ac12
1 files changed, 6 insertions, 6 deletions
diff --git a/configure.ac b/configure.ac
index 31ae433..04f7bee 100644
--- a/configure.ac
+++ b/configure.ac
@@ -27,17 +27,17 @@ AC_CHECK_LIB(c, main)
AC_CHECK_LIB(crtdll, fclose)
dnl Replace `main' with a function in -lm:
-AC_CHECK_LIB(m, main)
+#AC_CHECK_LIB(m, main)
dnl Replace `main' with a function in -lpthread:
dnl AC_CHECK_LIB(pthread, main)
dnl Replace `main' with a function in -lstk:
dnl AC_CHECK_LIB(stk, main, STK=yes)
-AC_CHECK_LIB(asound, snd_seq_close)
-if test "x$ac_cv_lib_asound_snd_seq_close" = "xyes"; then
- DFLAGS="-DHAVE_ALSA ${DFLAGS}"
-fi
+#AC_CHECK_LIB(asound, snd_seq_close)
+#if test "x$ac_cv_lib_asound_snd_seq_close" = "xyes"; then
+# DFLAGS="-DHAVE_ALSA ${DFLAGS}"
+#fi
if test "x$includedir" != "x"; then
for id in $includedir
@@ -115,7 +115,7 @@ dnl OK, checks for machines are here now
dnl
if test `uname -s` = Linux;
then
- LFLAGS="-export_dynamic -shared"
+ LFLAGS="--export-dynamic -shared"
CFLAGS="-fPIC $CFLAGS"
EXT=pd_linux
fi