diff options
author | sobomax <sobomax@FreeBSD.org> | 2001-07-20 12:01:15 +0000 |
---|---|---|
committer | sobomax <sobomax@FreeBSD.org> | 2001-07-20 12:01:15 +0000 |
commit | 3bffd01fce2b14d2df5ff497044c96800d47db3a (patch) | |
tree | faed1a7c4b02b7fe9029825c97d8f22578b4080c /devel/pkgconfig/files | |
parent | 8419b03ae097e5c366b04dfec03336d24a0c4df9 (diff) | |
download | FreeBSD-ports-3bffd01fce2b14d2df5ff497044c96800d47db3a.zip FreeBSD-ports-3bffd01fce2b14d2df5ff497044c96800d47db3a.tar.gz |
Update to 0.6.0.
Diffstat (limited to 'devel/pkgconfig/files')
-rw-r--r-- | devel/pkgconfig/files/patch-ltmain.sh | 18 | ||||
-rw-r--r-- | devel/pkgconfig/files/patch-pkg.c | 18 |
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 0000000..115ea71 --- /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 0286a5b..3bf9b3f 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); |