aboutsummaryrefslogtreecommitdiff
path: root/devel/pkgconfig/files
diff options
context:
space:
mode:
authorMaxim Sobolev <sobomax@FreeBSD.org>2001-07-20 12:01:15 +0000
committerMaxim Sobolev <sobomax@FreeBSD.org>2001-07-20 12:01:15 +0000
commit1611217d1f14868e23a8d51175d8ebec574ea32e (patch)
treeb5f3c135ee04e5338bbb23214aab48c9dac0d4f9 /devel/pkgconfig/files
parent78e2e0308ee4e53fb2d52141467647b5b4e84f98 (diff)
downloadports-1611217d1f14868e23a8d51175d8ebec574ea32e.tar.gz
ports-1611217d1f14868e23a8d51175d8ebec574ea32e.zip
Notes
Diffstat (limited to 'devel/pkgconfig/files')
-rw-r--r--devel/pkgconfig/files/patch-ltmain.sh18
-rw-r--r--devel/pkgconfig/files/patch-pkg.c18
2 files changed, 26 insertions, 10 deletions
diff --git a/devel/pkgconfig/files/patch-ltmain.sh b/devel/pkgconfig/files/patch-ltmain.sh
new file mode 100644
index 000000000000..115ea71625a1
--- /dev/null
+++ b/devel/pkgconfig/files/patch-ltmain.sh
@@ -0,0 +1,18 @@
+
+$FreeBSD$
+
+--- ltmain.sh 2001/07/11 11:45:26 1.1
++++ ltmain.sh 2001/07/11 11:45:42
+@@ -4175,10 +4175,12 @@
+ fi
+
+ # Install the pseudo-library for information purposes.
++ if 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"
diff --git a/devel/pkgconfig/files/patch-pkg.c b/devel/pkgconfig/files/patch-pkg.c
index 0286a5b739de..3bf9b3f766bf 100644
--- a/devel/pkgconfig/files/patch-pkg.c
+++ b/devel/pkgconfig/files/patch-pkg.c
@@ -1,9 +1,9 @@
$FreeBSD$
---- pkg.c.orig Wed Jan 3 11:34:49 2001
-+++ pkg.c Tue May 15 11:48:04 2001
-@@ -40,7 +40,7 @@
+--- pkg.c.orig Mon May 28 16:02:53 2001
++++ pkg.c Wed Jul 11 14:42:22 2001
+@@ -71,7 +71,7 @@
* locations, ignoring duplicates
*/
static void
@@ -12,19 +12,17 @@ $FreeBSD$
{
DIR *dir = opendir (dirname);
struct dirent *dent;
-@@ -51,8 +51,9 @@
+@@ -82,7 +82,8 @@
if (!dir)
{
-- fprintf (stderr, "Warning: cannot open directory '%s' in package search path: %s\n",
-- dirname, g_strerror (errno));
+- debug_spew ("Cannot open directory '%s' in package search path: %s\n",
+ if (!quiet)
-+ fprintf (stderr, "Warning: cannot open directory '%s' in package search path: %s\n",
-+ dirname, g_strerror (errno));
++ debug_spew ("Cannot open directory '%s' in package search path: %s\n",
+ dirname, g_strerror (errno));
return;
}
-
-@@ -96,7 +97,9 @@
+@@ -141,7 +142,9 @@
locations = g_hash_table_new (g_str_hash, g_str_equal);
g_slist_foreach (search_dirs, (GFunc)scan_dir, NULL);