summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJakub Bogusz2004-03-14 20:27:01 (GMT)
committercvs2git2012-06-24 12:13:13 (GMT)
commit812be1525f77b6b3b6dc3eb9f95a487026dbb96f (patch)
treea4008570816cc0ad708855c0532368f6d5d734dd
parentfa82f84505ce47b923feb8089941aa19a61cb62b (diff)
downloadlibsndfile-812be1525f77b6b3b6dc3eb9f95a487026dbb96f.zip
libsndfile-812be1525f77b6b3b6dc3eb9f95a487026dbb96f.tar.gz
- obsolete (script has been rewritten in python, generated files shipped with sources)
Changed files: libsndfile-sh.patch -> 1.2
-rw-r--r--libsndfile-sh.patch39
1 files changed, 0 insertions, 39 deletions
diff --git a/libsndfile-sh.patch b/libsndfile-sh.patch
deleted file mode 100644
index f32f962..0000000
--- a/libsndfile-sh.patch
+++ /dev/null
@@ -1,39 +0,0 @@
---- libsndfile-1.0.6/src/create_symbols_file.sh.orig 2004-02-05 11:16:59.000000000 +0100
-+++ libsndfile-1.0.6/src/create_symbols_file.sh 2004-02-09 23:22:11.199231768 +0100
-@@ -19,7 +19,7 @@
- #----------------------------------------------------------------
- # These are all of the public functions exported from libsndfile.
-
--ALL_SYMBOLS=( \
-+ALL_SYMBOLS=" \
- sf_close \
- sf_command \
- sf_error \
-@@ -50,8 +50,7 @@
- sf_writef_int \
- sf_writef_short \
- sf_get_string \
-- sf_set_string \
-- )
-+ sf_set_string"
- #-------------------------------------------------------------------------------
-
- linux_symbols () {
-@@ -60,7 +59,7 @@
- echo "libsndfile.so.$VERSION"
- echo "{"
- echo " global:"
-- for x in ${ALL_SYMBOLS[@]} ; do
-+ for x in ${ALL_SYMBOLS} ; do
- echo " $x ;"
- done
- echo " local:"
-@@ -72,7 +71,7 @@
- darwin_symbols () {
- echo "# Auto-generated by $0"
- echo
-- for x in ${ALL_SYMBOLS[@]} ; do
-+ for x in ${ALL_SYMBOLS} ; do
- echo "_$x"
- done
- echo