Skip to content

Commit

Permalink
Fix out of tree build broken after r1909334 /
Browse files Browse the repository at this point in the history
r1909335 introducing arch/apr_private_common.h.

Fix provided by yalic.
Backport of r1916659 from 1.8.x.


git-svn-id: https://svn.apache.org/repos/asf/apr/apr/branches/1.7.x@1916660 13f79535-47bb-0310-9956-ffa450edef68
  • Loading branch information
rainerjung committed Mar 30, 2024
1 parent 6079e86 commit 882f9f1
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion configure.in
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ AH_BOTTOM([
/*
* Include common private declarations.
*/
#include "../apr_private_common.h"
#include "arch/apr_private_common.h"
#endif /* APR_PRIVATE_H */
])

Expand Down
2 changes: 1 addition & 1 deletion include/arch/netware/apr_private.h
Original file line number Diff line number Diff line change
Expand Up @@ -199,7 +199,7 @@ void* getStatCache();
/*
* Include common private declarations.
*/
#include "../apr_private_common.h"
#include "arch/apr_private_common.h"

#endif /*APR_PRIVATE_H*/
#endif /*NETWARE*/
2 changes: 1 addition & 1 deletion include/arch/win32/apr_private.h
Original file line number Diff line number Diff line change
Expand Up @@ -169,7 +169,7 @@ APR_DECLARE_DATA int errno;
/*
* Include common private declarations.
*/
#include "../apr_private_common.h"
#include "arch/apr_private_common.h"

#endif /*APR_PRIVATE_H*/
#endif /*WIN32*/

0 comments on commit 882f9f1

Please sign in to comment.