make_libdeps.sh (6a068746777241722b2b32c5d0bc443a2a64d80b) | make_libdeps.sh (e51c53f36624e6f0f34469092c03d2f68a7a51f0) |
---|---|
1#!/bin/sh -e 2# 3# Copyright (c) 2002 Ruslan Ermilov, The FreeBSD Project 4# All rights reserved. 5# 6# Redistribution and use in source and binary forms, with or without 7# modification, are permitted provided that the following conditions 8# are met: --- 33 unchanged lines hidden (view full) --- 42 43# This sed(1) filter is used to convert -lfoo to path/to/libfoo. 44# 45SED_FILTER=" 46sed -E 47 -e's; ;! ;g' 48 -e's;$;!;' 49 -e's;-lbsdxml!;lib/libexpat;g' | 1#!/bin/sh -e 2# 3# Copyright (c) 2002 Ruslan Ermilov, The FreeBSD Project 4# All rights reserved. 5# 6# Redistribution and use in source and binary forms, with or without 7# modification, are permitted provided that the following conditions 8# are met: --- 33 unchanged lines hidden (view full) --- 42 43# This sed(1) filter is used to convert -lfoo to path/to/libfoo. 44# 45SED_FILTER=" 46sed -E 47 -e's; ;! ;g' 48 -e's;$;!;' 49 -e's;-lbsdxml!;lib/libexpat;g' |
50 -e's;-lbsdyml!;lib/libyaml;g' |
|
50 -e's;-lpthread!;lib/libthr;g' 51 -e's;-lm!;lib/msun;g' 52 -e's;-l(ncurses|termcap)!;lib/ncurses/ncurses;g' 53 -e's;-l(gcc)!;gnu/lib/lib\1;g' 54 -e's;-lssp_nonshared!;gnu/lib/libssp/libssp_nonshared;g' 55 -e's;-l(asn1|hdb|kdc|heimbase|heimntlm|heimsqlite|hx509|krb5|roken|wind)!;kerberos5/lib/lib\1;g' 56 -e's;-l(crypto|ssh|ssl)!;secure/lib/lib\1;g' 57 -e's;-l([^!]+)!;lib/lib\1;g' --- 62 unchanged lines hidden --- | 51 -e's;-lpthread!;lib/libthr;g' 52 -e's;-lm!;lib/msun;g' 53 -e's;-l(ncurses|termcap)!;lib/ncurses/ncurses;g' 54 -e's;-l(gcc)!;gnu/lib/lib\1;g' 55 -e's;-lssp_nonshared!;gnu/lib/libssp/libssp_nonshared;g' 56 -e's;-l(asn1|hdb|kdc|heimbase|heimntlm|heimsqlite|hx509|krb5|roken|wind)!;kerberos5/lib/lib\1;g' 57 -e's;-l(crypto|ssh|ssl)!;secure/lib/lib\1;g' 58 -e's;-l([^!]+)!;lib/lib\1;g' --- 62 unchanged lines hidden --- |