php.net |  support |  documentation |  report a bug |  advanced search |  search howto |  statistics |  random bug |  login
Bug #57042 Dynamic search for vorbis lib
Submitted: 2006-05-26 03:55 UTC Modified: 2017-01-10 08:34 UTC
From: anubis at lab-project dot net Assigned:
Status: Suspended Package: oggvorbis (PECL)
PHP Version: 5.1.2 OS: Linux SuSE 10.1
Private report: No CVE-ID: None
View Add Comment Developer Edit
Welcome! If you don't have a Git account, you can't do anything here.
You can add a comment by following this link or if you reported this bug, you can edit this bug over here.
Block user comment
Status: Assign to:
Package:
Bug Type:
Summary:
From: anubis at lab-project dot net
New email:
PHP Version: OS:

 

 [2006-05-26 03:55 UTC] anubis at lab-project dot net
Description:
------------
Installing package the standard way:
phpize
./configure
make
make install

does not link libvorbis to the extension.

Reproduce code:
---------------
At least with SuSE 10.1 and 4.1.0 simply a dynamic load error.

Expected result:
----------------
Expecting a normal run

Actual result:
--------------
Instead, the solution is adding the following in 
config.m4:

  LDFLAGS="$LDFLAGS -lvorbis"

before

  PHP_NEW_EXTENSION(oggvorbis, oggvorbis.c,


Patches

Add a Patch

Pull Requests

Add a Pull Request

History

AllCommentsChangesGit/SVN commitsRelated reports
 [2007-01-13 01:30 UTC] fedora at theholbrooks dot org
I've created a new config.m4 for this package.  There doesn't seem to be a file upload mechanism for this bug system, so I'll paste it in here.  This file mimics one I found on the web a while back that incorporates pkg-config into its dynamic search for compile options.  It works beautifully on my php5.1.6 system:


AC_DEFUN([PKG_CHECK_MODULES], [
  succeeded=no

  if test -z "$PKG_CONFIG"; then
    AC_PATH_PROG(PKG_CONFIG, pkg-config, no)
  fi

  if test "$PKG_CONFIG" = "no" ; then
    echo "*** The pkg-config script could not be found. Make sure it is"
    echo "*** in your path, or set the PKG_CONFIG environment variable"
    echo "*** to the full path to pkg-config."
    echo "*** Or see http://www.freedesktop.org/software/pkgconfig to get pkg-config."
  else
    PKG_CONFIG_MIN_VERSION=0.9.0
    if $PKG_CONFIG --atleast-pkgconfig-version $PKG_CONFIG_MIN_VERSION; then
      AC_MSG_CHECKING(for $2)

      if $PKG_CONFIG --exists "$2" ; then
        AC_MSG_RESULT(yes)
        succeeded=yes

        AC_MSG_CHECKING($1_CFLAGS)
        $1_CFLAGS=`$PKG_CONFIG --cflags "$2"`
        AC_MSG_RESULT($$1_CFLAGS)

        AC_MSG_CHECKING($1_LIBS)
        $1_LIBS=`$PKG_CONFIG --libs "$2"`
        AC_MSG_RESULT($$1_LIBS)
      else
        $1_CFLAGS=""
        $1_LIBS=""
        ## If we have a custom action on failure, don't print errors, but
        ## do set a variable so people can do so.
        $1_PKG_ERRORS=`$PKG_CONFIG --errors-to-stdout --print-errors "$2"`
        ifelse([$4], ,echo $$1_PKG_ERRORS,)
      fi

      AC_SUBST($1_CFLAGS)
      AC_SUBST($1_LIBS)
    else
      echo "*** Your version of pkg-config is too old. You need version $PKG_CONFIG_MIN_VERSION or newer."
      echo "*** See http://www.freedesktop.org/software/pkgconfig"
    fi
  fi

  if test $succeeded = yes; then
    ifelse([$3], , :, [$3])
  else
    ifelse([$4], , AC_MSG_ERROR([Library requirements ($2) not met; consider adjusting the PKG_CONFIG_PATH environment variable if your libraries are in a nonstandard prefix so pkg-config can find them.]), [$4])
  fi
 ])

PHP_ARG_ENABLE(oggvorbis, whether to enable the Ogg Vorbis stream wrapper,
[  --enable-oggvorbis      Enable PHP ogg.vorbis:// wrapper.])

if test "$PHP_OGGVORBIS" == "yes"; then
  AC_DEFINE(WITH_OGGVORBIS, 1, [Whether you want Ogg Vorbis Support])

  PKG_CHECK_MODULES(OGG, [ogg >= 1])
  PHP_EVAL_LIBLINE($OGG_LIBS, OGGVORBIS_SHARED_LIBADD)
  OGGVORBIS_CFLAGS="$OGGVORBIS_CFLAGS $OGG_CFLAGS"
  OGGVORBIS_SHARED_LIBADD="$OGGVORBIS_SHARED_LIBADD $OGG_LIBS"

  for i in /usr/local /usr; do
    if [[ -r $i/include/ogg/ogg.h ]]; then
      OGG_DIR=$i
      OGG_INC_DIR=$i/include/ogg
      break
    elif [[ -r $i/include/ogg.h ]]; then
      OGG_DIR=$i
      OGG_INC_DIR=$i/include
      break
    fi
  done
  PHP_ADD_INCLUDE($OGG_INC_DIR)

  PKG_CHECK_MODULES(VORBIS, [vorbis >= 1])
  PHP_EVAL_LIBLINE($VORBIS_LIBS, OGGVORBIS_SHARED_LIBADD)
  OGGVORBIS_CFLAGS="$OGGVORBIS_CFLAGS $VORBIS_CFLAGS"
  OGGVORBIS_SHARED_LIBADD="$OGGVORBIS_SHARED_LIBADD $VORBIS_LIBS"
  PKG_CHECK_MODULES(VORBISENC, [vorbisfile >= 1])
  PHP_EVAL_LIBLINE($VORBISENC_LIBS, OGGVORBIS_SHARED_LIBADD)
  OGGVORBIS_CFLAGS="$OGGVORBIS_CFLAGS $VORBISENC_CFLAGS"
  OGGVORBIS_SHARED_LIBADD="$OGGVORBIS_SHARED_LIBADD $VORBISENC_LIBS"
  PKG_CHECK_MODULES(VORBISFILE, [vorbisenc >= 1])
  PHP_EVAL_LIBLINE($VORBISFILE_LIBS, OGGVORBIS_SHARED_LIBADD)
  OGGVORBIS_CFLAGS="$OGGVORBIS_CFLAGS $VORBISFILE_CFLAGS"
  OGGVORBIS_SHARED_LIBADD="$OGGVORBIS_SHARED_LIBADD $VORBISFILE_LIBS"

  for i in /usr/local /usr; do
    if [[ -r $i/include/vorbis/vorbisfile.h ]]; then
      VORBIS_DIR=$i
      VORBIS_INC_DIR=$i/include/vorbis
      break
    elif [[ -r $i/include/vorbisfile.h ]]; then
      VORBIS_DIR=$i
      VORBIS_INC_DIR=$i/include
      break
    fi
  done
  PHP_ADD_INCLUDE($VORBIS_INC_DIR)

  PHP_NEW_EXTENSION(oggvorbis, oggvorbis.c, $ext_shared, , $OGGVORBIS_CFLAGS)

  PHP_SUBST(OGGVORBIS_SHARED_LIBADD)
fi
 [2017-01-10 08:34 UTC] kalle@php.net
-Status: Open +Status: Suspended
 [2017-01-10 08:34 UTC] kalle@php.net
This extension have not had any activity for almost 14 years, suspending
 
PHP Copyright © 2001-2024 The PHP Group
All rights reserved.
Last updated: Tue Apr 23 14:01:31 2024 UTC