Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 128275 | Differences between
and this patch

Collapse All | Expand All

(-)configure.in.orig (-2 / +2 lines)
Lines 14-20 Link Here
14
AC_EXEEXT
14
AC_EXEEXT
15
15
16
#NOTE: only Linux needs these 4 lines [20080317: I removed gmodule-2.0 and put -export-dynamic in src/Makefile.am]:
16
#NOTE: only Linux needs these 4 lines [20080317: I removed gmodule-2.0 and put -export-dynamic in src/Makefile.am]:
17
pkg_modules="gtk+-2.0 >= 2.0.0 libglade-2.0 gthread-2.0 sndfile >= 1.0.2 portaudio <= 18"
17
pkg_modules="gtk+-2.0 >= 2.0.0 libglade-2.0 gthread-2.0 sndfile >= 1.0.2"
18
PKG_CHECK_MODULES([PACKAGE], [$pkg_modules])
18
PKG_CHECK_MODULES([PACKAGE], [$pkg_modules])
19
AC_SUBST(PACKAGE_CFLAGS)
19
AC_SUBST(PACKAGE_CFLAGS)
20
AC_SUBST(PACKAGE_LIBS)
20
AC_SUBST(PACKAGE_LIBS)
Lines 29-35 Link Here
29
#NOTE: for some reason automake doesn't like conditionals determining libs, so I'll do it here:
29
#NOTE: for some reason automake doesn't like conditionals determining libs, so I'll do it here:
30
case $host in
30
case $host in
31
 *mingw32msvc*) PSPEC_LIBS='-latk-1.0.dll -lglade-2.0.dll -lpango-1.0.dll -lgobject-2.0.dll -lgdk_pixbuf-2.0.dll -lgthread-2.0.dll -lpangoft2-1.0.dll -lgdk-win32-2.0.dll -lgtk-win32-2.0.dll -lpangowin32-1.0.dll -lgettextpo -liconv -lglib-2.0.dll -lsndfile-1.dll -lportaudio -lwinmm -lintl -lwsock32' ;;
31
 *mingw32msvc*) PSPEC_LIBS='-latk-1.0.dll -lglade-2.0.dll -lpango-1.0.dll -lgobject-2.0.dll -lgdk_pixbuf-2.0.dll -lgthread-2.0.dll -lpangoft2-1.0.dll -lgdk-win32-2.0.dll -lgtk-win32-2.0.dll -lpangowin32-1.0.dll -lgettextpo -liconv -lglib-2.0.dll -lsndfile-1.dll -lportaudio -lwinmm -lintl -lwsock32' ;;
32
 *) PSPEC_LIBS='' ;;
32
 *) PSPEC_LIBS='-lportaudio  -lm -lpthread' ;;
33
esac
33
esac
34
AC_SUBST([PSPEC_LIBS])
34
AC_SUBST([PSPEC_LIBS])
35
#NOTE: after that AC_SUBST, you can refer to it as @PSPEC_LIBS@ in src/Makefile.am
35
#NOTE: after that AC_SUBST, you can refer to it as @PSPEC_LIBS@ in src/Makefile.am

Return to bug 128275