~ubuntu-branches/ubuntu/oneiric/libapreq2/oneiric

« back to all changes in this revision

Viewing changes to apreq2-config.in

  • Committer: Bazaar Package Importer
  • Author(s): Steinar H. Gunderson
  • Date: 2010-02-28 15:51:47 UTC
  • mfrom: (5.1.2 sid)
  • Revision ID: james.westby@ubuntu.com-20100228155147-dflwg59lhyittzi7
Tags: 2.12-1
* New upstream release.
* Switch to dpkg-source 3.0 (quilt) format.
  * Split the Debian diff into two separate patches, and remove spurious
    junk that shouldn't have been there.
  * In clean, remove some stray files distclean forgets.
* Update debhelper compatibility level to 7.
  * Update debhelper build-dependency version.
  * Use dh_prep instead of dh_clean -k.
* Update Standards-Version to 3.8.4.
  * Change from ${Source-Version} to ${binary:Version} in inter-package
    dependencies.
  * In debian/copyright, refer to the Apache 2.0 license file from
    common-licenses instead of having the entire license text in the file.
    Also include the actual copyright in the file.
* Put all binary packages in their correct respective sections.
* Add ${misc:Depends} to all binary packages, and remove ${shlibs:Depends}
  from the -dev and -doc packages (which don't have any shared libraries).
* Run dh_shlibdeps on all packages, using the -a flag.
* Don't ignore errors on distclean; check for Makefile instead.
* Don't use full path to a2dismod in libapache2-mod-apreq2.postrm.
* Run libapache2-mod-apreq2.postrm script under sh -e, so errors are not
  ignored.
* Install the man pages that used to conflict with libapache-request-perl,
  which is now not in the stable release anymore.
* Don't set PREFIX= at make install time; only set prefix=.
  Seemingly, PREFIX= has no real effect at that point.

Show diffs side-by-side

added added

removed removed

Lines of Context:
20
20
# APR-util script designed to allow easy command line access to APR-util
21
21
# configuration parameters.
22
22
 
 
23
PATH=/bin:/usr/bin:/usr/local/bin
 
24
 
23
25
prefix="/usr"
24
26
exec_prefix="@exec_prefix@"
25
27
bindir="@bindir@"
29
31
LIBS="@APR_LIBS@"
30
32
LDFLAGS="@APR_LDFLAGS@"
31
33
INCLUDES="@APR_INCLUDES@"
32
 
LDFLAGS="@APR_LDFLAGS@"
 
34
SOLARIS=`echo @build_os@ | grep -i solaris`
33
35
 
34
36
APREQ_LIBNAME="@APREQ_LIBNAME@"
35
37
 
213
215
done
214
216
 
215
217
if test -n "$flags"; then
216
 
  echo "$flags"
 
218
    if test -n "$SOLARIS"; then
 
219
        flags=`echo $flags | sed -e 's/-L\([^ ]*\)/-R\1 -L\1/g'`
 
220
    fi
 
221
    echo "$flags"
217
222
fi
218
223
 
219
224
exit 0