You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
32 lines
1.3 KiB
32 lines
1.3 KiB
16 years ago
|
# --- SDE-COPYRIGHT-NOTE-BEGIN ---
|
||
|
# This copyright note is auto-generated by ./scripts/Create-CopyPatch.
|
||
|
#
|
||
|
# Filename: package/.../libsndfile/sqlite3.patch
|
||
|
# Copyright (C) 2008 The OpenSDE Project
|
||
|
#
|
||
|
# More information can be found in the files COPYING and README.
|
||
|
#
|
||
|
# This patch file is dual-licensed. It is available under the license the
|
||
|
# patched project is licensed under, as long as it is an OpenSource license
|
||
|
# as defined at http://www.opensource.org/ (e.g. BSD, X11) or under the terms
|
||
|
# of the GNU General Public License as published by the Free Software
|
||
|
# Foundation; either version 2 of the License, or (at your option) any later
|
||
|
# version.
|
||
|
# --- SDE-COPYRIGHT-NOTE-END ---
|
||
|
|
||
|
diff -Nur libsndfile-1.0.17-orig/regtest/Makefile.in libsndfile-1.0.17/regtest/Makefile.in
|
||
|
--- libsndfile-1.0.17-orig/regtest/Makefile.in 2008-04-19 13:38:43.000000000 +0000
|
||
|
+++ libsndfile-1.0.17/regtest/Makefile.in 2008-04-19 13:41:09.000000000 +0000
|
||
|
@@ -144,8 +144,8 @@
|
||
|
SHELL = @SHELL@
|
||
|
SHLIB_VERSION_ARG = @SHLIB_VERSION_ARG@
|
||
|
SIZEOF_SF_COUNT_T = @SIZEOF_SF_COUNT_T@
|
||
|
-SQLITE3_CFLAGS = @SQLITE3_CFLAGS@
|
||
|
-SQLITE3_LIBS = @SQLITE3_LIBS@
|
||
|
+SQLITE3_CFLAGS = $(shell pkg-config sqlite3 --cflags)
|
||
|
+SQLITE3_LIBS = $(shell pkg-config sqlite3 --libs)
|
||
|
STRIP = @STRIP@
|
||
|
TYPEOF_SF_COUNT_T = @TYPEOF_SF_COUNT_T@
|
||
|
VERSION = @VERSION@
|
||
|
|