4 * The contents of this file are subject to the terms of the
5 * Common Development and Distribution License (the "License").
6 * You may not use this file except in compliance with the License.
8 * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
9 * or http://www.opensolaris.org/os/licensing.
10 * See the License for the specific language governing permissions
11 * and limitations under the License.
13 * When distributing Covered Code, include this CDDL HEADER in each
14 * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
15 * If applicable, add the following below this CDDL HEADER, with the
16 * fields enclosed by brackets "[]" replaced with your own identifying
17 * information: Portions Copyright [yyyy] [name of copyright owner]
23 * Copyright (c) 1996, 2010, Oracle and/or its affiliates. All rights reserved.
28 #include <sys/types.h>
31 static const char *token
= ":";
34 build_env_list(Elist
**list
, const char *env
)
40 if ((envstr
= getenv(env
)) == NULL
)
42 envstr
= strdup(envstr
);
43 tok
= strtok_r(envstr
, token
, &lasts
);
46 if ((lp
= (Elist
*)malloc(sizeof (Elist
))) == NULL
) {
47 (void) printf("build_list: malloc failed\n");
50 lp
->l_libname
= strdup(tok
);
53 tok
= strtok_r(NULL
, token
, &lasts
);
60 check_list(Elist
*list
, const char *str
)
68 * Is this a basename or a relative path name
70 if ((basestr
= strrchr(str
, '/')) != NULL
)
76 for (; list
; list
= list
->l_next
) {
77 if (strchr(list
->l_libname
, '/') == NULL
) {
78 if (strcmp(basestr
, list
->l_libname
) == 0)
81 if (strcmp(str
, list
->l_libname
) == 0)
89 checkenv(const char *env
)
92 if ((envstr
= getenv(env
)) == NULL
)
94 while (*envstr
== ' ')