Codebase list esniper / debian/2.19.0-1
Import Debian patch 2.19.0-1 Dima Barsky 7 years ago
6 changed file(s) with 24 addition(s) and 5 deletion(s). Raw diff Collapse all Expand all
0 2003-04-03
0 2008-08-04
1 * 2.19.0 released
2 * Fixed bug 2036585: enable cookies
3
4 2008-04-03
5 * 2.18.1 released
16 * Fixed bug 1932457: Configure fails due to wrong curl LDFLAGS
27
3 2003-04-02
8 2008-04-02
9 * 2.18.0 released
410 * Fixed bug 1932025: Can't convert price.
511 * Fixed bug 1930772: Can't convert price.
612
15641564
15651565 # Define the identity of the package.
15661566 PACKAGE=esniper
1567 VERSION=2.18.1
1567 VERSION=2.19.0
15681568
15691569
15701570 cat >>confdefs.h <<_ACEOF
28952895 CURLLDFLAGS=`$CURL_CONFIG --libs`
28962896
28972897
2898 CFLAGS="$CURLCFLAGS $CFLAGS"
28982899 LDFLAGS="$CURLLDFLAGS $LDFLAGS"
28992900
29002901 check_min=7.1.1
00 AC_INIT(esniper.c)
1 AM_INIT_AUTOMAKE(esniper,2.18.1)
1 AM_INIT_AUTOMAKE(esniper,2.19.0)
22 AC_PROG_CC
33 AC_PROG_MAKE_SET
44
2020 CURLLDFLAGS=`$CURL_CONFIG --libs`
2121 AC_SUBST(CURLCFLAGS)
2222 AC_SUBST(CURLLDFLAGS)
23 CFLAGS="$CURLCFLAGS $CFLAGS"
2324 LDFLAGS="$CURLLDFLAGS $LDFLAGS"
2425
2526 dnl check version curl_easy were added in 7.1.1
0 esniper (2.19.0-1) unstable; urgency=low
1
2 * New upstream release
3
4 -- Dima Barsky <dima@debian.org> Tue, 05 Aug 2008 13:01:43 +0100
5
06 esniper (2.18.1-1) unstable; urgency=low
17
28 * New upstream release
22 Priority: extra
33 Maintainer: Dima Barsky <dima@debian.org>
44 Build-Depends: debhelper (>= 5), autotools-dev, libcurl4-openssl-dev (>= 7.16.2-3), comerr-dev (>= 1.33), libidn11-dev (>= 0.5.18), libssl-dev (>= 0.9.8c), libkrb5-dev (>= 1.4.2), zlib1g-dev (>= 1:1.2.1)
5 Standards-Version: 3.7.3
5 Standards-Version: 3.8.0
66
77 Package: esniper
88 Architecture: any
225225 /* some servers don't like requests that are made without a user-agent
226226 * field, so we provide one */
227227 if ((curlrc = curl_easy_setopt(easyhandle, CURLOPT_USERAGENT, "Mozilla/4.7 [en] (X11; U; Linux 2.2.12 i686)")))
228 return initCurlStuffFailed();
229
230 /* some servers don't like requests that are made without a user-agent
231 * field, so we provide one */
232 if ((curlrc = curl_easy_setopt(easyhandle, CURLOPT_COOKIEFILE, "")))
228233 return initCurlStuffFailed();
229234
230235 slist = curl_slist_append(slist, "Accept: text/*");