summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorrbb <rbb@13f79535-47bb-0310-9956-ffa450edef68>1999-12-03 16:12:27 +0000
committerrbb <rbb@13f79535-47bb-0310-9956-ffa450edef68>1999-12-03 16:12:27 +0000
commit7b26f0f33b6f80d4449e415e4f5ac3d0c5ff4c3f (patch)
treeec02d2826b837c3f93239bf45becbc974ba1a6e1
parente25a953d65012b5c7c05f4d25b0ded43b82c1f65 (diff)
downloadlibapr-7b26f0f33b6f80d4449e415e4f5ac3d0c5ff4c3f.tar.gz
Programs that build using APR no longer have access to the HAVE_FOO_H
defines. This was causing errors in these two test programs. Fixed now. git-svn-id: http://svn.apache.org/repos/asf/apr/apr/trunk@59502 13f79535-47bb-0310-9956-ffa450edef68
-rw-r--r--test/ab_apr.c6
-rw-r--r--test/htdigest.c6
2 files changed, 0 insertions, 12 deletions
diff --git a/test/ab_apr.c b/test/ab_apr.c
index 470979417..140835b8a 100644
--- a/test/ab_apr.c
+++ b/test/ab_apr.c
@@ -107,15 +107,9 @@
#include "apr_file_io.h"
#include "apr_time.h"
#include "apr_getopt.h"
-#ifdef HAVE_STRING_H
#include <string.h>
-#endif
-#ifdef HAVE_STDIO_H
#include <stdio.h>
-#endif
-#ifdef HAVE_STDLIB_H
#include <stdlib.h>
-#endif
/* ------------------- DEFINITIONS -------------------------- */
/* maximum number of requests on a time limited test */
diff --git a/test/htdigest.c b/test/htdigest.c
index 370bf9be2..a9dda5c6c 100644
--- a/test/htdigest.c
+++ b/test/htdigest.c
@@ -69,15 +69,9 @@
#include "apr_lib.h"
#include "apr_md5.h"
#include <sys/types.h>
-#ifdef HAVE_SYS_SIGNAL_H
#include <sys/signal.h>
-#else
#include <signal.h>
-#endif
-
-#ifdef HAVE_STDLIB_H
#include <stdlib.h>
-#endif
#ifdef WIN32
#include <conio.h>