summaryrefslogtreecommitdiff
path: root/audio/esound/files
diff options
context:
space:
mode:
authorVanilla I. Shu <vanilla@FreeBSD.org>1998-12-23 19:22:08 +0000
committerVanilla I. Shu <vanilla@FreeBSD.org>1998-12-23 19:22:08 +0000
commit0e2c7f40627fd53cb65cc7b7a576ffecd2104190 (patch)
treeee19972a7535ca367f5799237092948a59a37782 /audio/esound/files
parentActivate libghttp. (diff)
Upgrade to 0.2.7.
Notes
Notes: svn path=/head/; revision=15541
Diffstat (limited to 'audio/esound/files')
-rw-r--r--audio/esound/files/patch-aa33
-rw-r--r--audio/esound/files/patch-ab50
2 files changed, 40 insertions, 43 deletions
diff --git a/audio/esound/files/patch-aa b/audio/esound/files/patch-aa
index 468aa6a5bb89..4371001c6757 100644
--- a/audio/esound/files/patch-aa
+++ b/audio/esound/files/patch-aa
@@ -1,14 +1,19 @@
---- audio_oss.c.orig Sun Jul 19 12:13:08 1998
-+++ audio_oss.c Sun Jul 19 12:14:39 1998
-@@ -29,9 +29,11 @@
-
- /* TODO: check that this is allowable */
- /* set for full duplex operation, if recording */
-+ /*
- if ( (esd_audio_format & ESD_MASK_FUNC) == ESD_RECORD ) {
- ioctl( afd, SNDCTL_DSP_SETDUPLEX, 0 );
- }
-+ */
-
- /* set the sound driver fragment size and number */
- /* fragment = max_buffers << 16 + log2(buffer_size), (256 16) */
+--- Makefile.in.orig Tue Dec 15 01:22:45 1998
++++ Makefile.in Wed Dec 23 04:57:49 1998
+@@ -110,14 +110,14 @@
+ esdfile.c \
+ audio.c
+
+-libesd_la_LDFLAGS = -version-info @ESD_VERSION_INFO@
++libesd_la_LDFLAGS = -version-info 0:2:0
+
+ libesd_la_LIBADD = @AUDIOFILE_LIBS@ -lm
+
+ EXTRA_LTLIBRARIES = \
+ libesddsp.la
+
+-libesddsp_la_LDFLAGS = -rpath $(libdir) -version-info @ESD_VERSION_INFO@
++libesddsp_la_LDFLAGS = -rpath $(libdir) -version-info 0:2:0
+
+ libesddsp_la_LIBADD = -ldl -lm
+
diff --git a/audio/esound/files/patch-ab b/audio/esound/files/patch-ab
index c6a217595615..0d4005a7686b 100644
--- a/audio/esound/files/patch-ab
+++ b/audio/esound/files/patch-ab
@@ -1,44 +1,36 @@
---- ltmain.sh.orig Tue Sep 22 23:31:41 1998
-+++ ltmain.sh Tue Sep 22 23:35:18 1998
-@@ -967,6 +967,16 @@
+--- ltmain.sh.orig Tue Dec 15 01:22:13 1998
++++ ltmain.sh Wed Dec 23 03:12:43 1998
+@@ -923,6 +923,18 @@
versuffix="$current.$revision"
;;
-+ freebsd)
++ freebsd-aout)
+ version_vars="$version_vars major versuffix"
+ major="$current"
-+ if [ $PORTOBJFORMAT = elf ]; then
-+ versuffix="$current";
-+ else
-+ versuffix="$current.$revision";
-+ fi
++ versuffix="$current.$revision"
++ ;;
++
++ freebsd-elf)
++ version_vars="$version_vars major versuffix"
++ major="$current"
++ versuffix="$current"
+ ;;
+
*)
$echo "$modename: unknown library version type \`$version_type'" 1>&2
echo "Fatal configuration error. See the $PACKAGE docs for more information." 1>&2
---- ltconfig.orig Tue Sep 22 23:31:38 1998
-+++ ltconfig Tue Sep 22 23:37:19 1998
-@@ -1123,10 +1123,21 @@
- finish_eval='for lib in `ls $libdir/*.ixlibrary 2>/dev/null`; do libname=`$echo "X$lib" | $Xsed -e '\''s%^.*/\([^/]*\)\.ixlibrary$%\1%'\''`; test $rm /sys/libs/${libname}_ixlibrary.a; $show "(cd /sys/libs && $LN_S $lib ${libname}_ixlibrary.a)"; (cd /sys/libs && $LN_S $lib ${libname}_ixlibrary.a) || exit 1; done'
+--- ltconfig.orig Tue Dec 15 01:22:13 1998
++++ ltconfig Wed Dec 23 03:14:11 1998
+@@ -1106,9 +1106,10 @@
;;
--freebsd2* | freebsd3*)
-+freebsd2*)
- version_type=sunos
- library_names_spec='${libname}${release}.so.$versuffix $libname.so'
- finish_cmds='PATH="$PATH:/sbin" ldconfig -m $libdir'
-+ shlibpath_var=LD_LIBRARY_PATH
-+ ;;
-+
-+freebsd3*)
-+ version_type=freebsd
-+ library_names_spec='${libname}${release}.so.$versuffix $libname.so'
-+ if [ $PORTOBJFORMAT = elf ]; then
-+ finish_cmds='PATH="\$PATH:/sbin" OBJFORMAT="$PORTOBJFORMAT" ldconfig -m $libdir'
-+ else
-+ finish_cmds='PATH="\$PATH:/sbin" ldconfig -m $libdir'
-+ fi
+ freebsd2* | freebsd3*)
+- version_type=sunos
++ objformat=`test -x /usr/bin/objformat && /usr/bin/objformat || echo aout`
++ version_type=freebsd-$objformat
+ library_names_spec='$libname.so.$versuffix $libname.so'
+- finish_cmds='PATH="\$PATH:/sbin" ldconfig -m $libdir'
++ finish_cmds='PATH="\$PATH:/sbin" OBJFORMAT="$objformat" ldconfig -m $libdir'
shlibpath_var=LD_LIBRARY_PATH
;;