diff options
| author | Brian Somers <brian@FreeBSD.org> | 1998-06-07 03:54:41 +0000 |
|---|---|---|
| committer | Brian Somers <brian@FreeBSD.org> | 1998-06-07 03:54:41 +0000 |
| commit | c22130cd33cb19c91a2a47cc249053d81fafee38 (patch) | |
| tree | 680f0fda38b96ab88f549d2c3fe1ad32b3705654 | |
| parent | 32b87439699af0ca8497f0d4bad52f9716df2ce8 (diff) | |
Notes
| -rw-r--r-- | usr.sbin/ppp/loadalias.c | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/usr.sbin/ppp/loadalias.c b/usr.sbin/ppp/loadalias.c index f6d306f2ffb0..d29e18638662 100644 --- a/usr.sbin/ppp/loadalias.c +++ b/usr.sbin/ppp/loadalias.c @@ -23,7 +23,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: loadalias.c,v 1.14.2.5 1998/05/01 19:25:01 brian Exp $ + * $Id: loadalias.c,v 1.16 1998/05/21 21:46:19 brian Exp $ */ #include <sys/param.h> @@ -40,7 +40,11 @@ #include "id.h" #include "loadalias.h" +#if __FreeBSD__ >= 3 +#define _PATH_ALIAS_PREFIX "libalias.so.2.5" /* dlopen() searches */ +#else #define _PATH_ALIAS_PREFIX "/usr/lib/libalias.so.2." +#endif #define off(item) ((int)&(((struct aliasHandlers *)0)->item)) #define entry(a) { off(a), "_PacketAlias" #a } |
