search for: ao_libs

Displaying 6 results from an estimated 6 matches for "ao_libs".

2001 Mar 16
3
Patches for NetBSD
...s->swap_buffer[i+1] = ((char *) output_samples)[i]; } vorbis-tools: $NetBSD: patch-aa,v 1.1.1.1 2001/03/15 20:53:06 wiz Exp $ --- ../vorbis-tools-1.0beta4.orig/configure Sun Feb 25 21:51:05 2001 +++ configure Thu Mar 15 09:52:40 2001 @@ -1822,7 +1822,7 @@ AO_LIBS="-L$ao_prefix/lib" fi - AO_LIBS="$AO_LIBS -lao -ldl" + AO_LIBS="$AO_LIBS -lao -lossaudio" echo $ac_n "checking for ao""... $ac_c" 1>&6 echo "configure:1829: checking for ao" >&5 $NetBSD: patch-ab,v 1.1.1.1 2001/0...
2000 Nov 18
4
ao hard codes -ldl in configure tests
Rather than using libtool to build its sets, the ao.m4 in beta3 is hard coding '-ldl': AO_LIBS="$AO_LIBS -lao -ldl" Not all systems have a dl library. For now, I can obviously just remove it and keep working on stuff, but what would be a suitable patch that would get accepted to be committed? Should I just check the current build target and set AO_LIBS differently on my host?...
2001 Jan 29
2
Mac OS X / Darwin patch for vorbis-tools
...========================== RCS file: /usr/local/cvsroot/vorbis-tools/acinclude.m4,v retrieving revision 1.5 diff -u -p -r1.5 acinclude.m4 --- acinclude.m4 2000/12/17 20:29:32 1.5 +++ acinclude.m4 2001/01/30 01:46:02 @@ -210,7 +210,7 @@ AC_ARG_ENABLE(aotest, [ --disable-aotes AO_LIBS="-L$ao_prefix/lib" fi - AO_LIBS="$AO_LIBS -lao -ldl" + AO_LIBS="$AO_LIBS -lao $DLOPEN_LIBS" AC_MSG_CHECKING(for ao) no_ao="" Index: configure.in =================================================================== RCS file: /usr/local/cvsroot/vo...
2000 Nov 22
0
Static linking broken
...file.am,v retrieving revision 1.7 diff -c -r1.7 Makefile.am *** ogg123/Makefile.am 2000/11/18 05:36:32 1.7 --- ogg123/Makefile.am 2000/11/22 15:35:10 *************** *** 10,16 **** INCLUDES = @OGG_CFLAGS@ @VORBIS_CFLAGS@ @AO_CFLAGS@ ! ogg123_LDFLAGS = @OGG_LIBS@ @VORBIS_LIBS@ @VORBISFILE_LIBS@ @AO_LIBS@ ogg123_SOURCES = ogg123.c --- 10,16 ---- INCLUDES = @OGG_CFLAGS@ @VORBIS_CFLAGS@ @AO_CFLAGS@ ! LIBS = @VORBISFILE_LIBS@ @VORBIS_LIBS@ @OGG_LIBS@ @AO_LIBS@ ogg123_SOURCES = ogg123.c Index: oggenc/Makefile.am =================================================================== RCS file: /...
2000 Jul 31
0
NetBSD patches
...sage The following patches should fix vorbis-tools to build on NetBSD. I'm not including the diff to the configure scripts, so you'll need to rerun autoconf in the toplevel and libao directory after applying these patches to the configure.in files. It also appears that vorbis-tools/libao/ao_libs.inc is automatically generated by a configure script but checked into CVS. It almost certainly should not be checked into CVS. (vorbis-tools/libao/Makefile and vorbis-tools/libao/config.log and vorbis-tools/libao/config.status seem to have had a `cvs remove' done to it recently, I think, but i...
2001 Mar 17
1
ogg123: shared memory by mmap()
...have a working mmap(), use it to create a region of shared memory instead of using System V IPC. Works on BSD. Should also work on SVR4 and offspring (Solaris), and Linux. --- acinclude.m4.orig Wed Feb 28 03:36:50 2001 +++ acinclude.m4 Sat Mar 17 17:39:58 2001 @@ -300,3 +300,65 @@ AC_SUBST(AO_LIBS) rm -f conf.aotest ]) + +dnl Shamelessly stolen from Joerg Schilling's star. +dnl Copyright 1998 J. Schilling + +dnl Checks if mmap() works to get shared memory +dnl Defines HAVE_SMMAP on success. +AC_DEFUN(AC_FUNC_SMMAP, +[AC_CACHE_CHECK([if mmap works to get shared memory], ac_cv_func_smm...