search for: have_ogg

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

2008 May 03
2
Cross compiling Linux -> windows has broken
.... This patch fixes it: ------8<------8<------8<------8<------8<------8<------8<------8<------ --- configure.ac (revision 14830) +++ configure.ac (working copy) @@ -203,13 +203,7 @@ AC_CHECK_LIB(pthread, pthread_create, pthread_lib="-lpthread", :) HAVE_OGG=no -dnl first check through pkg-config -dnl check for pkg-config itself so we don't try the m4 macro without pkg-config -AC_CHECK_PROG(HAVE_PKG_CONFIG, pkg-config, yes) -if test "x$HAVE_PKG_CONFIG" = "xyes" -then - PKG_CHECK_MODULES(OGG, ogg >= 1.0, HAVE_OGG=yes, HAVE_OG...
2004 Sep 10
1
latest checkins
...has added a new public interface, don't forget > to > update the libtool version before the release, from 1:0:0 to 2:0:1, > to > reflect this. yes, I'll be checking that in today. Matt, on a separate note, the Ogg test in configure.in is: AM_CONDITIONAL(FLaC__HAS_OGG, [test $have_ogg = xyes]) I thought it would be: AM_CONDITIONAL(FLaC__HAS_OGG, [test x$have_ogg = xyes]) ??? Josh __________________________________________________ Do You Yahoo!? Find a job, post your resume. http://careers.yahoo.com
2005 Jul 28
1
pkg-config problem
Hi, I tried to build libvorbis today but had a little problem. When running configure it would fail with these errors: ./configure: line 19431: syntax error near unexpected token `OGG,' ./configure: line 19431: ` PKG_CHECK_MODULES(OGG, ogg >= 1.0, HAVE_OGG=yes, HAVE_OGG=no)' I had to set ACLOCAL_FLAGS to "-I /usr/local/share/aclocal" and rerun autogen.sh in order for it to work. I just would like to know whether or not this is something that could be fixed in vorbis itself or if it is totally my problem. -- <Arthur/> - http:...
2013 Apr 06
0
[PATCH 1/2] Fix pkg-config files to avoid overlinking
...LAC++/flac++.pc.in | 4 ++-- src/libFLAC/flac.pc.in | 4 +++- 3 files changed, 7 insertions(+), 3 deletions(-) diff --git a/configure.ac b/configure.ac index b35e44d..b4094ff 100644 --- a/configure.ac +++ b/configure.ac @@ -308,9 +308,11 @@ fi AM_CONDITIONAL(FLaC__HAS_OGG, [test "x$have_ogg" = xyes]) if test "x$have_ogg" = xyes ; then AC_DEFINE_UNQUOTED([FLAC__HAS_OGG],1,[define if you have the ogg library]) + OGG_PACKAGE="ogg" else AC_DEFINE_UNQUOTED([FLAC__HAS_OGG],0) fi +AC_SUBST(OGG_PACKAGE) dnl check for i18n(internationalization); these are fro...
2004 Sep 10
2
latest checkins
I have checked in a few changes worth noting: 1. I split the file decoder into a more general 'seekable stream decoder' which, makes the file decoder just a special case of the seekable stream decoder. this is useful in situations where you are trying to add decoding support to something that has abstracted the file away. the file decoder interface is still identical, it is all backward
2008 Apr 30
6
new release monday
All, We've accumulated quite a few changes to libvorbis since the 1.2.0 release. I'd like to do a new one, a propose that 1.2.1 happen May 5 or so. So, if you have any outstanding issues, please mention them here, and please check that current svn is working for you. Thanks, -r
2014 Oct 13
2
[PATCH] for configure.ac
lvqcl wrote: > lvqcl wrote: > > > 1) in config.h FLAC__HAS_X86INTRIN macro is always defined and empty, > > even if x86intrin.h is not available. > > > > 2) sse_os is defined as 'yes' or 'no', but AM_CONDITIONAL tests it for 'true': > > The patch is attached. Please check it. Looks good. I need to do a little testing. > > 3)
2014 Oct 14
0
[PATCH] for configure.ac
...izations : ................... ${sse_os}" > + echo " SSE enabled : ......................... ${sse_enabled}" > echo " Asm optimizations : ................... ${asm_optimisation}" > echo " Ogg/FLAC support : .................... ${have_ogg}" What is the definition of "sse_enabled"? Cannot find it.
2011 Aug 07
2
Trouble getting in icecast Directory
...1 #define HAVE_SYS_UIO_H 1 #define HAVE_SETHOSTENT 1 #define HAVE_GETNAMEINFO 1 #define HAVE_ENDHOSTENT 1 #define HAVE_GETADDRINFO 1 #define HAVE_INET_ATON 1 #define HAVE_WRITEV 1 #define HAVE_STRUCT_SOCKADDR_STORAGE_SS_FAMILY 1 #define HAVE_INET_PTON 1 #define HAVE_XSLTSAVERESULTTOSTRING 1 #define HAVE_OGG 1 #define HAVE_PTHREAD_SPIN_LOCK 1 #define HAVE_PTHREAD 1 #define HAVE_CURL_CURL_H 1 #define HAVE_CURL 1 #define HAVE_AUTH_URL 1 #define HAVE_CURL_GLOBAL_INIT 1 #define USE_YP 1 ========================== Which says curl is available and YP is selected, the two things I noted were required to sup...