search for: am_path_ogg

Displaying 9 results from an estimated 9 matches for "am_path_ogg".

2001 Aug 19
1
ogg.m4 and vorbis.m4
Greetings everyone. I have 2 quick questions about ao/ao.m4, ogg/ogg.m4, and vorbis/vorbis.m4. 1. Is there any reason that the macros are named AM_PATH_AO, AM_PATH_OGG, and AM_PATH_VORBIS? Can we change them to something else? I ran into a problem when trying to add support for ogg/vorbis into a package today: Automake assumes that anything beginning with AM_ belongs to automake -- these two macros are actually infringing on the automake namespace. This can c...
2004 Aug 06
1
ice2 autogen.sh problems
...2 results in <p>idoru:/usr/src/ices# ./autogen.sh I am going to run ./configure with no arguments - if you wish to pass any to it, please specify them on the ./autogen.sh command line. Generating configuration files for ices, please wait.... aclocal aclocal: m4/ogg.m4: 8: duplicated macro `AM_PATH_OGG' aclocal: m4/vorbis.m4: 8: duplicated macro `AM_PATH_VORBIS' libtoolize --automake automake --add-missing autoconf configure.in:5: error: possibly undefined macro: AM_INIT_AUTOMAKE configure.in:8: error: possibly undefined macro: AM_PROG_LIBTOOL configure.in:53: error: possibly undefi...
2004 Aug 06
3
Some questions and problems about setting up Icecast2
...n AM_CONDITIONAL /usr/local/share/automake-1.6/am/lang-compile.am: AMDEP does not appear in AM_CONDITIONAL autoconf configure.in:4: error: possibly undefined macro: AM_INIT_AUTOMAKE configure.in:8: error: possibly undefined macro: AM_PROG_LIBTOOL configure.in:116: error: possibly undefined macro: AM_PATH_OGG configure.in:117: error: possibly undefined macro: AM_PATH_VORBIS ./configure: line 1189: syntax error near unexpected token `AM_INIT_AUTOMAKE(icecast,2.0)' ./configure: line 1189: `AM_INIT_AUTOMAKE(icecast,2.0)' Does it mean that I need to downgrade my automake and/or other utilities, or...
2000 Nov 10
1
cvs trunk vorbis/ compile patches
...bug: diff -bBu2rN -x CVS -x Make*in -x aclocal.m4 vorbis-trunk/configure.in vorbis/configure.in --- vorbis-trunk/configure.in Wed Nov 8 03:36:35 2000 +++ vorbis/configure.in Thu Nov 9 23:00:40 2000 @@ -150,5 +150,5 @@ AC_CHECK_LIB(pthread, pthread_create, pthread_lib="-lpthread", :) -AM_PATH_OGG(LIBS="$LIBS $OGG_LIBS", AC_MSG_ERROR(must have Ogg installed!)) +AM_PATH_OGG(LIBS="$LIBS", AC_MSG_ERROR(must have Ogg installed!)) dnl -------------------------------------------------- @@ -167,3 +167,3 @@ AC_SUBST(pthread_lib) -AC_OUTPUT(Makefile lib/Makefile lib/modes/Ma...
2001 Jun 27
1
Patch to get libvorbis 1.0b4 to build on Solaris 2.7
...Jun 27 10:38:19 2001 @@ -152,6 +152,7 @@ dnl -------------------------------------------------- AC_CHECK_LIB(m, cos, LIBS="-lm", LIBS="") +AC_CHECK_LIB(m, sqrtf, AC_DEFINE(HAVE_FLOAT_MATH_LIB), ) AC_CHECK_LIB(pthread, pthread_create, pthread_lib="-lpthread", :) AM_PATH_OGG(LIBS="$LIBS $OGG_LIBS", AC_MSG_ERROR(must have Ogg installed!)) --- lib/os.h Sun Feb 25 22:37:59 2001 +++ ../../libvorbis-1.0beta4/lib/os.h Wed Jun 27 10:42:30 2001 @@ -38,19 +38,10 @@ #ifdef _WIN32 # include <malloc.h> # define rint(x) (floor((x)+0.5f)) -# define NO_FLOAT...
2004 Aug 06
3
ices compile problems (was: libshout compile problems)
...the following response: ------------------------------- I am going to run ./configure with no arguments - if you wish to pass any to it, please specify them on the ./autogen.sh command line. Generating configuration files for ices, please wait.... aclocal aclocal: m4/ogg.m4: 9: duplicated macro `AM_PATH_OGG' aclocal: m4/vorbis.m4: 9: duplicated macro `AM_PATH_VORBIS' autoheader autoheader2.50: error: AC_CONFIG_HEADERS not found in configure.in libtoolize --automake automake --add-missing automake: configure.in: `PACKAGE' not defined in `configure.in' automake: configure.in: `VERS...
2004 Aug 06
3
libshout compile problems
No, it's not his version of autoconf or automake. I had the same errors even with the latest versions available for my debian distribution. I only could help myself by using one of my precompiled binaries from a previous cvs snapshot. I haven't tried it with the current snapshot but I also don't know if there had been any update lately. Michael Smith wrote: >>all ok until
2004 Aug 06
3
Some questions and problems about setting up Icecast2
On Sun, Jul 28, 2002 at 11:31:59PM +1000, Michael Smith wrote: > At 09:48 PM 7/27/02 -0500, you wrote: > > I've finally decided to take the plunge and set up an Icecast 2 server on my Linux 2.4.18 machine. After asking in #vorbis, I was told that I need ice2 and ices. From what I understand, ice2 is the Icecast2 server, while ices is a program that sends it data to push to its
2001 Jan 29
2
Mac OS X / Darwin patch for vorbis-tools
...-Wall -g -O4 -ffast-math -fsigned-char" + PROFILE="-DDARWIN -Wall -g -pg -O4 -ffast-math -fsigned-char";; +esac + + dnl -------------------------------------------------- dnl Check for headers dnl -------------------------------------------------- @@ -52,6 +61,10 @@ AM_PATH_OGG(,AC_MSG_ERROR(Ogg needed!)) AM_PATH_VORBIS(,AC_MSG_ERROR(Vorbis needed!)) AM_PATH_AO(,AC_MSG_ERROR(libao needed!)) +if test x"$lt_cv_dlopen" = x"yes"; then + DLOPEN_LIBS="-ldl" +fi + dnl -------------------------------------------------- dnl Check for libra...