mirror of
https://github.com/libretro/RetroArch
synced 2025-04-01 04:20:27 +00:00
Remove unix_common
This commit is contained in:
parent
17e5e57bed
commit
51a94d6ac7
@ -634,7 +634,6 @@ ifeq ($(HAVE_GL_CONTEXT), 1)
|
|||||||
ifeq ($(HAVE_VULKAN), 1)
|
ifeq ($(HAVE_VULKAN), 1)
|
||||||
OBJ += gfx/drivers_context/wayland_ctx_vulkan.o
|
OBJ += gfx/drivers_context/wayland_ctx_vulkan.o
|
||||||
endif
|
endif
|
||||||
UNIX_COMMON=1
|
|
||||||
endif
|
endif
|
||||||
|
|
||||||
ifeq ($(HAVE_GLES), 1)
|
ifeq ($(HAVE_GLES), 1)
|
||||||
@ -662,11 +661,6 @@ ifeq ($(HAVE_GL_CONTEXT), 1)
|
|||||||
DEFINES += -DHAVE_GLSL
|
DEFINES += -DHAVE_GLSL
|
||||||
endif
|
endif
|
||||||
|
|
||||||
ifeq ($(UNIX_COMMON),1)
|
|
||||||
OBJ += gfx/common/unix_common.o
|
|
||||||
endif
|
|
||||||
|
|
||||||
|
|
||||||
ifeq ($(HAVE_EGL), 1)
|
ifeq ($(HAVE_EGL), 1)
|
||||||
OBJ += gfx/common/egl_common.o
|
OBJ += gfx/common/egl_common.o
|
||||||
endif
|
endif
|
||||||
|
@ -1,28 +0,0 @@
|
|||||||
/* RetroArch - A frontend for libretro.
|
|
||||||
* Copyright (C) 2011-2016 - Daniel De Matteis
|
|
||||||
*
|
|
||||||
* RetroArch is free software: you can redistribute it and/or modify it under the terms
|
|
||||||
* of the GNU General Public License as published by the Free Software Found-
|
|
||||||
* ation, either version 3 of the License, or (at your option) any later version.
|
|
||||||
*
|
|
||||||
* RetroArch is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY;
|
|
||||||
* without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
|
|
||||||
* PURPOSE. See the GNU General Public License for more details.
|
|
||||||
*
|
|
||||||
* You should have received a copy of the GNU General Public License along with RetroArch.
|
|
||||||
* If not, see <http://www.gnu.org/licenses/>.
|
|
||||||
*/
|
|
||||||
|
|
||||||
#include "unix_common.h"
|
|
||||||
|
|
||||||
bool unix_common_ctl(enum unix_common_ctl_state state, void *data)
|
|
||||||
{
|
|
||||||
switch (state)
|
|
||||||
{
|
|
||||||
default:
|
|
||||||
case UNIX_COMMON_NONE:
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
|
|
||||||
return true;
|
|
||||||
}
|
|
@ -1,28 +0,0 @@
|
|||||||
/* RetroArch - A frontend for libretro.
|
|
||||||
* Copyright (C) 2011-2016 - Daniel De Matteis
|
|
||||||
*
|
|
||||||
* RetroArch is free software: you can redistribute it and/or modify it under the terms
|
|
||||||
* of the GNU General Public License as published by the Free Software Found-
|
|
||||||
* ation, either version 3 of the License, or (at your option) any later version.
|
|
||||||
*
|
|
||||||
* RetroArch is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY;
|
|
||||||
* without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
|
|
||||||
* PURPOSE. See the GNU General Public License for more details.
|
|
||||||
*
|
|
||||||
* You should have received a copy of the GNU General Public License along with RetroArch.
|
|
||||||
* If not, see <http://www.gnu.org/licenses/>.
|
|
||||||
*/
|
|
||||||
|
|
||||||
#ifndef _UNIX_COMMON_H
|
|
||||||
#define _UNIX_COMMON_H
|
|
||||||
|
|
||||||
#include <boolean.h>
|
|
||||||
|
|
||||||
enum unix_common_ctl_state
|
|
||||||
{
|
|
||||||
UNIX_COMMON_NONE = 0
|
|
||||||
};
|
|
||||||
|
|
||||||
bool unix_common_ctl(enum unix_common_ctl_state state, void *data);
|
|
||||||
|
|
||||||
#endif
|
|
Loading…
x
Reference in New Issue
Block a user