File: configure

package info (click to toggle)
libkqueue 0.9.2-2
  • links: PTS
  • area: main
  • in suites: squeeze
  • size: 508 kB
  • ctags: 614
  • sloc: ansic: 5,418; sh: 258; makefile: 202; perl: 22
file content (301 lines) | stat: -rwxr-xr-x 6,992 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
#!/bin/sh

c_exports="program version target cflags"

make_exports="program version target \
              prefix libdir includedir mandir \
              cflags ldflags ldadd libdepends \
              sources objs deps mans headers extra_dist subdirs \
              abi_major abi_minor abi_version \
              cc cpp ld ln ar install diff"

required_headers=
optional_headers=

pre_configure_hook() {
    return
}

post_configure_hook() {
    return
}

export_to_make() {
  for id in $*
  do

    # Prepend $DESTDIR to installation directories
    case "$id" in
        prefix|libdir|includedir|mandir)  
        eval "$id=\"\\\$\\\$DESTDIR\$$id\""
    esac

    uc_id=`echo $id | $tr '[:lower:]' '[:upper:]'`;
    eval "echo \"$uc_id=\"\$$id\"\" >> config.mk"
  done
}

export_to_c() {
  for id in $*
  do
    uc_id=`echo $id | $tr '[:lower:]' '[:upper:]'`;
    eval "echo \"#define $uc_id \\\"\$$id\\\"\" >> config.h"
  done
}

finalize() {
  uc_id=`echo \"$1\" | $tr '[:lower:]' '[:upper:]'`;
  eval "if [ \"\$$1\" = \"\" ] ; then $1=\"$2\" ; fi"
}

process_argv() {
    for arg in $*
    do
        id=`echo "$arg" | sed 's/=.*//; s/^--//;'`
        val=`echo "$arg" | sed 's/^.*=//'`
        if [ "$val" = "" ] ; then val=1 ; fi
        eval "$id=\"$val\"" 
    done
}

process_env() {
    test -n "$CC" && cc="$CC"
    test -n "$CPP" && cpp="$CPP"
    test -n "$CPPFLAGS" && cppflags="$CPPFLAGS"
    test -n "$CFLAGS" && cflags="$CFLAGS"
    test -n "$LD" && ld="$LD"
    test -n "$LN" && ld="$LN"
    test -n "$LDFLAGS" && ldflags="$LDFLAGS"
    test -n "$AR" && ar="$AR"
}
 
check_header() {	 
   sym=`echo "have_$1" | sed 's,[./],_,g'`	 
   uc_sym=`echo "$sym" | $tr '[:lower:]' '[:upper:]'`;
   path=$1

   printf "checking for $path.. "
   if [ -f "/usr/include/$path" ] ; then
     echo "yes"
     echo "#define $uc_sym 1" >> config.h
     eval "$sym=yes"
     return 0
   else  
     echo "no"
     echo "#undef $uc_sym" >> config.h
     eval "$sym=no"
     return 1
   fi
}

check_headers() {	 
   for header in $*
   do
       check_header "$header"
   done
}

check_symbol() {
    header=$1
    symbol=$2

    uc_symbol=`echo "HAVE_$symbol" | $tr '[:lower:]' '[:upper:]' | sed 's,[./],_,g'`
    lc_symbol=`echo "have_$symbol" | $tr '[:upper:]' '[:lower:]' | sed 's,[./],_,g'`

    if [ -f "$header" ] ; then
        path="$header"
    elif [ -f "/usr/include/$header" ] ; then
        path="/usr/include/$header"
    else
        echo "*** ERROR: Cannot find <$header>"
        exit 1
    fi
     
    printf "checking $header for $symbol.. "    
    if [ "`grep $symbol $path`" != "" ] ; then
     eval "$lc_symbol=yes"
     echo "#define $uc_symbol 1" >> config.h
     echo "yes"
     return 0
    else
     eval "$lc_symbol=no"
     echo "no"
     echo "#undef $uc_symbol" >> config.h
     return 1
    fi
}

check_install() {
    printf "checking for a BSD-compatible install.. "
    if [ "`uname -s`" = "SunOS" ] ; then
        default_install=/usr/ucb/install
    else
        default_install=/usr/bin/install
    fi
    finalize install "$default_install"
    echo "$install"
}

check_target() {
    printf "checking operating system type.. "
    default_target=`uname -s | $tr '[:upper:]' '[:lower:]'`
    if [ "$default_target" = "sunos" ] ; then
       default_target="solaris"
    fi
    finalize target "$default_target"
    echo "$target"
}

check_compiler() {
    printf "checking for a C compiler.. "
    if [ "`uname -s`" = "SunOS" ] ; then
       default_cc="/usr/sfw/bin/gcc"
    else
       default_cc="/usr/bin/cc"
    fi
    finalize cc "$default_cc"
    echo "$cc"
}

check_linker() {
    printf "checking for a suitable linker.. "

    # Workaround for "hidden symbol <foo> is referenced by DSO" linker error
    # seen when compiling libdispatch.
    # Appears to be a problem with GCC 4.0 and binutils
    #
    default_ld="$cc"
    ldflags="-shared -o $program.so.$abi_major.$abi_minor $ldflags"

    # FIXME: port to solaris
    if [ "$target" = "linux" ] ; then
    ldflags="$ldflags -Wl,-export-dynamic -Wl,-soname,$program.so.$abi_major"
    fi 

    if [ "$target" = "solaris" ] ; then
    ldflags="$ldflags"
    fi

    finalize ld "$default_ld"
    echo "$ld"
}

check_archiver() {
    printf "checking for a suitable archiver.. "
    if [ "`uname -s`" = "SunOS" ] ; then
       default_ar="/usr/sfw/bin/gar"
    else
       default_ar="/usr/bin/ar"
    fi
    finalize ar "$default_ar"
    echo "$ar"
}

err() {
    echo "*** ERROR *** $*"
    rm -f config.mk $program.pc config.h
    exit 1
}

check_diff() {
    # TODO: Support non-GNU diff syntax
    # TODO: Search for the command
    printf "checking for a suitable diff(1) command.. "
    finalize diff "diff -ruN -dEbwBp -x .svn -x .o -x config.h -x config.mk"
    echo "found"
}

subst_vars() {
  outfile=$1

  if [ ! -f "${outfile}.in" ] ; then
      return
  fi

  echo "Creating $outfile"
  rm -f $outfile
  sed -e "
       s,@@PROGRAM@@,$program,g;
       s,@@VERSION@@,$version,g;
       s,@@PREFIX@@,$prefix,g;
       s,@@LIBDIR@@,$libdir,g;
       s,@@INCLUDEDIR@@,$includedir,g;
       s,@@MANDIR@@,$mandir,g;
       s,@@LIBDEPENDS@@,$libdepends,g;
       s,@@PKG_SUMMARY@@,$pkg_summary,g;
       s,@@PKG_DESCRIPTION@@,$pkg_description,g;
       s,@@LICENSE@@,$license,g;
       s,@@AUTHOR@@,$author,g;
       " < ${outfile}.in > $outfile
  chmod 400 $outfile
}

#######################################################################
#
#                           MAIN()
#
#######################################################################

# Workaround for Solaris "Bad string" issue when LOCALE is undefined
tr="/usr/bin/tr"
test -f /usr/xpg4/bin/tr && tr="/usr/xpg4/bin/tr"

. ./config.inc

# Initialize the output files
#
for output_file in config.mk $program.pc
do
   rm -f $output_file
   echo "# AUTOMATICALLY GENERATED -- DO NOT EDIT" > $output_file
done
rm -f config.h
echo "/* AUTOMATICALLY GENERATED -- DO NOT EDIT */" > config.h

process_argv "$*"
process_env

check_target
check_compiler
check_linker
check_archiver
check_install
check_diff

finalize program    "$program"
finalize version    "$version"
finalize abi_major  "$abi_major"
finalize abi_minor  "$abi_minor"
finalize abi_version "$abi_major.$abi_minor"
finalize prefix     "/usr/local"
finalize libdir     "${prefix}/lib"
finalize includedir "${prefix}/include"
finalize mandir     "${prefix}/share/man"
finalize cflags     "$cflags"
finalize libdepends "$libdepends"
finalize ldadd      ""
finalize ldflags    ""
finalize deps       ""
finalize ln         "`which ln`"

pre_configure_hook

for header in $required_headers
do
  check_header "$header" || err "$header is required, but cannot be found."
done
check_headers $optional_headers

post_configure_hook

objs="`echo \"$sources\" | sed 's/\.c/\.o/g'`"

subst_vars "$program.pc"
subst_vars "$program.la"
subst_vars "rpm.spec"

echo "Creating config.h"
export_to_c $c_exports

echo "Creating config.mk"
export_to_make "$make_exports"