xfree86: xf86Option: unexport xf86OptionListReport()
Not used by any external drivers, so no need to keep it exported. Signed-off-by: Enrico Weigelt, metux IT consult <info@metux.net>
This commit is contained in:
parent
167cefbec4
commit
2d12c1285f
|
@ -102,7 +102,6 @@ extern _X_EXPORT XF86OptionPtr xf86OptionListDuplicate(XF86OptionPtr list);
|
|||
extern _X_EXPORT void xf86OptionListFree(XF86OptionPtr opt);
|
||||
extern _X_EXPORT char *xf86OptionName(XF86OptionPtr opt);
|
||||
extern _X_EXPORT char *xf86OptionValue(XF86OptionPtr opt);
|
||||
extern _X_EXPORT void xf86OptionListReport(XF86OptionPtr parm);
|
||||
extern _X_EXPORT XF86OptionPtr xf86FindOption(XF86OptionPtr options,
|
||||
const char *name);
|
||||
extern _X_EXPORT const char *xf86FindOptionValue(XF86OptionPtr options,
|
||||
|
|
|
@ -0,0 +1,12 @@
|
|||
/* SPDX-License-Identifier: MIT OR X11
|
||||
*
|
||||
* Copyright © 2024 Enrico Weigelt, metux IT consult <info@metux.net>
|
||||
*/
|
||||
#ifndef _XORG_XF86OPTION_PRIV_H
|
||||
#define _XORG_XF86OPTION_PRIV_H
|
||||
|
||||
#include "xf86Opt.h"
|
||||
|
||||
void xf86OptionListReport(XF86OptionPtr parm);
|
||||
|
||||
#endif /* _XORG_XF86OPTION_PRIV_H */
|
|
@ -40,7 +40,7 @@
|
|||
#include <X11/X.h>
|
||||
#include "os.h"
|
||||
#include "xf86.h"
|
||||
#include "xf86Opt.h"
|
||||
#include "xf86Opt_priv.h"
|
||||
#include "xf86Xinput.h"
|
||||
#include "xf86Optrec.h"
|
||||
#include "xf86Parser.h"
|
||||
|
|
|
@ -77,6 +77,7 @@
|
|||
#include "inpututils.h"
|
||||
#include "optionstr.h"
|
||||
#include "xf86Module_priv.h"
|
||||
#include "xf86Opt_priv.h"
|
||||
|
||||
#ifdef HAVE_FNMATCH_H
|
||||
#include <fnmatch.h>
|
||||
|
|
Loading…
Reference in New Issue