/usr/include/ace/config-aix-7.h is in libace-dev 6.3.3+dfsg-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 | // -*- C++ -*-
//=============================================================================
/**
* @file config-aix-7.h
*
* This is the config file for AIX 7 and higher.
*
* @author Steve Huston <shuston@riverace.com>
*/
//=============================================================================
#ifndef ACE_CONFIG_AIX_7_H
#define ACE_CONFIG_AIX_7_H
// Diffs from prior AIX versions are related to scandir() arguments.
#include "ace/config-aix-5.x.h"
#ifdef ACE_SCANDIR_CMP_USES_VOIDPTR
# undef ACE_SCANDIR_CMP_USES_VOIDPTR
#endif /* ACE_SCANDIR_CMP_USES_VOIDPTR */
#ifdef ACE_SCANDIR_SEL_LACKS_CONST
# undef ACE_SCANDIR_SEL_LACKS_CONST
#endif /* ACE_SCANDIR_SEL_LACKS_CONST */
#endif /* ACE_CONFIG_AIX_7_H */
|