Grid Community Toolkit  6.2.1705709074 (tag: v6.2.20240202)
 All Data Structures Files Functions Variables Typedefs Enumerations Enumerator Macros Groups Pages
globus_l_common_paths.h
1 struct globus_l_common_path_lookup_table_s
2 {
3  const char * name;
4  const char * path;
5 };
6 
7 static struct globus_l_common_path_lookup_table_s
8 globus_l_common_path_lookup_table[] =
9 {
10  { "prefix", "/usr/local/globus-6" },
11  { "exec_prefix", "${prefix}" },
12  { "sbindir", "${exec_prefix}/sbin" },
13  { "bindir", "${exec_prefix}/bin" },
14  { "libdir", "${exec_prefix}/lib" },
15  { "libexecdir", "${exec_prefix}/libexec" },
16  { "includedir", "${prefix}/include" },
17  { "datarootdir", "${prefix}/share" },
18  { "datadir", "${datarootdir}" },
19  { "mandir", "${datarootdir}/man" },
20  { "sysconfdir", "${prefix}/etc" },
21  { "sharedstatedir", "${prefix}/com" },
22  { "localstatedir", "${prefix}/var" },
23  { "perlmoduledir", "${libdir}/perl" },
24  { NULL, NULL }
25 };