Compare commits
2 Commits
master
...
wip_deprec
Author | SHA1 | Date | |
---|---|---|---|
|
0cef930451 | ||
|
b4502bb6ff |
|
@ -84,6 +84,12 @@ typedef struct _NewClientRec *NewClientPtr;
|
|||
#include <stdio.h>
|
||||
#include <stdarg.h>
|
||||
|
||||
#ifdef _INSIDE_XSERVER
|
||||
#define _X_XSERVER_INTERNAL(msg)
|
||||
#else
|
||||
#define _X_XSERVER_INTERNAL(msg) _X_DEPRECATED_MSG(msg)
|
||||
#endif
|
||||
|
||||
extern _X_EXPORT int ReadRequestFromClient(ClientPtr /*client */ );
|
||||
|
||||
extern _X_EXPORT int ReadFdFromClient(ClientPtr client);
|
||||
|
|
|
@ -548,8 +548,8 @@ typedef struct _Screen {
|
|||
|
||||
/* Pixmap procedures */
|
||||
|
||||
CreatePixmapProcPtr CreatePixmap;
|
||||
DestroyPixmapProcPtr DestroyPixmap;
|
||||
_X_XSERVER_INTERNAL("") CreatePixmapProcPtr CreatePixmap;
|
||||
_X_XSERVER_INTERNAL("use dixDestroyPixmap()") DestroyPixmapProcPtr DestroyPixmap;
|
||||
|
||||
/* Font procedures */
|
||||
|
||||
|
|
|
@ -9,6 +9,8 @@ project('xserver', 'c',
|
|||
release_date = '2021-07-05'
|
||||
|
||||
add_project_arguments('-DHAVE_DIX_CONFIG_H', language: ['c', 'objc'])
|
||||
add_project_arguments('-D_INSIDE_XSERVER', language: ['c', 'objc'])
|
||||
|
||||
cc = meson.get_compiler('c')
|
||||
|
||||
add_project_arguments('-fno-strict-aliasing', language : 'c')
|
||||
|
|
Loading…
Reference in New Issue