Commit c8a15a73 authored by Ben Laurie's avatar Ben Laurie
Browse files

First step in doxygen conversion.


git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@88490 13f79535-47bb-0310-9956-ffa450edef68
parent 1240157e
Loading
Loading
Loading
Loading
+3 −0
Original line number Diff line number Diff line
@@ -51,6 +51,9 @@ docs::
	mkdir -p ./docs/api
	srclib/apr/build/scandoc -isrclib/apr/build/default.pl -p./docs/api/ ./include/*.h

dox::
	$(HOME)/software/unpacked/doxygen-1.2.5/bin/doxygen docs/doxygen.conf

install-htdocs:
	@echo Installing HTML documents
	@test -d $(htdocsdir) || $(MKINSTALLDIRS) $(htdocsdir)

docs/doxygen.conf

0 → 100644
+13 −0
Original line number Diff line number Diff line
PROJECT_NAME=Apache

INPUT=.
RECURSIVE=YES
FILE_PATTERNS=*.h

OUTPUT_DIRECTORY=docs/dox

MACRO_EXPANSION=YES
EXPAND_ONLY_PREDEF=YES
EXPAND_AS_DEFINED=AP_DECLARE

OPTIMIZE_OUTPUT_FOR_C=YES
+129 −165

File changed.

Preview size limit exceeded, changes collapsed.

+11 −0
Original line number Diff line number Diff line
@@ -4,6 +4,11 @@

/* Copyright (c) 1997-2000 University of Cambridge */

/**
 * @file include/pcreposix.h
 * @brief PCRE definitions
 */

#ifndef _PCREPOSIX_H
#define _PCREPOSIX_H

@@ -23,15 +28,21 @@ extern "C" {

/* Options defined by POSIX. */

  /** Ignore case */
#define REG_ICASE     0x01
  /** Don't match newlines with wildcards */
#define REG_NEWLINE   0x02
  /** Don't match BOL */
#define REG_NOTBOL    0x04
  /** Don't match EOL */
#define REG_NOTEOL    0x08

/* These are not used by PCRE, but by defining them we make it easier
to slot PCRE into existing programs that make POSIX calls. */

  /** UNUSED! */
#define REG_EXTENDED  0
  /** UNUSED! */
#define REG_NOSUB     0

/* Error values. Not all these are relevant or used by the wrapper. */