~noskcaj/ubuntu/trusty/gpgme1.0/1.4.3

« back to all changes in this revision

Viewing changes to gpgme/gpgme-config.in

  • Committer: Bazaar Package Importer
  • Author(s): Jose Carlos Garcia Sogo
  • Date: 2008-03-08 14:06:34 UTC
  • mfrom: (1.1.4 upstream)
  • Revision ID: james.westby@ubuntu.com-20080308140634-dom8okim5mdkz22o
Tags: 1.1.6-2
* Bump shlibs info, as this version added some new symbols (Closes: #469534)
* Urgency set to medium, as this package has yet transitioned to lenny.
* debian/control: add Vcs-Browser info 

Show diffs side-by-side

added added

removed removed

Lines of Context:
14
14
includedir=@includedir@
15
15
libdir=@libdir@
16
16
 
 
17
# Network libraries.
 
18
netlibs="@NETLIBS@"
 
19
 
17
20
# Configure libgpg-error.
18
21
gpg_error_cflags="@GPG_ERROR_CFLAGS@"
19
22
gpg_error_libs="@GPG_ERROR_LIBS@"
25
28
libs_pth="@PTH_LDFLAGS@ @PTH_LIBS@"
26
29
cflags_pth="@PTH_CFLAGS@"
27
30
 
 
31
@HAVE_PTHREAD_TRUE@thread_modules="$thread_modules pthread"
 
32
libs_pthread="-lpthread"
 
33
cflags_pthread=""
 
34
 
28
35
# Configure glib.
29
36
libs_glib="@GLIB_LIBS@"
30
37
cflags_glib="@GLIB_CFLAGS@"
44
51
        [--api-version]
45
52
        [--libs]
46
53
        [--cflags]
 
54
        [--get-gpg]
 
55
        [--get-gpgsm]
47
56
EOF
48
57
    exit $1
49
58
}
122
131
                    fi
123
132
                    ;;
124
133
            esac
125
 
            output="$output $gpg_error_libs"
 
134
            output="$output $gpg_error_libs $netlibs"
126
135
            if test "x$with_glib" = "xyes"; then
127
136
                output="$output $glib_cflags"
128
137
            fi
137
146
                usage 1 1>&2
138
147
            fi
139
148
            ;;
 
149
        --get-gpg)
 
150
            output="$output @GPG@"
 
151
            ;;
 
152
        --get-gpgsm)
 
153
            output="$output @GPGSM@"
 
154
            ;;
140
155
        *)
141
156
            usage 1 1>&2
142
157
            ;;