globus_common 18.14
Loading...
Searching...
No Matches
globus_l_common_paths.h
1struct globus_l_common_path_lookup_table_s
2{
3 const char * name;
4 const char * path;
5};
6
7static struct globus_l_common_path_lookup_table_s
8globus_l_common_path_lookup_table[] =
9{
10 { "prefix", "/usr" },
11 { "exec_prefix", "${prefix}" },
12 { "sbindir", "${exec_prefix}/sbin" },
13 { "bindir", "${exec_prefix}/bin" },
14 { "libdir", "${prefix}/lib/x86_64-linux-gnu" },
15 { "libexecdir", "/usr/share/globus" },
16 { "includedir", "/usr/include/globus" },
17 { "datarootdir", "${prefix}/share" },
18 { "datadir", "${datarootdir}" },
19 { "mandir", "${prefix}/share/man" },
20 { "sysconfdir", "/etc" },
21 { "sharedstatedir", "${prefix}/com" },
22 { "localstatedir", "/var" },
23 { "perlmoduledir", "/usr/share/perl5" },
24 { NULL, NULL }
25};