openbsd-ports/devel/smpeg/patches/patch-aclocal_m4
pvalchev 87d0f96551 Update to smpeg-0.4.4
Fix socklen_t check in acinclude.m4 to work for OpenBSD (at least)
Changelog:
* Fixed some hangs that occured when seeking in MPEG files
* Reworked the looping code - it should work better now
* Fixed memory leak when sound was disabled
* Widened initial search for audio streams in MPEG files
* plaympeg now shows the name of the MPEG file in the caption
* Added a check for the socklen_t type (was broken -pval)
* Fixed crash with incorrectly encoded macroblock sequences
* Fixed a crash when the MPEG file can't be opened
* Fixed crash in gtv when seeking without a file loaded
2001-06-28 00:56:57 +00:00

22 lines
745 B
Plaintext

$OpenBSD: patch-aclocal_m4,v 1.1 2001/06/28 00:56:58 pvalchev Exp $
--- aclocal.m4.orig Tue Apr 24 13:25:43 2001
+++ aclocal.m4 Wed Jun 27 18:30:04 2001
@@ -1,4 +1,4 @@
-dnl aclocal.m4 generated automatically by aclocal 1.4
+dnl aclocal.m4 generated automatically by aclocal 1.4-p1
dnl Copyright (C) 1994, 1995-8, 1999 Free Software Foundation, Inc.
dnl This file is free software; the Free Software Foundation
@@ -594,8 +594,9 @@ AC_DEFUN(AC_TYPE_SOCKLEN_T,
[AC_CACHE_CHECK([for socklen_t], ac_cv_type_socklen_t,
[
AC_TRY_COMPILE(
- [#include <sys/socket.h>],
- [socklen_t len = 42; return len;],
+ [#include <sys/types.h>
+ #include <sys/socket.h>],
+ [socklen_t x;],
ac_cv_type_socklen_t=yes,
ac_cv_type_socklen_t=no)
])