~ubuntu-branches/ubuntu/intrepid/apache2/intrepid

« back to all changes in this revision

Viewing changes to srclib/apr-util/test/Makefile.in

  • Committer: Bazaar Package Importer
  • Author(s): Stefan Fritsch
  • Date: 2007-10-18 19:35:40 UTC
  • mfrom: (0.13.2 upstream)
  • Revision ID: james.westby@ubuntu.com-20071018193540-u9bl0154m45xppyj
Tags: 2.2.6-2
* Avoid calling apr_pollset_poll() and accept_func() when the listening
  sockets have already been closed on graceful stop or reload. This
  hopefully fixes processes not being killed (closes: #445263, #447164)
  and the "Bad file descriptor: apr_socket_accept: (client socket)"
  error message (closes: #400918, #443310)
* Allow logresolve to process long lines (Closes: #331631)
* Remove duplicate config examples (Closes: #294662)
* Include README.backtrace describing how to create a backtrace
* Add CVE reference to 2.2.6-1 changelog entry

Show diffs side-by-side

added added

removed removed

Lines of Context:
21
21
 
22
22
check: $(PROGRAMS)
23
23
        for prog in $(PROGRAMS); do \
24
 
                ./$$prog ;\
25
 
                if test $$? = 255; then \
26
 
                        echo "$$prog failed"; \
27
 
                        break; \
 
24
                if test "$$prog" = 'dbd'; then \
 
25
                        for driver in sqlite2 sqlite3; do \
 
26
                                ./$$prog $$driver; \
 
27
                                if test $$? = 255; then \
 
28
                                        echo "$$prog $$driver failed"; \
 
29
                                        break; \
 
30
                                fi; \
 
31
                        done; \
 
32
                else \
 
33
                        ./$$prog; \
 
34
                        if test $$? = 255; then \
 
35
                                echo "$$prog failed"; \
 
36
                                break; \
 
37
                        fi; \
28
38
                fi; \
29
39
        done
30
40