Add Mike Garratt to the list of authors for (at the very least) his contributions...
[metze/wireshark/wip.git] / aclocal-flags
1 #!/bin/sh
2 #
3 # This script returns the flags to be fed to "aclocal" to ensure that
4 # it finds GLib's aclocal macros (we assume GTK+ is installed in the
5 # same place as GLib) and pkg-config's aclocal macros.
6 #
7 # aclocal will search, by default, only in a directory in the same
8 # tree where it was installed - e.g., if installed in "/usr/bin", it'll
9 # search only in "/usr/share/aclocal", and if installed in "/usr/local/bin",
10 # it'll search only in "/usr/local/share/aclocal".
11 #
12 # However, there is no guarantee that GLib, or pkg-config has been installed
13 # there; if either of them hasn't been installed there, aclocal won't find
14 # the autoconf macros for whichever of them wan't, and will complain
15 # bitterly.
16 #
17 # So:
18 #
19 #       if pkg-config is found with a path that ends with "bin/pkg-config",
20 #       and the "share/local" directory under the directory at the path
21 #       that's the part of the pkg-config path preceding "bin/pkg-config"
22 #       isn't the same directory as the directory reported by "aclocal
23 #       --print-ac-dir", we include in our output a "-I" flag with that
24 #       directory as its argument;
25 #
26 #       if the "share/local" directory under the directory reported by
27 #       "pkg-config --variable=prefix glib-2.0" isn't the same directory
28 #       as the directory reported by "aclocal --print-ac-dir", we include
29 #       in our output a "-I" flag with the first of those directories as
30 #       the argument.
31 #
32 # If either of them *is* the same directory as the directory reported by
33 # "aclocal --print-ac-dir", and we supply that "-I" flag, "aclocal" will
34 # look in that directory twice, and get well and truly confused, reporting
35 # a ton of duplicate macro definitions.  This also means that if pkg-config
36 # and Glib are installed with the same prefix, we should only supply one
37 # "-I" flag for both of them.
38 #
39 # $Id$
40 #
41
42 #
43 # OK, where will aclocal look by default?
44 #
45 aclocal_dir=`aclocal --print-ac-dir`
46
47 #
48 # And where do we want to make sure it looks?
49 # Look for pkg-config first.
50 #
51 pkg_config_path=`which pkg-config 2>/dev/null`
52 if [ -z "$pkg_config_path" ]
53 then
54         #
55         # Either we don't have "which" or it didn't find pkg-config.
56         #
57         pkg_config_aclocal_dir=""
58 else
59         #
60         # OK, we found pkg-config; attempt to find the prefix for it, by
61         # stripping off "bin/pkg-config".
62         #
63         pkg_config_prefix=`expr "$pkg_config_path" : '\(.*\)/bin/pkg-config'`
64         if [ -z "$pkg_config_prefix" ]
65         then
66                 #
67                 # Well, we couldn't strip it off, for whatever reason.
68                 #
69                 pkg_config_aclocal_dir=""
70         else
71                 #
72                 # Solaris 11's default pkg-config installation puts
73                 # it in /usr/ccs/bin, but there's no /usr/ccs/share.
74                 # Map /usr/ccs to /usr.
75                 #
76                 if [ "$pkg_config_prefix" = /usr/ccs ]
77                 then
78                         pkg_config_prefix=/usr
79                 fi
80
81                 #
82                 # Now get the path of its aclocal directory.
83                 #
84                 pkg_config_aclocal_dir=$pkg_config_prefix/share/aclocal
85         fi
86 fi
87
88 #
89 # Now see where glib is installed.
90 #
91 glib_prefix=`pkg-config --variable=prefix glib-2.0 2>/dev/null`
92
93 #
94 # Now get the path of its aclocal directory.
95 #
96 if [ -z "$glib_prefix" ]
97 then
98         glib_aclocal_dir=""
99 else
100         glib_aclocal_dir=$glib_prefix/share/aclocal
101 fi
102
103 #
104 # Add our aclocal-fallback to the path.
105 # We write out the -I flag for it, and strip off CR and LF, as we may
106 # be writing more -I options, and we want all the options to be on
107 # one line.
108 #
109 ac_missing_dir=`dirname $0`
110 echo "-I $ac_missing_dir/aclocal-fallback" | tr -d '\012' | tr -d '\015'
111
112 #
113 # If there's no aclocal, aclocal_dir, which is the path where aclocal
114 # searches, will be empty; if we didn't find pkg-config,
115 # pkg_config_aclocal_dir, which is the path where it should search
116 # for pkg-config's macros, will be empty.  Add pkg_config_aclocal_dir only
117 # if both it and aclocal_dir are non-empty and different from each other.
118 #
119 if [ ! -z "$aclocal_dir" -a ! -z "$pkg_config_aclocal_dir" \
120     -a "$aclocal_dir" != "$pkg_config_aclocal_dir" ]
121 then
122         echo " -I $pkg_config_aclocal_dir" | tr -d '\012' | tr -d '\015'
123 fi
124
125 #
126 # If pkg-config doesn't know about glib-2.0, glib_aclocal_dir will be
127 # empty.  (Should we just fail in that case?  Does that mean we don't
128 # have GLib installed?)
129 #
130 # Add glib_aclocal_dir only if both it and aclocal_dir are non-empty and
131 # different from each other *and* pkg_config_aclocal_dir is different from
132 # glib_aclocal_dir.  (We don't need to check whether pkg_config_aclocal_dir
133 # is empty; if it is, then either glib_aclocal_dir is also empty, in which
134 # case we'll bail out before even looking at pkg_config_aclocal_dir, or
135 # it's non-empty, in which case it obviously won't be equal to
136 # pkg_config_aclocal_dir.)
137 #
138 if [ ! -z "$aclocal_dir" -a ! -z "$glib_aclocal_dir" \
139     -a "$aclocal_dir" != "$glib_aclocal_dir" \
140     -a "$pkg_config_aclocal_dir" != "$glib_aclocal_dir" ]
141 then
142         echo " -I $glib_aclocal_dir" | tr -d '\012' | tr -d '\015'
143 fi
144
145 #
146 # Put out the final line ending.
147 #
148 echo
149 exit 0