diff options
author | Maxim Sobolev <sobomax@FreeBSD.org> | 2002-04-24 19:03:37 +0000 |
---|---|---|
committer | Maxim Sobolev <sobomax@FreeBSD.org> | 2002-04-24 19:03:37 +0000 |
commit | b0a84db592fc994ee7101c67c97261488178f821 (patch) | |
tree | a28032c86b0766e5abf0ea6af9a051a9dafe0593 /audio/esound/files | |
parent | Add gnomedesktop, part of the GNOME 2.0 Desktop API. (diff) |
Update to 0.2.25.
Diffstat (limited to 'audio/esound/files')
-rw-r--r-- | audio/esound/files/patch-aa | 36 | ||||
-rw-r--r-- | audio/esound/files/patch-ae | 11 | ||||
-rw-r--r-- | audio/esound/files/patch-ltmain.sh | 45 |
3 files changed, 63 insertions, 29 deletions
diff --git a/audio/esound/files/patch-aa b/audio/esound/files/patch-aa index a9c5bb9796b5..38ce8fa3d3fa 100644 --- a/audio/esound/files/patch-aa +++ b/audio/esound/files/patch-aa @@ -1,32 +1,32 @@ $FreeBSD$ ---- Makefile.in.orig Sat Mar 2 00:07:42 2002 -+++ Makefile.in Mon Mar 4 11:17:52 2002 -@@ -133,7 +133,7 @@ - genrand.h +--- Makefile.in.orig Tue Apr 23 15:24:15 2002 ++++ Makefile.in Wed Apr 24 18:24:39 2002 +@@ -110,7 +110,7 @@ + lib_LTLIBRARIES = libesd.la $(libesddsp_la) --libesd_la_LDFLAGS = -version-info @ESD_VERSION_INFO@ +-libesd_la_LDFLAGS = -version-info $(ESD_VERSION_INFO) +libesd_la_LDFLAGS = -version-info 2:0:0 + libesd_la_LIBADD = $(AUDIOFILE_LIBS) $(SOUND_LIBS) - libesd_la_LIBADD = @AUDIOFILE_LIBS@ @SOUND_LIBS@ + libesd_la_SOURCES = esdlib.c esdmgr.c esdfile.c esd_config.c audio.c genrand.c genrand.h +@@ -120,7 +120,7 @@ + AUDIO_BACKENDS = audio_aix.c audio_alsa.c audio_alsa09.c audio_hpux.c audio_irix.c audio_none.c audio_oss.c audio_mklinux.c audio_solaris.c -@@ -141,7 +141,7 @@ - libesddsp.la +-libesddsp_la_LDFLAGS = -version-info $(ESD_VERSION_INFO) ++libesddsp_la_LDFLAGS = -version-info 2:0:0 + libesddsp_la_LIBADD = $(DL_LIB) -lm --libesddsp_la_LDFLAGS = -rpath $(libdir) -version-info @ESD_VERSION_INFO@ -+libesddsp_la_LDFLAGS = -rpath $(libdir) -version-info 2:0:0 - - libesddsp_la_LIBADD = @DL_LIB@ -lm - -@@ -239,7 +239,7 @@ - - CLEANFILES = esound.spec esound.pc + libesddsp_la_SOURCES = esddsp.c +@@ -169,7 +169,7 @@ + esdconfdir = $(sysconfdir) + esdconf_DATA = esd.conf -pkgconfigdir = $(libdir)/pkgconfig +pkgconfigdir = $(prefix)/libdata/pkgconfig pkgconfig_DATA = esound.pc - ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 - mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs + + EXTRA_DIST = esddsp esound.pc.in esound.spec esound.spec.in esd-config.in esd.conf esd.m4 TIPS test-script test.wav getopt.h TODO MAINTAINERS $(AUDIO_BACKENDS) diff --git a/audio/esound/files/patch-ae b/audio/esound/files/patch-ae deleted file mode 100644 index 891f45cad290..000000000000 --- a/audio/esound/files/patch-ae +++ /dev/null @@ -1,11 +0,0 @@ ---- ltmain.sh.orig Thu Jun 29 23:41:49 2000 -+++ ltmain.sh Thu Jun 29 23:45:36 2000 -@@ -3227,7 +3227,7 @@ - outputname= - if test "$fast_install" = no && test -n "$relink_command"; then - if test "$finalize" = yes; then -- outputname="/tmp/$$-$file" -+ outputname=$(mktemp "${TMPDIR:-/tmp}/$file.XXXXXX") || exit $? - # Replace the output file specification. - relink_command=`$echo "X$relink_command" | $Xsed -e 's%@OUTPUT@%'"$outputname"'%g'` - diff --git a/audio/esound/files/patch-ltmain.sh b/audio/esound/files/patch-ltmain.sh new file mode 100644 index 000000000000..91713d2306f8 --- /dev/null +++ b/audio/esound/files/patch-ltmain.sh @@ -0,0 +1,45 @@ + +$FreeBSD$ + +--- ltmain.sh.orig Wed Jan 23 11:38:40 2002 ++++ ltmain.sh Sun Feb 3 01:44:17 2002 +@@ -1037,8 +1037,16 @@ + continue + ;; + ++ -pthread) ++ compile_command="$compile_command -pthread" ++ finalize_command="$finalize_command -pthread" ++ compiler_flags="$compiler_flags -pthread" ++ continue ++ ;; ++ + -module) + module=yes ++ build_old_libs=no + continue + ;; + +@@ -2412,6 +2420,9 @@ + *-*-netbsd*) + # Don't link with libc until the a.out ld.so is fixed. + ;; ++ *-*-freebsd*) ++ # FreeBSD doesn't need this... ++ ;; + *) + # Add libc to deplibs on all other systems if necessary. + if test "$build_libtool_need_lc" = "yes"; then +@@ -4179,10 +4190,12 @@ + fi + + # Install the pseudo-library for information purposes. ++ if /usr/bin/false; then + name=`$echo "X$file" | $Xsed -e 's%^.*/%%'` + instname="$dir/$name"i + $show "$install_prog $instname $destdir/$name" + $run eval "$install_prog $instname $destdir/$name" || exit $? ++ fi + + # Maybe install the static library, too. + test -n "$old_library" && staticlibs="$staticlibs $dir/$old_library" |