diff options
author | Maxim Sobolev <sobomax@FreeBSD.org> | 2002-02-12 13:12:30 +0000 |
---|---|---|
committer | Maxim Sobolev <sobomax@FreeBSD.org> | 2002-02-12 13:12:30 +0000 |
commit | da9abcb0d698d72c1757e9a3e78435651e46a9d3 (patch) | |
tree | 9b0913c3948511b06c4d3a3dfcb49473d985aedc /net/linc/files | |
parent | bf1ea36835ce00eb7286ca8c59ef406d482d1d39 (diff) | |
download | ports-da9abcb0d698d72c1757e9a3e78435651e46a9d3.tar.gz ports-da9abcb0d698d72c1757e9a3e78435651e46a9d3.zip |
Notes
Diffstat (limited to 'net/linc/files')
-rw-r--r-- | net/linc/files/patch-Makefile.in | 14 | ||||
-rw-r--r-- | net/linc/files/patch-ltmain.sh | 28 |
2 files changed, 42 insertions, 0 deletions
diff --git a/net/linc/files/patch-Makefile.in b/net/linc/files/patch-Makefile.in new file mode 100644 index 000000000000..f767730af625 --- /dev/null +++ b/net/linc/files/patch-Makefile.in @@ -0,0 +1,14 @@ + +$FreeBSD$ + +--- Makefile.in 2002/02/12 12:58:07 1.1 ++++ Makefile.in 2002/02/12 13:09:12 +@@ -89,7 +89,7 @@ + VERSION = @VERSION@ + WARN_CFLAGS = @WARN_CFLAGS@ + +-SUBDIRS = include src test docs ++SUBDIRS = include src docs + + m4datadir = $(datadir)/aclocal + m4data_DATA = linc.m4 diff --git a/net/linc/files/patch-ltmain.sh b/net/linc/files/patch-ltmain.sh new file mode 100644 index 000000000000..98cb05e4ddb3 --- /dev/null +++ b/net/linc/files/patch-ltmain.sh @@ -0,0 +1,28 @@ + +$FreeBSD$ + +--- ltmain.sh 2001/08/27 09:51:26 1.1 ++++ ltmain.sh 2001/08/27 09:51:42 +@@ -2408,6 +2408,9 @@ + *-*-netbsd*) + # Don't link with libc until the a.out ld.so is fixed. + ;; ++ *-*-freebsd*) ++ # FreeBSD doesn't need this... ++ ;; + *) + # Add libc to deplibs on all other systems if necessary. + if test "$build_libtool_need_lc" = "yes"; then +@@ -4175,10 +4178,12 @@ + fi + + # Install the pseudo-library for information purposes. ++ if /usr/bin/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" |