33 lines
1014 B
Plaintext
33 lines
1014 B
Plaintext
--- mpeglib/configure.in.in.orig Thu Feb 3 23:48:26 2005
|
|
+++ mpeglib/configure.in.in Sat Mar 26 10:30:28 2005
|
|
@@ -217,6 +217,9 @@ case "$OS_TYPE" in
|
|
NetBSD)
|
|
kde_mpeglib_compiles=yes
|
|
;;
|
|
+ OpenBSD)
|
|
+ kde_mpeglib_compiles=yes
|
|
+ ;;
|
|
Linux)
|
|
kde_mpeglib_compiles=yes
|
|
;;
|
|
@@ -244,6 +247,12 @@ case "$OS_TYPE" in
|
|
AC_DEFINE(OS_Linux,1,[Define if you have linux pthread])
|
|
;;
|
|
|
|
+ OpenBSD)
|
|
+ OS_TYPE="BSD"
|
|
+ AC_CHECK_LIB(c_r, pthread_create, [LIBPTHREAD="-pthread"])
|
|
+ AC_DEFINE(OS_BSD,1,[Define if you have BSD pthread])
|
|
+ ;;
|
|
+
|
|
FreeBSD)
|
|
OS_TYPE="BSD"
|
|
AC_DEFINE(OS_BSD,1,[Define if you have BSD pthread])
|
|
@@ -287,5 +296,5 @@ KDE_MPEGLIB_COMPILES
|
|
|
|
THIS_LIB_LIBS="-lX11 -lXext -lm -lstdc++ ${XVLIBS} ${DGALIBS} "
|
|
THIS_LIB_LIBS="${THIS_LIB_LIBS} ${XVIDMODELIBS} ${SDLLIB} ${CDDALIBS} "
|
|
-THIS_LIB_LIBS="${THIS_LIB_LIBS} ${OGG_VORBISLIBS} ${LIBPTHREAD}"
|
|
+THIS_LIB_LIBS="${THIS_LIB_LIBS} ${OGG_VORBISLIBS} ${LIBPTHREAD} ${LIBOSSAUDIO}"
|
|
AC_SUBST(THIS_LIB_LIBS)
|