~ubuntu-branches/debian/sid/apr/sid

« back to all changes in this revision

Viewing changes to .pc/dont_override_external_buildflags/build/apr_rules.mk.in

  • Committer: Package Import Robot
  • Author(s): Stefan Fritsch
  • Date: 2013-12-30 16:37:54 UTC
  • mfrom: (1.1.13)
  • Revision ID: package-import@ubuntu.com-20131230163754-mn1794cg19jswqqj
Tags: 1.5.0-1
* New upstream version
* Pull changes from upstream 1.5.x branch up to r1552863 to fix problems
  on the FreeBSD 10 kernel with accept4() and non-blocking sockets.

Show diffs side-by-side

added added

removed removed

Lines of Context:
56
56
EXTRA_LIBS=@EXTRA_LIBS@
57
57
EXTRA_INCLUDES=@EXTRA_INCLUDES@
58
58
 
 
59
# CPPFLAGS which are used only while building APR itself
 
60
#
 
61
INTERNAL_CPPFLAGS=@INTERNAL_CPPFLAGS@
 
62
 
59
63
# NOTEST_* are flags and libraries that can be added by the user without
60
64
# causing them to be used in configure tests (necessary for things like
61
65
# -Werror and other strict warnings that maintainers like to use).
71
75
# left-to-right precedence and CPPFLAGS may include user-defined overrides.
72
76
#
73
77
ALL_CFLAGS   = $(EXTRA_CFLAGS) $(NOTEST_CFLAGS) $(CFLAGS)
74
 
ALL_CPPFLAGS = $(DEFS) $(EXTRA_CPPFLAGS) $(NOTEST_CPPFLAGS) $(CPPFLAGS)
 
78
ALL_CPPFLAGS = $(DEFS) $(INTERNAL_CPPFLAGS) $(EXTRA_CPPFLAGS) $(NOTEST_CPPFLAGS) $(CPPFLAGS)
75
79
ALL_LDFLAGS  = $(EXTRA_LDFLAGS) $(NOTEST_LDFLAGS) $(LDFLAGS)
76
80
ALL_LIBS     = $(LIBS) $(NOTEST_LIBS) $(EXTRA_LIBS)
77
81
ALL_INCLUDES = $(INCLUDES) $(EXTRA_INCLUDES)