pkgsrc-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[pkgsrc/trunk]: pkgsrc/multimedia/php-ming multimedia/php-ming: dose not supp...



details:   https://anonhg.NetBSD.org/pkgsrc/rev/7da70950b846
branches:  trunk
changeset: 379889:7da70950b846
user:      taca <taca%pkgsrc.org@localhost>
date:      Tue May 24 15:03:32 2022 +0000

description:
multimedia/php-ming: dose not support PHP 8 and later

Remove workaround for 0.4.4, too.

diffstat:

 multimedia/php-ming/Makefile        |    8 +-
 multimedia/php-ming/files/config.m4 |  115 ------------------------------------
 2 files changed, 3 insertions(+), 120 deletions(-)

diffs (148 lines):

diff -r 5fdc908ae8da -r 7da70950b846 multimedia/php-ming/Makefile
--- a/multimedia/php-ming/Makefile      Tue May 24 15:01:43 2022 +0000
+++ b/multimedia/php-ming/Makefile      Tue May 24 15:03:32 2022 +0000
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.32 2020/06/05 12:49:13 jperkin Exp $
+# $NetBSD: Makefile,v 1.33 2022/05/24 15:03:32 taca Exp $
 
 PKGREVISION= 1
 .include "../../multimedia/ming/Makefile.common"
@@ -13,6 +13,8 @@
 COMMENT=               PHP extension for Ming library
 LICENSE=               php
 
+PHP_VERSIONS_ACCEPTED= 56 74
+
 CONFLICTS=     php-ming-[0-9]*
 
 CONFIGURE_ARGS+=       --with-${MODNAME}=${BUILDLINK_PREFIX.ming}
@@ -21,10 +23,6 @@
 CONFIGURE_DIRS=                ${PHPSETUPSUBDIR}
 USE_TOOLS+=            aclocal autoconf automake autoheader pkg-config
 
-# missing in 0.4.4 release tarball.
-post-extract:
-       ${CP} ${FILESDIR}/config.m4 ${WRKSRC}/${PHPSETUPSUBDIR}
-
 pre-configure:
        cd ${WRKSRC}; sh ./autogen.sh
 
diff -r 5fdc908ae8da -r 7da70950b846 multimedia/php-ming/files/config.m4
--- a/multimedia/php-ming/files/config.m4       Tue May 24 15:01:43 2022 +0000
+++ /dev/null   Thu Jan 01 00:00:00 1970 +0000
@@ -1,115 +0,0 @@
-dnl
-dnl $NetBSD: config.m4,v 1.1 2012/05/12 08:49:26 obache Exp $
-dnl based on taken from upstream git repository at release 0.4.4
-dnl
-
-PHP_ARG_WITH(ming, for MING support,
-[  --with-ming[=DIR]       Include MING support])
-
-if test "$PHP_MING" != "no"; then
-  AC_CHECK_LIB(m, sin)
-
-  for i in $PHP_MING ../../src /usr/local /usr; do
-    if test -e $i/$PHP_LIBDIR/libming.$SHLIB_SUFFIX_NAME || test -e $i/$PHP_LIBDIR/libming.a; then
-      MING_DIR=$i
-      break
-    fi
-  done
-
-  if test -z "$MING_DIR"; then
-    AC_MSG_ERROR(Please reinstall ming distribution. libming.(a|so) not found.)
-  fi
-
-  for i in ../../src $MING_DIR/include $MING_DIR/include/ming $MING_DIR/ming/include; do
-    if test -f $i/ming.h; then
-      MING_INC_DIR=$i
-    fi
-  done
-
-  if test -z "$MING_INC_DIR"; then
-    AC_MSG_ERROR(Please reinstall ming distribution. ming.h not found.)
-  fi
-
-  PHP_CHECK_LIBRARY(ming, Ming_useSWFVersion, [
-    AC_DEFINE(HAVE_MING,1,[ ])
-  ],[
-    AC_MSG_ERROR([Ming library 0.2a or greater required.])
-  ],[
-    -L$MING_DIR/$PHP_LIBDIR
-  ])
-  
-  PHP_ADD_INCLUDE($MING_INC_DIR)
-  PHP_ADD_LIBRARY_WITH_PATH(ming, $MING_DIR/$PHP_LIBDIR, MING_SHARED_LIBADD)
-
-  old_CPPFLAGS=$CPPFLAGS
-  CPPFLAGS=-I$MING_INC_DIR
-  AC_MSG_CHECKING([for destroySWFBlock])
-  AC_TRY_RUN([
-#include "ming.h"
-int destroySWFBlock(int a, int b) {
-       return a+b;
-}
-int main() {
-       return destroySWFBlock(-1,1); /* returns 0 only if function is not yet defined */
-}
-  ],[
-    AC_MSG_RESULT([missing])
-  ],[
-    AC_DEFINE(HAVE_DESTROY_SWF_BLOCK,1,[ ])
-    AC_MSG_RESULT([ok])
-  ],[
-    AC_MSG_RESULT([unknown])
-  ]) 
-
-dnl Check Ming version (FIXME: if/when ming has some better way to detect the version..)
-  AC_EGREP_CPP(yes, [
-#include <ming.h>
-#ifdef SWF_SOUND_COMPRESSION
-yes
-#endif
-  ], [
-    AC_DEFINE(HAVE_NEW_MING,  1, [ ]) 
-    dnl FIXME: This is now unconditional..better check coming later.
-  ])
-
-  dnl Check if SWFVideoStream_setFrameMode() is available
-  AC_TRY_COMPILE([
-#include <ming.h>
-  ], [
-int main(void) { SWFVideoStream_setFrameMode(0, 0); return 0; }
-  ], [
-    AC_DEFINE(HAVE_SWFVIDEOSTREAM_SETFRAMEMODE, 1, [Have SWFVideoStream_setFrameMode(SWFVideoStream, int)])
-  ], [])
-
-  dnl Check if SWFVideoStream_nextFrame() is available
-  AC_TRY_COMPILE([
-#include <ming.h>
-  ], [
-int main(void) { SWFVideoStream_nextFrame(0); return 0; }
-  ], [
-    AC_DEFINE(HAVE_SWFVIDEOSTREAM_NEXTFRAME, 1, [Have SWFVideoStream_nextFrame(SWFVideoStream)])
-  ], [])
-
-  dnl Check if SWFVideoStream_seek() is available
-  AC_TRY_COMPILE([
-#include <ming.h>
-  ], [
-int main(void) { SWFVideoStream_seek(0, 0, 0); return 0; }
-  ], [
-    AC_DEFINE(HAVE_SWFVIDEOSTREAM_SEEK, 1, [Have SWFVideoStream_seek(SWFVideoStream, int frame, int whence)])
-  ], [])
-
-
-  dnl Check if SWFMovie_output() accepts the 4th parameter
-  AC_TRY_COMPILE([
-#include <ming.h>
-  ], [
-int main(void) { SWFMovie_output(NULL, NULL, NULL, 0); return 0; }
-  ], [
-    AC_DEFINE(HAVE_MING_MOVIE_LEVEL, 1, [ ])
-  ], [])
-  CPPFLAGS=$old_CPPFLAGS
-
-  PHP_NEW_EXTENSION(ming, ming.c, $ext_shared)
-  PHP_SUBST(MING_SHARED_LIBADD)
-fi



Home | Main Index | Thread Index | Old Index