~ubuntu-branches/debian/squeeze/nginx/squeeze

« back to all changes in this revision

Viewing changes to auto/lib/libgd/conf

  • Committer: Bazaar Package Importer
  • Author(s): Fabio Tranchitella
  • Date: 2009-05-31 18:38:56 UTC
  • mfrom: (1.1.10 upstream) (4.1.12 experimental)
  • Revision ID: james.westby@ubuntu.com-20090531183856-3xhvf6wd0bw5556i
Tags: 0.7.59-1
* New upstream release, first in Debian for the 0.7 branch. Among other
  issues, it also fixes the problem with wildcard dns names used with SSL.
  (Closes: #515904)
* debian/watch: updated.
* debian/postinst: fixed a bashism. (Closes: #507913)
* debian/conf/nginx.conf: removed default_type. (Closes: #509390)
* debian/control: updated Standards-Version to 3.8.1, no changes needed.
* debian/NEWS.Debian: documented the issues with
  server_names_hash_bucket_size. (Closes: #524785)

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
 
 
2
# Copyright (C) Igor Sysoev
 
3
 
 
4
 
 
5
    ngx_feature="GD library"
 
6
    ngx_feature_name=
 
7
    ngx_feature_run=no
 
8
    ngx_feature_incs="#include <gd.h>"
 
9
    ngx_feature_path=
 
10
    ngx_feature_libs="-lgd"
 
11
    ngx_feature_test="gdImagePtr img = gdImageCreateFromGifPtr(1, NULL);"
 
12
    . auto/feature
 
13
 
 
14
 
 
15
if [ $ngx_found = no ]; then
 
16
 
 
17
    # FreeBSD port
 
18
 
 
19
    ngx_feature="GD library in /usr/local/"
 
20
    ngx_feature_path="/usr/local/include"
 
21
 
 
22
    if [ $NGX_RPATH = YES ]; then
 
23
        ngx_feature_libs="-R/usr/local/lib -L/usr/local/lib -lgd"
 
24
    else
 
25
        ngx_feature_libs="-L/usr/local/lib -lgd"
 
26
    fi
 
27
 
 
28
    . auto/feature
 
29
fi
 
30
 
 
31
 
 
32
if [ $ngx_found = no ]; then
 
33
 
 
34
    # NetBSD port
 
35
 
 
36
    ngx_feature="GD library in /usr/pkg/"
 
37
    ngx_feature_path="/usr/pkg/include/"
 
38
 
 
39
    if [ $NGX_RPATH = YES ]; then
 
40
        ngx_feature_libs="-R/usr/pkg/lib -L/usr/pkg/lib -lgd"
 
41
    else
 
42
        ngx_feature_libs="-L/usr/pkg/lib -lgd"
 
43
    fi
 
44
 
 
45
    . auto/feature
 
46
fi
 
47
 
 
48
 
 
49
if [ $ngx_found = no ]; then
 
50
 
 
51
    # MacPorts
 
52
 
 
53
    ngx_feature="GD library in /opt/local/"
 
54
    ngx_feature_path="/opt/local/include"
 
55
 
 
56
    if [ $NGX_RPATH = YES ]; then
 
57
        ngx_feature_libs="-R/opt/local/lib -L/opt/local/lib -lgd"
 
58
    else
 
59
        ngx_feature_libs="-L/opt/local/lib -lgd"
 
60
    fi
 
61
 
 
62
    . auto/feature
 
63
fi
 
64
 
 
65
 
 
66
if [ $ngx_found = yes ]; then
 
67
 
 
68
    CORE_INCS="$CORE_INCS $ngx_feature_path"
 
69
    CORE_LIBS="$CORE_LIBS $ngx_feature_libs"
 
70
 
 
71
else
 
72
 
 
73
cat << END
 
74
 
 
75
$0: error: the HTTP image filter module requires the GD library.
 
76
You can either do not enable the module or install the libraries.
 
77
 
 
78
END
 
79
 
 
80
    exit 1
 
81
 
 
82
fi