Busindre » Blog Archive » Compilar FAAD2 2.0

Compilar FAAD2 2.0

October 7th, 2006 by Busindre

Es una íipica dependencia para compilar aplicaciones de video y temas de codificación audiovisual (MPEG4IP), Usado para plugins del WINlame,xmms, winamp,. veamos como se compila sin errores:

Descarga:FAAD2

Error al compilar:

Descomprimimos y dentro del directorio:

$ autoreconf -vif
$ ./configure --with-mp4v2
$ make

Makefile:623: *** falta un separador. Alto.

Solución:

Editamos el archivo Makefile (Busacmos la linea abajo)

rpm: Makefile
make dist
$(RPMBUILD) -ta $(PACKAGE)-$(VERSION).tar.gz
rm $(PACKAGE)-$(VERSION).tar.gz
# Tell versions [3.59,3.63) of GNU make to not export all variables.
# Otherwise a system limit (for SysV at least) may be exceeded.

Y lo modificamos por:

rpm: Makefile make dist $(RPMBUILD) -ta $(PACKAGE)-$(VERSION).tar.gz rm $(PACKAGE)-$(VERSION).tar.gz
# Tell versions [3.59,3.63) of GNU make to not export all variables.
# Otherwise a system limit (for SysV at least) may be exceeded.
.NOEXPORT:

NOTA: Todo en una linea.

Un vez modificado, repetimos el make y vemos que compila sin errores, luego un make install o checkinstall si queremos generar nuestro paquete y lo tendremos instalado.

Enlace relacionado: FAAC

Posted in Bugs |

Leave a Comment

Please note: Comment moderation is enabled and may delay your comment. There is no need to resubmit your comment.