xserver Android.mk

This commit is contained in:
2018-01-26 17:22:05 +08:00
parent 8f93398de0
commit baebf47e30
28 changed files with 3035 additions and 166 deletions

View File

@@ -1,11 +0,0 @@
LOCAL_PATH := $(call my-dir)
include $(CLEAR_VARS)
LOCAL_MODULE := application
LOCAL_SRC_FILES := $(LOCAL_PATH)/libapplication.so
include $(PREBUILT_SHARED_LIBRARY)

View File

@@ -1,4 +1,60 @@
LOCAL_PATH := $(call my-dir)
include $(CLEAR_VARS)
include $(LOCAL_PATH)/pixman/Android.mk
#LOCAL_SDK_VERSION := 14
LOCAL_MODULE := pixman-1
LOCAL_C_INCLUDES := \
$(LOCAL_PATH) \
$(LOCAL_PATH)/pixman \
LOCAL_CFLAGS := -DHAVE_CONFIG_H
LOCAL_SRC_FILES := \
pixman/pixman.c \
pixman/pixman-access.c \
pixman/pixman-access-accessors.c \
pixman/pixman-arm.c \
pixman/pixman-arm-neon.c \
pixman/pixman-arm-neon-asm.S \
pixman/pixman-arm-neon-asm-bilinear.S \
pixman/pixman-arm-simd.c \
pixman/pixman-arm-simd-asm.S \
pixman/pixman-arm-simd-asm-scaled.S \
pixman/pixman-bits-image.c \
pixman/pixman-combine32.c \
pixman/pixman-combine-float.c \
pixman/pixman-conical-gradient.c \
pixman/pixman-edge.c \
pixman/pixman-edge-accessors.c \
pixman/pixman-fast-path.c \
pixman/pixman-filter.c \
pixman/pixman-general.c \
pixman/pixman-glyph.c \
pixman/pixman-gradient-walker.c \
pixman/pixman-image.c \
pixman/pixman-implementation.c \
pixman/pixman-linear-gradient.c \
pixman/pixman-matrix.c \
pixman/pixman-mips.c \
pixman/pixman-noop.c \
pixman/pixman-ppc.c \
pixman/pixman-radial-gradient.c \
pixman/pixman-region16.c \
pixman/pixman-region32.c \
pixman/pixman-solid-fill.c \
pixman/pixman-timer.c \
pixman/pixman-trap.c \
pixman/pixman-utils.c \
pixman/pixman-x86.c \
LOCAL_STATIC_LIBRARIES := cpufeatures
LOCAL_LDLIBS := -llog -lc -lm -ldl -lz
include $(BUILD_SHARED_LIBRARY)
$(call import-module,android/cpufeatures)

View File

@@ -0,0 +1,174 @@
/* config.h. Generated from config.h.in by configure. */
/* config.h.in. Generated from configure.ac by autoheader. */
/* Define if building universal (internal helper macro) */
/* #undef AC_APPLE_UNIVERSAL_BUILD */
/* Whether we have alarm() */
#define HAVE_ALARM 1
/* Define to 1 if you have the <dlfcn.h> header file. */
#define HAVE_DLFCN_H 1
/* Whether we have feenableexcept() */
/* #undef HAVE_FEENABLEEXCEPT */
/* Define to 1 if we have <fenv.h> */
#define HAVE_FENV_H 1
/* Whether the tool chain supports __float128 */
/* #undef HAVE_FLOAT128 */
/* Define to 1 if you have the `getisax' function. */
/* #undef HAVE_GETISAX */
/* Whether we have getpagesize() */
/* #undef HAVE_GETPAGESIZE */
/* Whether we have gettimeofday() */
#define HAVE_GETTIMEOFDAY 1
/* Define to 1 if you have the <inttypes.h> header file. */
#define HAVE_INTTYPES_H 1
/* Define to 1 if you have the `pixman-1' library (-lpixman-1). */
/* #undef HAVE_LIBPIXMAN_1 */
/* Whether we have libpng */
#define HAVE_LIBPNG 1
/* Define to 1 if you have the <memory.h> header file. */
#define HAVE_MEMORY_H 1
/* Whether we have mmap() */
#define HAVE_MMAP 1
/* Whether we have mprotect() */
#define HAVE_MPROTECT 1
/* Whether we have posix_memalign() */
/* #undef HAVE_POSIX_MEMALIGN */
/* Whether pthread_setspecific() is supported */
/* #undef HAVE_PTHREAD_SETSPECIFIC */
/* Whether we have sigaction() */
#define HAVE_SIGACTION 1
/* Define to 1 if you have the <stdint.h> header file. */
#define HAVE_STDINT_H 1
/* Define to 1 if you have the <stdlib.h> header file. */
#define HAVE_STDLIB_H 1
/* Define to 1 if you have the <strings.h> header file. */
#define HAVE_STRINGS_H 1
/* Define to 1 if you have the <string.h> header file. */
#define HAVE_STRING_H 1
/* Define to 1 if we have <sys/mman.h> */
#define HAVE_SYS_MMAN_H 1
/* Define to 1 if you have the <sys/stat.h> header file. */
#define HAVE_SYS_STAT_H 1
/* Define to 1 if you have the <sys/types.h> header file. */
#define HAVE_SYS_TYPES_H 1
/* Define to 1 if you have the <unistd.h> header file. */
#define HAVE_UNISTD_H 1
/* Define to the sub-directory in which libtool stores uninstalled libraries.
*/
#define LT_OBJDIR ".libs/"
/* Name of package */
#define PACKAGE "pixman"
/* Define to the address where bug reports for this package should be sent. */
#define PACKAGE_BUGREPORT "pixman@lists.freedesktop.org"
/* Define to the full name of this package. */
#define PACKAGE_NAME "pixman"
/* Define to the full name and version of this package. */
#define PACKAGE_STRING "pixman 0.30.2"
/* Define to the one symbol short name of this package. */
#define PACKAGE_TARNAME "pixman"
/* Define to the home page for this package. */
#define PACKAGE_URL ""
/* Define to the version of this package. */
#define PACKAGE_VERSION "0.30.2"
/* enable TIMER_BEGIN/TIMER_END macros */
/* #undef PIXMAN_TIMERS */
/* The size of `long', as computed by sizeof. */
#define SIZEOF_LONG 4
/* Define to 1 if you have the ANSI C header files. */
#define STDC_HEADERS 1
/* The compiler supported TLS storage class */
#define TLS __thread
/* Whether the tool chain supports __attribute__((constructor)) */
#define DISABLE_TOOLCHAIN_SUPPORTS_ATTRIBUTE_CONSTRUCTOR /**/
/* use ARM IWMMXT compiler intrinsics */
/* #undef USE_ARM_IWMMXT */
/* use ARM NEON assembly optimizations */
#define USE_ARM_NEON 1
/* use ARM SIMD assembly optimizations */
#define USE_ARM_SIMD 1
/* use GNU-style inline assembler */
#define USE_GCC_INLINE_ASM 1
/* use Loongson Multimedia Instructions */
/* #undef USE_LOONGSON_MMI */
/* use MIPS DSPr2 assembly optimizations */
/* #undef USE_MIPS_DSPR2 */
/* use OpenMP in the test suite */
#define USE_OPENMP 1
/* use SSE2 compiler intrinsics */
/* #undef USE_SSE2 */
/* use VMX compiler intrinsics */
/* #undef USE_VMX */
/* use x86 MMX compiler intrinsics */
/* #undef USE_X86_MMX */
/* Version number of package */
#define VERSION "0.30.2"
/* Define WORDS_BIGENDIAN to 1 if your processor stores words with the most
significant byte first (like Motorola and SPARC, unlike Intel). */
#if defined AC_APPLE_UNIVERSAL_BUILD
# if defined __BIG_ENDIAN__
# define WORDS_BIGENDIAN 1
# endif
#else
# ifndef WORDS_BIGENDIAN
/* # undef WORDS_BIGENDIAN */
# endif
#endif
/* Define to `__inline__' or `__inline' if that's what the C compiler
calls it, or to nothing if 'inline' is not supported under any name. */
#ifndef __cplusplus
/* #undef inline */
#endif
/* Define to sqrt if you do not have the `sqrtf' function. */
/* #undef sqrtf */

View File

@@ -2,11 +2,11 @@ LOCAL_PATH := $(call my-dir)
include $(CLEAR_VARS)
LOCAL_SDK_VERSION := 14
#LOCAL_SDK_VERSION := 14
LOCAL_MODULE := libpixman-1
LOCAL_MODULE := pixman-1
LOCAL_CFLAGS := -DHAVE_CONFIG_H -fvisibility=hidden
LOCAL_CFLAGS := -DHAVE_CONFIG_H
LLOCAL_SRC_FILES := \
$(LOCAL_PATH)/pixman.c \

View File

@@ -0,0 +1,107 @@
LOCAL_PATH := $(call my-dir)
include $(CLEAR_VARS)
#LOCAL_SDK_VERSION := 21
LOCAL_MODULE := libapplication
LOCAL_C_INCLUDES := \
$(LOCAL_PATH)/../header/include \
$(LOCAL_PATH)/xserver/include \
$(LOCAL_PATH)/../../sdl-1.2/include \
$(LOCAL_PATH)/../../sdl_ttf/include \
$(LOCAL_PATH)/xserver/hw/kdrive/src \
$(LOCAL_PATH)/../pixman-0.30.2/pixman \
$(LOCAL_PATH)/xserver/Xext \
$(LOCAL_PATH)/xserver/dix \
$(LOCAL_PATH)/xserver/fb \
$(LOCAL_PATH)/xserver/mi \
$(LOCAL_PATH)/xserver/xfixes \
$(LOCAL_PATH)/xserver/dbe \
$(LOCAL_PATH)/xserver/record \
$(LOCAL_PATH)/xserver/render \
$(LOCAL_PATH)/xserver/Xi \
$(LOCAL_PATH)/xserver/composite \
$(LOCAL_PATH)/xserver/xkb \
$(LOCAL_PATH)/xserver/os \
$(LOCAL_PATH)/xserver/miext/shadow \
$(LOCAL_PATH)/xserver/miext/damage \
$(LOCAL_PATH)/xserver/randr \
$(LOCAL_PATH)/xserver/miext/sync \
$(LOCAL_PATH)/xserver/hw/xfree86/dixmods/extmod \
$(LOCAL_PATH)/xserver/damageext \
$(LOCAL_PATH)/xserver/miext/cw \
LOCAL_CFLAGS := -DHAVE_CONFIG_H \
-DFNONBLOCK=O_NONBLOCK \
-DFNDELAY=O_NDELAY \
-D_LINUX_IPC_H \
-Dipc_perm=debian_ipc_perm \
-DVENDOR_NAME=\"The\ X.Org\ Foundation\" \
-DHAVE_CBRT \
-DXFIXES \
-DHAVE_DIX_CONFIG_H \
-DNOFILES_MAX=256 \
-DANDROID \
LOCAL_SRC_FILES := \
$(wildcard $(LOCAL_PATH)/*.c) \
$(wildcard $(LOCAL_PATH)/xserver/src/*.c) \
$(wildcard $(LOCAL_PATH)/xserver/hw/kdrive/sdl/*.c) \
$(wildcard $(LOCAL_PATH)/xserver/dix/*.c) \
$(wildcard $(LOCAL_PATH)/xserver/hw/kdrive/src/*.c) \
$(wildcard $(LOCAL_PATH)/xserver/fb/*.c) \
$(wildcard $(LOCAL_PATH)/xserver/mi/*.c) \
$(wildcard $(LOCAL_PATH)/xserver/xfixes/*.c) \
$(wildcard $(LOCAL_PATH)/xserver/dbe/*.c) \
$(wildcard $(LOCAL_PATH)/xserver/record/*.c) \
$(wildcard $(LOCAL_PATH)/xserver/randr/*.c) \
$(wildcard $(LOCAL_PATH)/xserver/render/*.c) \
$(wildcard $(LOCAL_PATH)/xserver/damageext/*.c) \
$(wildcard $(LOCAL_PATH)/xserver/miext/sync/*.c) \
$(wildcard $(LOCAL_PATH)/xserver/miext/damage/*.c) \
$(wildcard $(LOCAL_PATH)/xserver/miext/shadow/*.c) \
$(wildcard $(LOCAL_PATH)/xserver/Xi/*.c) \
$(wildcard $(LOCAL_PATH)/xserver/xkb/*.c) \
$(wildcard $(LOCAL_PATH)/xserver/composite/*.c) \
$(wildcard $(LOCAL_PATH)/xserver/os/*.c) \
$(wildcard $(LOCAL_PATH)/xserver/hw/kdrive/linux/*.c) \
$(LOCAL_PATH)/xserver/Xext/bigreq.c \
$(LOCAL_PATH)/xserver/Xext/dpms.c \
$(LOCAL_PATH)/xserver/Xext/geext.c \
$(LOCAL_PATH)/xserver/Xext/panoramiX.c \
$(LOCAL_PATH)/xserver/Xext/panoramiXprocs.c \
$(LOCAL_PATH)/xserver/Xext/panoramiXSwap.c \
$(LOCAL_PATH)/xserver/Xext/saver.c \
$(LOCAL_PATH)/xserver/Xext/shape.c \
$(LOCAL_PATH)/xserver/Xext/shm.c \
$(LOCAL_PATH)/xserver/Xext/sleepuntil.c \
$(LOCAL_PATH)/xserver/Xext/sync.c \
$(LOCAL_PATH)/xserver/Xext/xace.c \
$(LOCAL_PATH)/xserver/Xext/xcmisc.c \
$(LOCAL_PATH)/xserver/Xext/xres.c \
$(LOCAL_PATH)/xserver/Xext/xtest.c \
$(LOCAL_PATH)/xserver/Xext/xvdisp.c \
$(LOCAL_PATH)/xserver/Xext/xvmain.c \
$(LOCAL_PATH)/xserver/Xext/xvmc.c \
# $(wildcard $(LOCAL_PATH)/xserver/Xext/*.c) \
LOCAL_SHARED_LIBRARIES := xcb Xau Xdmcp X11 Xext Xrender \
xkbfile ICE fontenc sdl-1.2 \
android-shmem sdl_ttf Xfont pixman-1
LOCAL_STATIC_LIBRARIES := android_support freetype
#LOCAL_LDFLAGS := -pie
LOCAL_LDLIBS := -llog -lc -lm -ldl -lz -lGLESv1_CM
include $(BUILD_SHARED_LIBRARY)
$(call import-module,android/support)

View File

@@ -15,6 +15,8 @@
#include "gfx.h"
#define main SDL_main
extern int android_main( int argc, char *argv[], char *envp[] );
static void retryLaunchWithDifferentPort(void);

View File

@@ -39,6 +39,9 @@
#endif
#include <sys/types.h>
#undef HAS_SHM
#ifdef HAS_SHM
#if defined(linux) && (!defined(__GNU_LIBRARY__) || __GNU_LIBRARY__ < 2)
/* libc4 does not define __GNU_LIBRARY__, libc5 defines __GNU_LIBRARY__ as 1 */

View File

@@ -1,146 +0,0 @@
/************************************************************
Copyright 1989, 1998 The Open Group
Permission to use, copy, modify, distribute, and sell this software and its
documentation for any purpose is hereby granted without fee, provided that
the above copyright notice appear in all copies and that both that
copyright notice and this permission notice appear in supporting
documentation.
The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
OPEN GROUP BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN
AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
Except as contained in this notice, the name of The Open Group shall not be
used in advertising or otherwise to promote the sale, use or other dealings
in this Software without prior written authorization from The Open Group.
Copyright 1989 by Hewlett-Packard Company, Palo Alto, California.
All Rights Reserved
Permission to use, copy, modify, and distribute this software and its
documentation for any purpose and without fee is hereby granted,
provided that the above copyright notice appear in all copies and that
both that copyright notice and this permission notice appear in
supporting documentation, and that the name of Hewlett-Packard not be
used in advertising or publicity pertaining to distribution of the
software without specific, written prior permission.
HEWLETT-PACKARD DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDING
ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL
HEWLETT-PACKARD BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR
ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS,
WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION,
ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS
SOFTWARE.
********************************************************/
/*
* stubs.c -- stub routines for the X server side of the XINPUT
* extension. This file is mainly to be used only as documentation.
* There is not much code here, and you can't get a working XINPUT
* server just using this.
* The Xvfb server uses this file so it will compile with the same
* object files as the real X server for a platform that has XINPUT.
* Xnest could do the same thing.
*/
#ifdef HAVE_DIX_CONFIG_H
#include <dix-config.h>
#endif
#include <X11/X.h>
#include <X11/Xproto.h>
#include "inputstr.h"
#include <X11/extensions/XI.h>
#include <X11/extensions/XIproto.h>
#include "XIstubs.h"
#include "xace.h"
/****************************************************************************
*
* Caller: ProcXSetDeviceMode
*
* Change the mode of an extension device.
* This function is used to change the mode of a device from reporting
* relative motion to reporting absolute positional information, and
* vice versa.
* The default implementation below is that no such devices are supported.
*
*/
int
SetDeviceMode(ClientPtr client, DeviceIntPtr dev, int mode)
{
return BadMatch;
}
/****************************************************************************
*
* Caller: ProcXSetDeviceValuators
*
* Set the value of valuators on an extension input device.
* This function is used to set the initial value of valuators on
* those input devices that are capable of reporting either relative
* motion or an absolute position, and allow an initial position to be set.
* The default implementation below is that no such devices are supported.
*
*/
int
SetDeviceValuators(ClientPtr client, DeviceIntPtr dev,
int *valuators, int first_valuator, int num_valuators)
{
return BadMatch;
}
/****************************************************************************
*
* Caller: ProcXChangeDeviceControl
*
* Change the specified device controls on an extension input device.
*
*/
int
ChangeDeviceControl(ClientPtr client, DeviceIntPtr dev,
xDeviceCtl * control)
{
return BadMatch;
}
/****************************************************************************
*
* Caller: configAddDevice (and others)
*
* Add a new device with the specified options.
*
*/
int
NewInputDeviceRequest(InputOption *options, InputAttributes *attrs,
DeviceIntPtr *pdev)
{
return BadValue;
}
/****************************************************************************
*
* Caller: configRemoveDevice (and others)
*
* Remove the specified device previously added.
*
*/
void
DeleteInputDeviceRequest(DeviceIntPtr dev)
{
}

View File

@@ -20,7 +20,7 @@ static void *child_command(void *unused)
cmd = popen (kdExecuteCommand, "r");
if (!cmd) {
printf ("Error while starting child command: %s", kdExecuteCommand);
return;
return NULL;
}
while (fgets (buf, sizeof(buf), cmd)) {
printf ("> %s", buf);

View File

@@ -0,0 +1,944 @@
# Makefile.in generated by automake 1.14.1 from Makefile.am.
# include/Makefile. Generated from Makefile.in by configure.
# Copyright (C) 1994-2013 Free Software Foundation, Inc.
# This Makefile.in is free software; the Free Software Foundation
# gives unlimited permission to copy and/or distribute it,
# with or without modifications, as long as this notice is preserved.
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY, to the extent permitted by law; without
# even the implied warranty of MERCHANTABILITY or FITNESS FOR A
# PARTICULAR PURPOSE.
VPATH = ../../../include
am__is_gnu_make = test -n '$(MAKEFILE_LIST)' && test -n '$(MAKELEVEL)'
am__make_running_with_option = \
case $${target_option-} in \
?) ;; \
*) echo "am__make_running_with_option: internal error: invalid" \
"target option '$${target_option-}' specified" >&2; \
exit 1;; \
esac; \
has_opt=no; \
sane_makeflags=$$MAKEFLAGS; \
if $(am__is_gnu_make); then \
sane_makeflags=$$MFLAGS; \
else \
case $$MAKEFLAGS in \
*\\[\ \ ]*) \
bs=\\; \
sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \
| sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \
esac; \
fi; \
skip_next=no; \
strip_trailopt () \
{ \
flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \
}; \
for flg in $$sane_makeflags; do \
test $$skip_next = yes && { skip_next=no; continue; }; \
case $$flg in \
*=*|--*) continue;; \
-*I) strip_trailopt 'I'; skip_next=yes;; \
-*I?*) strip_trailopt 'I';; \
-*O) strip_trailopt 'O'; skip_next=yes;; \
-*O?*) strip_trailopt 'O';; \
-*l) strip_trailopt 'l'; skip_next=yes;; \
-*l?*) strip_trailopt 'l';; \
-[dEDm]) skip_next=yes;; \
-[JT]) skip_next=yes;; \
esac; \
case $$flg in \
*$$target_option*) has_opt=yes; break;; \
esac; \
done; \
test $$has_opt = yes
am__make_dryrun = (target_option=n; $(am__make_running_with_option))
am__make_keepgoing = (target_option=k; $(am__make_running_with_option))
pkgdatadir = $(datadir)/xorg-server
pkgincludedir = $(includedir)/xorg-server
pkglibdir = $(libdir)/xorg-server
pkglibexecdir = $(libexecdir)/xorg-server
am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd
install_sh_DATA = $(install_sh) -c -m 644
install_sh_PROGRAM = $(install_sh) -c
install_sh_SCRIPT = $(install_sh) -c
INSTALL_HEADER = $(INSTALL_DATA)
transform = $(program_transform_name)
NORMAL_INSTALL = :
PRE_INSTALL = :
POST_INSTALL = :
NORMAL_UNINSTALL = :
PRE_UNINSTALL = :
POST_UNINSTALL = :
build_triplet = x86_64-unknown-linux-gnu
host_triplet = arm-unknown-linux-androideabi
subdir = include
DIST_COMMON = $(srcdir)/Makefile.in $(srcdir)/Makefile.am \
$(srcdir)/do-not-use-config.h.in $(srcdir)/xorg-server.h.in \
$(srcdir)/dix-config.h.in $(srcdir)/xorg-config.h.in \
$(srcdir)/xkb-config.h.in $(srcdir)/xwin-config.h.in \
$(srcdir)/kdrive-config.h.in $(srcdir)/version-config.h.in \
$(am__sdk_HEADERS_DIST)
ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
am__aclocal_m4_deps = $(top_srcdir)/m4/ac_define_dir.m4 \
$(top_srcdir)/m4/libtool.m4 $(top_srcdir)/m4/ltoptions.m4 \
$(top_srcdir)/m4/ltsugar.m4 $(top_srcdir)/m4/ltversion.m4 \
$(top_srcdir)/m4/lt~obsolete.m4 $(top_srcdir)/m4/xorg-tls.m4 \
$(top_srcdir)/configure.ac
am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
$(ACLOCAL_M4)
mkinstalldirs = $(install_sh) -d
CONFIG_HEADER = do-not-use-config.h xorg-server.h dix-config.h \
xorg-config.h xkb-config.h xwin-config.h kdrive-config.h \
version-config.h
CONFIG_CLEAN_FILES =
CONFIG_CLEAN_VPATH_FILES =
AM_V_P = $(am__v_P_$(V))
am__v_P_ = $(am__v_P_$(AM_DEFAULT_VERBOSITY))
am__v_P_0 = false
am__v_P_1 = :
AM_V_GEN = $(am__v_GEN_$(V))
am__v_GEN_ = $(am__v_GEN_$(AM_DEFAULT_VERBOSITY))
am__v_GEN_0 = @echo " GEN " $@;
am__v_GEN_1 =
AM_V_at = $(am__v_at_$(V))
am__v_at_ = $(am__v_at_$(AM_DEFAULT_VERBOSITY))
am__v_at_0 = @
am__v_at_1 =
SOURCES =
DIST_SOURCES =
am__can_run_installinfo = \
case $$AM_UPDATE_INFO_DIR in \
n|no|NO) false;; \
*) (install-info --version) >/dev/null 2>&1;; \
esac
am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`;
am__vpath_adj = case $$p in \
$(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \
*) f=$$p;; \
esac;
am__strip_dir = f=`echo $$p | sed -e 's|^.*/||'`;
am__install_max = 40
am__nobase_strip_setup = \
srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*|]/\\\\&/g'`
am__nobase_strip = \
for p in $$list; do echo "$$p"; done | sed -e "s|$$srcdirstrip/||"
am__nobase_list = $(am__nobase_strip_setup); \
for p in $$list; do echo "$$p $$p"; done | \
sed "s| $$srcdirstrip/| |;"' / .*\//!s/ .*/ ./; s,\( .*\)/[^/]*$$,\1,' | \
$(AWK) 'BEGIN { files["."] = "" } { files[$$2] = files[$$2] " " $$1; \
if (++n[$$2] == $(am__install_max)) \
{ print $$2, files[$$2]; n[$$2] = 0; files[$$2] = "" } } \
END { for (dir in files) print dir, files[dir] }'
am__base_list = \
sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \
sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g'
am__uninstall_files_from_dir = { \
test -z "$$files" \
|| { test ! -d "$$dir" && test ! -f "$$dir" && test ! -r "$$dir"; } \
|| { echo " ( cd '$$dir' && rm -f" $$files ")"; \
$(am__cd) "$$dir" && rm -f $$files; }; \
}
am__installdirs = "$(DESTDIR)$(sdkdir)" "$(DESTDIR)$(sdkdir)"
am__sdk_HEADERS_DIST = XIstubs.h Xprintf.h callback.h client.h \
closestr.h closure.h colormap.h colormapst.h hotplug.h \
cursor.h cursorstr.h dix.h dixaccess.h dixevents.h dixfont.h \
dixfontstr.h dixgrabs.h dixstruct.h events.h exevents.h \
extension.h extinit.h extnsionst.h gc.h gcstruct.h globals.h \
input.h inputstr.h list.h misc.h miscstruct.h opaque.h os.h \
pixmap.h pixmapstr.h privates.h property.h propertyst.h \
ptrveloc.h region.h regionstr.h registry.h resource.h rgb.h \
screenint.h scrnintstr.h selection.h servermd.h site.h \
swaprep.h swapreq.h validate.h window.h windowstr.h xkbfile.h \
xkbsrv.h xkbstr.h xkbrules.h xserver-properties.h
HEADERS = $(nodist_sdk_HEADERS) $(sdk_HEADERS)
am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) \
$(LISP)do-not-use-config.h.in xorg-server.h.in dix-config.h.in \
xorg-config.h.in xkb-config.h.in xwin-config.h.in \
kdrive-config.h.in version-config.h.in
# Read a list of newline-separated strings from the standard input,
# and print each of them once, without duplicates. Input order is
# *not* preserved.
am__uniquify_input = $(AWK) '\
BEGIN { nonempty = 0; } \
{ items[$$0] = 1; nonempty = 1; } \
END { if (nonempty) { for (i in items) print i; }; } \
'
# Make sure the list of sources is unique. This is necessary because,
# e.g., the same source file might be shared among _SOURCES variables
# for different programs/libraries.
am__define_uniq_tagged_files = \
list='$(am__tagged_files)'; \
unique=`for i in $$list; do \
if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
done | $(am__uniquify_input)`
ETAGS = etags
CTAGS = ctags
DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
ACLOCAL = ${SHELL} /home/pelya/src/endless_space/SDL-android/project/jni/application/src/xserver/missing aclocal-1.14
ADMIN_MAN_DIR = $(mandir)/man$(ADMIN_MAN_SUFFIX)
ADMIN_MAN_SUFFIX = 8
ALLOCA =
AMTAR = $${TAR-tar}
AM_DEFAULT_VERBOSITY = 0
APPLE_APPLICATIONS_DIR = /Applications/Utilities
APPLE_APPLICATION_NAME = X11
APP_MAN_DIR = $(mandir)/man$(APP_MAN_SUFFIX)
APP_MAN_SUFFIX = 1
AR = /home/pelya/src/endless_space/android-ndk-r10e/toolchains/arm-linux-androideabi-4.8/prebuilt/linux-x86_64/bin/arm-linux-androideabi-ar
AS = /home/pelya/src/endless_space/android-ndk-r10e/toolchains/arm-linux-androideabi-4.8/prebuilt/linux-x86_64/bin/arm-linux-androideabi-as
AUTOCONF = ${SHELL} /home/pelya/src/endless_space/SDL-android/project/jni/application/src/xserver/missing autoconf
AUTOHEADER = ${SHELL} /home/pelya/src/endless_space/SDL-android/project/jni/application/src/xserver/missing autoheader
AUTOMAKE = ${SHELL} /home/pelya/src/endless_space/SDL-android/project/jni/application/src/xserver/missing automake-1.14
AWK = gawk
BASE_CFLAGS = -Wall -Wpointer-arith -Wmissing-declarations -Wformat=2 -Wstrict-prototypes -Wmissing-prototypes -Wnested-externs -Wbad-function-cast -Wold-style-definition -Wdeclaration-after-statement -Wunused -Wuninitialized -Wshadow -Wmissing-noreturn -Wmissing-format-attribute -Wredundant-decls -Wlogical-op -Werror=implicit -Werror=nonnull -Werror=init-self -Werror=main -Werror=missing-braces -Werror=sequence-point -Werror=return-type -Werror=trigraphs -Werror=array-bounds -Werror=write-strings -Werror=address -Werror=int-to-pointer-cast -Werror=pointer-to-int-cast
BASE_FONT_PATH = /usr/share/fonts/X11
BUILD_DATE = 20150624
BUILD_TIME = 1174748
BUNDLE_ID_PREFIX = org.x
CC = /home/pelya/src/endless_space/android-ndk-r10e/toolchains/arm-linux-androideabi-4.8/prebuilt/linux-x86_64/bin/arm-linux-androideabi-gcc -std=gnu99
CCAS = /home/pelya/src/endless_space/android-ndk-r10e/toolchains/arm-linux-androideabi-4.8/prebuilt/linux-x86_64/bin/arm-linux-androideabi-gcc -std=gnu99
CCASDEPMODE = depmode=gcc3
CCASFLAGS = -fpic -ffunction-sections -funwind-tables -fstack-protector -no-canonical-prefixes -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -mthumb -fomit-frame-pointer -fno-strict-aliasing -finline-limit=64 -marm -fno-omit-frame-pointer -DANDROID -DNDEBUG -O2 -g -finline-functions -Wa,--noexecstack -Wformat -Werror=format-security -isystem/home/pelya/src/endless_space/android-ndk-r10e/platforms/android-9/arch-arm/usr/include -isystem/home/pelya/src/endless_space/android-ndk-r10e/sources/cxx-stl/gnu-libstdc++/4.8/include -isystem/home/pelya/src/endless_space/android-ndk-r10e/sources/cxx-stl/gnu-libstdc++/4.8/libs/armeabi-v7a/include -DDEBUG -isystem/home/pelya/src/endless_space/SDL-android/project/jni/application/src/xserver/android/armeabi-v7a -isystem/home/pelya/src/endless_space/SDL-android/project/jni/application/src/xserver/android/armeabi-v7a/../android-shmem -include strings.h -include linux/time.h -DFNONBLOCK=O_NONBLOCK -DFNDELAY=O_NDELAY -D_LINUX_IPC_H -Dipc_perm=debian_ipc_perm -I/home/pelya/src/endless_space/SDL-android/project/jni/application/src/xserver/android/armeabi-v7a/pixman-0.30.2/pixman -I/home/pelya/src/endless_space/SDL-android/project/jni/application/src/xserver/android/armeabi-v7a/../../../../../../jni/sdl-1.2/include
CCDEPMODE = depmode=gcc3
CFLAGS = -fpic -ffunction-sections -funwind-tables -fstack-protector -no-canonical-prefixes -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -mthumb -fomit-frame-pointer -fno-strict-aliasing -finline-limit=64 -marm -fno-omit-frame-pointer -DANDROID -DNDEBUG -O2 -g -finline-functions -Wa,--noexecstack -Wformat -Werror=format-security -isystem/home/pelya/src/endless_space/android-ndk-r10e/platforms/android-9/arch-arm/usr/include -isystem/home/pelya/src/endless_space/android-ndk-r10e/sources/cxx-stl/gnu-libstdc++/4.8/include -isystem/home/pelya/src/endless_space/android-ndk-r10e/sources/cxx-stl/gnu-libstdc++/4.8/libs/armeabi-v7a/include -DDEBUG -isystem/home/pelya/src/endless_space/SDL-android/project/jni/application/src/xserver/android/armeabi-v7a -isystem/home/pelya/src/endless_space/SDL-android/project/jni/application/src/xserver/android/armeabi-v7a/../android-shmem -include strings.h -include linux/time.h -DFNONBLOCK=O_NONBLOCK -DFNDELAY=O_NDELAY -D_LINUX_IPC_H -Dipc_perm=debian_ipc_perm -I/home/pelya/src/endless_space/SDL-android/project/jni/application/src/xserver/android/armeabi-v7a/pixman-0.30.2/pixman -I/home/pelya/src/endless_space/SDL-android/project/jni/application/src/xserver/android/armeabi-v7a/../../../../../../jni/sdl-1.2/include
CHANGELOG_CMD = (GIT_DIR=$(top_srcdir)/.git git log > $(top_srcdir)/.changelog.tmp && mv $(top_srcdir)/.changelog.tmp $(top_srcdir)/ChangeLog) || (rm -f $(top_srcdir)/.changelog.tmp; touch $(top_srcdir)/ChangeLog; echo 'git directory not found: installing possibly empty changelog.' >&2)
COMPILEDDEFAULTFONTPATH = /usr/share/fonts/X11/misc/,/usr/share/fonts/X11/TTF/,/usr/share/fonts/X11/OTF/,/usr/share/fonts/X11/Type1/,/usr/share/fonts/X11/100dpi/,/usr/share/fonts/X11/75dpi/
CPP = /home/pelya/src/endless_space/android-ndk-r10e/toolchains/arm-linux-androideabi-4.8/prebuilt/linux-x86_64/bin/arm-linux-androideabi-cpp -fpic -ffunction-sections -funwind-tables -fstack-protector -no-canonical-prefixes -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16 -mthumb -fomit-frame-pointer -fno-strict-aliasing -finline-limit=64 -marm -fno-omit-frame-pointer -DANDROID -DNDEBUG -O2 -g -finline-functions -Wa,--noexecstack -Wformat -Werror=format-security -isystem/home/pelya/src/endless_space/android-ndk-r10e/platforms/android-9/arch-arm/usr/include -isystem/home/pelya/src/endless_space/android-ndk-r10e/sources/cxx-stl/gnu-libstdc++/4.8/include -isystem/home/pelya/src/endless_space/android-ndk-r10e/sources/cxx-stl/gnu-libstdc++/4.8/libs/armeabi-v7a/include -DDEBUG -isystem/home/pelya/src/endless_space/SDL-android/project/jni/application/src/xserver/android/armeabi-v7a -isystem/home/pelya/src/endless_space/SDL-android/project/jni/application/src/xserver/android/armeabi-v7a/../android-shmem -include strings.h -include linux/time.h -DFNONBLOCK=O_NONBLOCK -DFNDELAY=O_NDELAY -D_LINUX_IPC_H -Dipc_perm=debian_ipc_perm -I/home/pelya/src/endless_space/SDL-android/project/jni/application/src/xserver/android/armeabi-v7a/pixman-0.30.2/pixman -I/home/pelya/src/endless_space/SDL-android/project/jni/application/src/xserver/android/armeabi-v7a/../../../../../../jni/sdl-1.2/include
CPPFLAGS =
CWARNFLAGS = -Wall -Wpointer-arith -Wmissing-declarations -Wformat=2 -Wstrict-prototypes -Wmissing-prototypes -Wnested-externs -Wbad-function-cast -Wold-style-definition -Wdeclaration-after-statement -Wunused -Wuninitialized -Wshadow -Wmissing-noreturn -Wmissing-format-attribute -Wredundant-decls -Wlogical-op -Werror=implicit -Werror=nonnull -Werror=init-self -Werror=main -Werror=missing-braces -Werror=sequence-point -Werror=return-type -Werror=trigraphs -Werror=array-bounds -Werror=write-strings -Werror=address -Werror=int-to-pointer-cast -Werror=pointer-to-int-cast -fno-strict-aliasing
CYGPATH_W = echo
DBUS_CFLAGS = -I/usr/include/dbus-1.0 -I/usr/lib/x86_64-linux-gnu/dbus-1.0/include
DBUS_LIBS = -ldbus-1
DEFAULT_LIBRARY_PATH =
DEFAULT_LOGDIR =
DEFAULT_LOGPREFIX =
DEFAULT_MODULE_PATH =
DEFS = -DHAVE_CONFIG_H
DEPDIR = .deps
DGA_CFLAGS =
DGA_LIBS =
DIX_CFLAGS = -DHAVE_DIX_CONFIG_H $(CWARNFLAGS) -D_DEFAULT_SOURCE -D_BSD_SOURCE -DHAS_FCHOWN -DHAS_STICKY_DIR_BIT -I/usr/include/pixman-1 -I/usr/include/freetype2 -I$(top_srcdir)/include -I$(top_builddir)/include -I$(top_srcdir)/Xext -I$(top_srcdir)/composite -I$(top_srcdir)/damageext -I$(top_srcdir)/xfixes -I$(top_srcdir)/Xi -I$(top_srcdir)/mi -I$(top_srcdir)/miext/sync -I$(top_srcdir)/miext/shadow -I$(top_srcdir)/miext/damage -I$(top_srcdir)/render -I$(top_srcdir)/randr -I$(top_srcdir)/fb
DIX_LIB = $(top_builddir)/dix/libdix.la
DLLTOOL = dlltool
DLOPEN_LIBS =
DMXEXAMPLES_DEP_CFLAGS =
DMXEXAMPLES_DEP_LIBS =
DMXMODULES_CFLAGS =
DMXMODULES_LIBS = -lXmuu -lXext -lXrender -lX11 -lXfixes -lXi -lXau -lXdmcp
DMXXIEXAMPLES_DEP_CFLAGS =
DMXXIEXAMPLES_DEP_LIBS =
DMXXMUEXAMPLES_DEP_CFLAGS =
DMXXMUEXAMPLES_DEP_LIBS =
DOT = /usr/bin/dot
DOXYGEN = /usr/bin/doxygen
DRI2PROTO_CFLAGS =
DRI2PROTO_LIBS =
DRIPROTO_CFLAGS =
DRIPROTO_LIBS =
DRIVER_MAN_DIR = $(mandir)/man$(DRIVER_MAN_SUFFIX)
DRIVER_MAN_SUFFIX = 4
DRI_CFLAGS =
DRI_DRIVER_PATH = /usr/lib/x86_64-linux-gnu/dri
DRI_LIBS =
DSYMUTIL =
DTRACE = not_found
DUMPBIN =
ECHO_C =
ECHO_N = -n
ECHO_T =
EGREP = /bin/grep -E
EXEEXT =
FGREP = /bin/grep -F
FILE_MAN_DIR = $(mandir)/man$(FILE_MAN_SUFFIX)
FILE_MAN_SUFFIX = 5
FONT100DPIDIR = ${FONTROOTDIR}/100dpi
FONT75DPIDIR = ${FONTROOTDIR}/75dpi
FONTMISCDIR = ${FONTROOTDIR}/misc
FONTOTFDIR = ${FONTROOTDIR}/OTF
FONTROOTDIR = /usr/share/fonts/X11
FONTTTFDIR = ${FONTROOTDIR}/TTF
FONTTYPE1DIR = ${FONTROOTDIR}/Type1
FOP = /usr/bin/fop
GLX_ARCH_DEFINES =
GLX_DEFINES = -DGLX_USE_TLS -DPTHREADS
GLX_TLS = yes
GL_CFLAGS =
GL_LIBS =
GREP = /bin/grep
HAL_CFLAGS =
HAL_LIBS =
HAVE_DOT = yes
INSTALL = /usr/bin/install -c
INSTALL_CMD = (cp -f /usr/share/util-macros/INSTALL $(top_srcdir)/.INSTALL.tmp && mv $(top_srcdir)/.INSTALL.tmp $(top_srcdir)/INSTALL) || (rm -f $(top_srcdir)/.INSTALL.tmp; touch $(top_srcdir)/INSTALL; echo 'util-macros "pkgdatadir" from xorg-macros.pc not found: installing possibly empty INSTALL.' >&2)
INSTALL_DATA = ${INSTALL} -m 644
INSTALL_PROGRAM = ${INSTALL}
INSTALL_SCRIPT = ${INSTALL}
INSTALL_STRIP_PROGRAM = $(install_sh) -c -s
KDRIVE_CFLAGS = $(CWARNFLAGS) -D_DEFAULT_SOURCE -D_BSD_SOURCE -DHAS_FCHOWN -DHAS_STICKY_DIR_BIT -I/usr/include/pixman-1 -I/usr/include/freetype2 -I$(top_srcdir)/include -I$(top_builddir)/include -I$(top_srcdir)/Xext -I$(top_srcdir)/composite -I$(top_srcdir)/damageext -I$(top_srcdir)/xfixes -I$(top_srcdir)/Xi -I$(top_srcdir)/mi -I$(top_srcdir)/miext/sync -I$(top_srcdir)/miext/shadow -I$(top_srcdir)/miext/damage -I$(top_srcdir)/render -I$(top_srcdir)/randr -I$(top_srcdir)/fb -DHAVE_KDRIVE_CONFIG_H
KDRIVE_INCS = -I$(top_srcdir)/hw/kdrive/src -I$(top_srcdir)/miext/sync -I$(top_srcdir)/miext/damage -I$(top_srcdir)/miext/shadow -I$(top_srcdir)/Xext -I$(top_srcdir)/fb -I$(top_srcdir)/mi -I$(top_srcdir)/hw/kdrive/linux
KDRIVE_LIBS = $(top_builddir)/dix/libmain.la $(top_builddir)/dix/libdix.la $(top_builddir)/hw/kdrive/src/libkdrive.la $(top_builddir)/hw/kdrive/src/libkdrivestubs.la $(top_builddir)/fb/libfb.la $(top_builddir)/mi/libmi.la $(top_builddir)/fb/libfb.la $(top_builddir)/mi/libmi.la $(top_builddir)/xfixes/libxfixes.la $(top_builddir)/Xext/libXext.la $(top_builddir)/dbe/libdbe.la $(top_builddir)/record/librecord.la $(top_builddir)/randr/librandr.la $(top_builddir)/render/librender.la $(top_builddir)/damageext/libdamageext.la $(top_builddir)/miext/sync/libsync.la $(top_builddir)/miext/damage/libdamage.la $(top_builddir)/miext/shadow/libshadow.la $(top_builddir)/Xi/libXi.la $(top_builddir)/xkb/libxkb.la $(top_builddir)/xkb/libxkbstubs.la $(top_builddir)/composite/libcomposite.la $(top_builddir)/os/libos.la $(top_builddir)/hw/kdrive/linux/liblinux.la -lpixman-1 -lXfont -lXau -lXdmcp -lm -lfontenc -lfreetype -llog -lSDL -lGLESv1_CM -landroid-shmem -lpthread
KDRIVE_LOCAL_LIBS = $(top_builddir)/dix/libmain.la $(top_builddir)/dix/libdix.la $(top_builddir)/hw/kdrive/src/libkdrive.la $(top_builddir)/hw/kdrive/src/libkdrivestubs.la $(top_builddir)/fb/libfb.la $(top_builddir)/mi/libmi.la $(top_builddir)/fb/libfb.la $(top_builddir)/mi/libmi.la $(top_builddir)/xfixes/libxfixes.la $(top_builddir)/Xext/libXext.la $(top_builddir)/dbe/libdbe.la $(top_builddir)/record/librecord.la $(top_builddir)/randr/librandr.la $(top_builddir)/render/librender.la $(top_builddir)/damageext/libdamageext.la $(top_builddir)/miext/sync/libsync.la $(top_builddir)/miext/damage/libdamage.la $(top_builddir)/miext/shadow/libshadow.la $(top_builddir)/Xi/libXi.la $(top_builddir)/xkb/libxkb.la $(top_builddir)/xkb/libxkbstubs.la $(top_builddir)/composite/libcomposite.la $(top_builddir)/os/libos.la $(top_builddir)/hw/kdrive/linux/liblinux.la
KDRIVE_PURE_INCS = -I$(top_srcdir)/hw/kdrive/src -I$(top_srcdir)/miext/sync -I$(top_srcdir)/miext/damage -I$(top_srcdir)/miext/shadow -I$(top_srcdir)/Xext -I$(top_srcdir)/fb -I$(top_srcdir)/mi
KDRIVE_PURE_LIBS = $(top_builddir)/fb/libfb.la $(top_builddir)/mi/libmi.la $(top_builddir)/xfixes/libxfixes.la $(top_builddir)/Xext/libXext.la $(top_builddir)/dbe/libdbe.la $(top_builddir)/record/librecord.la $(top_builddir)/randr/librandr.la $(top_builddir)/render/librender.la $(top_builddir)/damageext/libdamageext.la $(top_builddir)/miext/sync/libsync.la $(top_builddir)/miext/damage/libdamage.la $(top_builddir)/miext/shadow/libshadow.la $(top_builddir)/Xi/libXi.la $(top_builddir)/xkb/libxkb.la $(top_builddir)/xkb/libxkbstubs.la $(top_builddir)/composite/libcomposite.la $(top_builddir)/os/libos.la
KHRONOS_OPENGL_REGISTRY_CFLAGS =
KHRONOS_OPENGL_REGISTRY_LIBS =
KHRONOS_SPEC_DIR = auto
LD = /home/pelya/src/endless_space/android-ndk-r10e/toolchains/arm-linux-androideabi-4.8/prebuilt/linux-x86_64/bin/arm-linux-androideabi-ld
LDFLAGS = -Wl,--gc-sections -Wl,-z,nocopyreloc --sysroot=/home/pelya/src/endless_space/android-ndk-r10e/platforms/android-9/arch-arm -L/home/pelya/src/endless_space/android-ndk-r10e/platforms/android-9/arch-arm/usr/lib -lc -lm -ldl -lz -L/home/pelya/src/endless_space/android-ndk-r10e/sources/cxx-stl/gnu-libstdc++/4.8/libs/armeabi-v7a -lgnustl_static -march=armv7-a -Wl,--fix-cortex-a8 -no-canonical-prefixes -Wl,--no-undefined -Wl,-z,noexecstack -Wl,-z,relro -Wl,-z,now -lsupc++ -L/home/pelya/src/endless_space/SDL-android/project/jni/application/src/xserver/android/armeabi-v7a
LD_EXPORT_SYMBOLS_FLAG = -export-dynamic
LEX = flex
LEXLIB =
LEX_OUTPUT_ROOT = lex.yy
LIBDRM_CFLAGS =
LIBDRM_LIBS =
LIBOBJS =
LIBS = -lm -lfontenc -lfreetype -llog -lSDL -lGLESv1_CM -landroid-shmem
LIBSHA1_CFLAGS =
LIBSHA1_LIBS =
LIBTOOL = $(SHELL) $(top_builddir)/libtool
LIB_MAN_DIR = $(mandir)/man$(LIB_MAN_SUFFIX)
LIB_MAN_SUFFIX = 3
LIPO =
LN_S = ln -s
LTLIBOBJS =
MAINT = #
MAIN_LIB = $(top_builddir)/dix/libmain.la
MAKEINFO = ${SHELL} /home/pelya/src/endless_space/SDL-android/project/jni/application/src/xserver/missing makeinfo
MANIFEST_TOOL = :
MAN_SUBSTS = -e 's|__vendorversion__|"$(PACKAGE_STRING)" "$(XORG_MAN_PAGE)"|' -e 's|__xorgversion__|"$(PACKAGE_STRING)" "$(XORG_MAN_PAGE)"|' -e 's|__xservername__|Xorg|g' -e 's|__xconfigfile__|xorg.conf|g' -e 's|__projectroot__|$(prefix)|g' -e 's|__apploaddir__|$(appdefaultdir)|g' -e 's|__appmansuffix__|$(APP_MAN_SUFFIX)|g' -e 's|__drivermansuffix__|$(DRIVER_MAN_SUFFIX)|g' -e 's|__adminmansuffix__|$(ADMIN_MAN_SUFFIX)|g' -e 's|__libmansuffix__|$(LIB_MAN_SUFFIX)|g' -e 's|__miscmansuffix__|$(MISC_MAN_SUFFIX)|g' -e 's|__filemansuffix__|$(FILE_MAN_SUFFIX)|g'
MISC_MAN_DIR = $(mandir)/man$(MISC_MAN_SUFFIX)
MISC_MAN_SUFFIX = 7
MKDIR_P = /bin/mkdir -p
NM = /home/pelya/src/endless_space/android-ndk-r10e/toolchains/arm-linux-androideabi-4.8/prebuilt/linux-x86_64/bin/arm-linux-androideabi-nm
NMEDIT =
OBJC = $(CC)
OBJCCLD =
OBJCDEPMODE = depmode=none
OBJCFLAGS = $(CFLAGS)
OBJCLINK = $(LINK)
OBJDUMP = objdump
OBJEXT = o
OPENSSL_CFLAGS =
OPENSSL_LIBS = -lssl -lcrypto
OS_LIB = $(top_builddir)/os/libos.la
OTOOL =
OTOOL64 =
PACKAGE = xorg-server
PACKAGE_BUGREPORT = https://bugs.freedesktop.org/enter_bug.cgi?product=xorg
PACKAGE_NAME = xorg-server
PACKAGE_STRING = xorg-server 1.11.4
PACKAGE_TARNAME = xorg-server
PACKAGE_URL =
PACKAGE_VERSION = 1.11.4
PATH_SEPARATOR = :
PCIACCESS_CFLAGS =
PCIACCESS_LIBS =
PCI_TXT_IDS_PATH =
PIXMAN_CFLAGS = -I/usr/include/pixman-1
PIXMAN_LIBS = -lpixman-1
PKG_CONFIG = /usr/bin/pkg-config
PKG_CONFIG_LIBDIR =
PKG_CONFIG_PATH =
PROJECTROOT = /proc/self/cwd/usr
RANLIB = /home/pelya/src/endless_space/android-ndk-r10e/toolchains/arm-linux-androideabi-4.8/prebuilt/linux-x86_64/bin/arm-linux-androideabi-ranlib
RAWCPP = /usr/bin/cpp
RAWCPPFLAGS = -undef -traditional
RELEASE_DATE = 2012-01-27
SDK_REQUIRED_MODULES = xproto >= 7.0.22 randrproto >= 1.2.99.3 renderproto >= 0.11 xextproto >= 7.1.99 inputproto >= 1.9.99.902 kbproto >= 1.0.3 fontsproto videoproto xineramaproto
SED = /bin/sed
SELINUX_CFLAGS =
SELINUX_LIBS =
SERVER_MISC_CONFIG_PATH = /proc/self/cwd/usr/lib/xorg
SET_MAKE =
SHA1_CFLAGS =
SHA1_LIBS =
SHELL = /bin/bash
SOLARIS_ASM_CFLAGS =
SOLARIS_INOUT_ARCH =
STRICT_CFLAGS = -pedantic -Werror -Werror=attributes
STRIP = /home/pelya/src/endless_space/android-ndk-r10e/toolchains/arm-linux-androideabi-4.8/prebuilt/linux-x86_64/bin/arm-linux-androideabi-strip
STYLESHEET_SRCDIR = /usr/share/sgml/X11
SYSCONFDIR =
TRADITIONALCPPFLAGS = -traditional
TSLIB_CFLAGS =
TSLIB_LIBS =
UDEV_CFLAGS =
UDEV_LIBS = -ludev
UTILS_SYS_LIBS =
VENDOR_NAME_SHORT = X.Org
VERSION = 1.11.4
WINDOWSWM_CFLAGS =
WINDOWSWM_LIBS =
WINDRES =
X11EXAMPLES_DEP_CFLAGS =
X11EXAMPLES_DEP_LIBS =
XDMCP_CFLAGS =
XDMCP_LIBS = -lXdmcp
XDMXCONFIG_DEP_CFLAGS =
XDMXCONFIG_DEP_LIBS =
XDMX_CFLAGS =
XDMX_LIBS =
XDMX_SYS_LIBS =
XEPHYR_CFLAGS =
XEPHYR_INCS =
XEPHYR_LIBS =
XF86CONFIGDIR =
XF86CONFIGFILE =
XF86VIDMODE_CFLAGS =
XF86VIDMODE_LIBS =
XKB_BASE_DIRECTORY = /proc/self/cwd/usr/share/X11/xkb
XKB_BIN_DIRECTORY = /proc/self/cwd/usr/bin
XKB_COMPILED_DIR = /proc/self/cwd/tmp
XKB_DFLT_LAYOUT = us
XKB_DFLT_MODEL = pc105
XKB_DFLT_OPTIONS =
XKB_DFLT_RULES = evdev
XKB_DFLT_VARIANT =
XKM_OUTPUT_DIR = /proc/self/cwd/tmp/
XLIB_CFLAGS =
XLIB_LIBS =
XMLTO = /usr/bin/xmlto
XNESTMODULES_CFLAGS =
XNESTMODULES_LIBS = -lXext -lX11 -lXau -lXdmcp
XNEST_LIBS =
XNEST_SYS_LIBS =
XORG_CFLAGS =
XORG_INCS =
XORG_LIBS =
XORG_MALLOC_DEBUG_ENV =
XORG_MAN_PAGE = X Version 11
XORG_MODULES_CFLAGS =
XORG_MODULES_LIBS =
XORG_OS =
XORG_OS_SUBDIR =
XORG_SGML_PATH = /usr/share/sgml
XORG_SYS_LIBS =
XPBPROXY_CFLAGS =
XPBPROXY_LIBS =
XQUARTZ_LIBS =
XQUARTZ_SPARKLE = no
XRESEXAMPLES_DEP_CFLAGS =
XRESEXAMPLES_DEP_LIBS =
XSDL_INCS = -I/usr/include/SDL -D_GNU_SOURCE=1 -D_REENTRANT $(CWARNFLAGS) -D_DEFAULT_SOURCE -D_BSD_SOURCE -DHAS_FCHOWN -DHAS_STICKY_DIR_BIT -I/usr/include/pixman-1 -I/usr/include/freetype2 -I$(top_srcdir)/include -I$(top_builddir)/include -I$(top_srcdir)/Xext -I$(top_srcdir)/composite -I$(top_srcdir)/damageext -I$(top_srcdir)/xfixes -I$(top_srcdir)/Xi -I$(top_srcdir)/mi -I$(top_srcdir)/miext/sync -I$(top_srcdir)/miext/shadow -I$(top_srcdir)/miext/damage -I$(top_srcdir)/render -I$(top_srcdir)/randr -I$(top_srcdir)/fb
XSDL_LIBS = -L/usr/lib/x86_64-linux-gnu -lSDL
XSERVERCFLAGS_CFLAGS = -D_DEFAULT_SOURCE -D_BSD_SOURCE -DHAS_FCHOWN -DHAS_STICKY_DIR_BIT -I/usr/include/pixman-1 -I/usr/include/freetype2
XSERVERCFLAGS_LIBS = -lxkbfile -lpixman-1 -lXfont -lXau -lXdmcp
XSERVERLIBS_CFLAGS = -I/usr/include/pixman-1 -I/usr/include/freetype2
XSERVERLIBS_LIBS = -lpixman-1 -lXfont -lXau -lXdmcp
XSERVER_LIBS = $(top_builddir)/dix/libdix.la $(top_builddir)/mi/libmi.la $(top_builddir)/os/libos.la
XSERVER_SYS_LIBS = -lpixman-1 -lXfont -lXau -lXdmcp -lm -lfontenc -lfreetype -llog -lSDL -lGLESv1_CM -landroid-shmem
XSLTPROC = /usr/bin/xsltproc
XSL_STYLESHEET = /usr/share/sgml/X11/xorg.xsl
XTSTEXAMPLES_DEP_CFLAGS =
XTSTEXAMPLES_DEP_LIBS =
XVFB_LIBS =
XVFB_SYS_LIBS =
XWINMODULES_CFLAGS =
XWINMODULES_LIBS =
XWIN_LIBS =
XWIN_SERVER_NAME =
XWIN_SYS_LIBS =
YACC = bison -y
YFLAGS =
__XCONFIGDIR__ =
__XCONFIGFILE__ =
abi_ansic =
abi_extension =
abi_videodrv =
abi_xinput =
abs_builddir = /home/pelya/src/endless_space/SDL-android/project/jni/application/src/xserver/android/armeabi-v7a/include
abs_srcdir = /home/pelya/src/endless_space/SDL-android/project/jni/application/src/xserver/android/armeabi-v7a/../../include
abs_top_builddir = /home/pelya/src/endless_space/SDL-android/project/jni/application/src/xserver/android/armeabi-v7a
abs_top_srcdir = /home/pelya/src/endless_space/SDL-android/project/jni/application/src/xserver/android/armeabi-v7a/../..
ac_ct_AR =
ac_ct_CC =
ac_ct_DUMPBIN =
am__include = include
am__leading_dot = .
am__quote =
am__tar = $${TAR-tar} chof - "$$tardir"
am__untar = $${TAR-tar} xf -
bindir = ${exec_prefix}/bin
build = x86_64-unknown-linux-gnu
build_alias =
build_cpu = x86_64
build_os = linux-gnu
build_vendor = unknown
builddir = .
datadir = ${datarootdir}
datarootdir = ${prefix}/share
docdir = ${datarootdir}/doc/${PACKAGE_TARNAME}
driverdir =
dvidir = ${docdir}
exec_prefix = ${prefix}
extdir =
host = arm-unknown-linux-androideabi
host_alias = arm-linux-androideabi
host_cpu = arm
host_os = linux-androideabi
host_vendor = unknown
htmldir = ${docdir}
includedir = ${prefix}/include
infodir = ${datarootdir}/info
install_sh = ${SHELL} /home/pelya/src/endless_space/SDL-android/project/jni/application/src/xserver/install-sh
libdir = ${exec_prefix}/lib
libexecdir = ${exec_prefix}/libexec
localedir = ${datarootdir}/locale
localstatedir = ${prefix}/var
logdir = ${prefix}/var/log
mandir = ${datarootdir}/man
mkdir_p = $(MKDIR_P)
moduledir = ${exec_prefix}/lib/xorg/modules
oldincludedir = /usr/include
pdfdir = ${docdir}
prefix = /proc/self/cwd/usr
program_transform_name = s,x,x,
psdir = ${docdir}
sbindir = ${exec_prefix}/sbin
sdkdir =
sharedstatedir = ${prefix}/com
srcdir = ../../../include
symbol_visibility =
sysconfdir = ${prefix}/etc
sysconfigdir =
target_alias =
top_build_prefix = ../
top_builddir = ..
top_srcdir = ../../..
#sdk_HEADERS = \
# XIstubs.h \
# Xprintf.h \
# callback.h \
# client.h \
# closestr.h \
# closure.h \
# colormap.h \
# colormapst.h \
# hotplug.h \
# cursor.h \
# cursorstr.h \
# dix.h \
# dixaccess.h \
# dixevents.h \
# dixfont.h \
# dixfontstr.h \
# dixgrabs.h \
# dixstruct.h \
# events.h \
# exevents.h \
# extension.h \
# extinit.h \
# extnsionst.h \
# gc.h \
# gcstruct.h \
# globals.h \
# input.h \
# inputstr.h \
# list.h \
# misc.h \
# miscstruct.h \
# opaque.h \
# os.h \
# pixmap.h \
# pixmapstr.h \
# privates.h \
# property.h \
# propertyst.h \
# ptrveloc.h \
# region.h \
# regionstr.h \
# registry.h \
# resource.h \
# rgb.h \
# screenint.h \
# scrnintstr.h \
# selection.h \
# servermd.h \
# site.h \
# swaprep.h \
# swapreq.h \
# validate.h \
# window.h \
# windowstr.h \
# xkbfile.h \
# xkbsrv.h \
# xkbstr.h \
# xkbrules.h \
# xserver-properties.h
#nodist_sdk_HEADERS = xorg-server.h
AM_CFLAGS = $(DIX_CFLAGS)
EXTRA_DIST = \
dix-config-apple-verbatim.h \
eventconvert.h eventstr.h inpututils.h \
protocol-versions.h \
xsha1.h
all: do-not-use-config.h xorg-server.h dix-config.h xorg-config.h xkb-config.h xwin-config.h kdrive-config.h version-config.h
$(MAKE) $(AM_MAKEFLAGS) all-am
.SUFFIXES:
$(srcdir)/Makefile.in: # $(srcdir)/Makefile.am $(am__configure_deps)
@for dep in $?; do \
case '$(am__configure_deps)' in \
*$$dep*) \
( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \
&& { if test -f $@; then exit 0; else break; fi; }; \
exit 1;; \
esac; \
done; \
echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign include/Makefile'; \
$(am__cd) $(top_srcdir) && \
$(AUTOMAKE) --foreign include/Makefile
.PRECIOUS: Makefile
Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
@case '$?' in \
*config.status*) \
cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \
*) \
echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \
cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \
esac;
$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
$(top_srcdir)/configure: # $(am__configure_deps)
cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
$(ACLOCAL_M4): # $(am__aclocal_m4_deps)
cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
$(am__aclocal_m4_deps):
do-not-use-config.h: stamp-h1
@test -f $@ || rm -f stamp-h1
@test -f $@ || $(MAKE) $(AM_MAKEFLAGS) stamp-h1
stamp-h1: $(srcdir)/do-not-use-config.h.in $(top_builddir)/config.status
@rm -f stamp-h1
cd $(top_builddir) && $(SHELL) ./config.status include/do-not-use-config.h
$(srcdir)/do-not-use-config.h.in: # $(am__configure_deps)
($(am__cd) $(top_srcdir) && $(AUTOHEADER))
rm -f stamp-h1
touch $@
xorg-server.h: stamp-h2
@test -f $@ || rm -f stamp-h2
@test -f $@ || $(MAKE) $(AM_MAKEFLAGS) stamp-h2
stamp-h2: $(srcdir)/xorg-server.h.in $(top_builddir)/config.status
@rm -f stamp-h2
cd $(top_builddir) && $(SHELL) ./config.status include/xorg-server.h
dix-config.h: stamp-h3
@test -f $@ || rm -f stamp-h3
@test -f $@ || $(MAKE) $(AM_MAKEFLAGS) stamp-h3
stamp-h3: $(srcdir)/dix-config.h.in $(top_builddir)/config.status
@rm -f stamp-h3
cd $(top_builddir) && $(SHELL) ./config.status include/dix-config.h
xorg-config.h: stamp-h4
@test -f $@ || rm -f stamp-h4
@test -f $@ || $(MAKE) $(AM_MAKEFLAGS) stamp-h4
stamp-h4: $(srcdir)/xorg-config.h.in $(top_builddir)/config.status
@rm -f stamp-h4
cd $(top_builddir) && $(SHELL) ./config.status include/xorg-config.h
xkb-config.h: stamp-h5
@test -f $@ || rm -f stamp-h5
@test -f $@ || $(MAKE) $(AM_MAKEFLAGS) stamp-h5
stamp-h5: $(srcdir)/xkb-config.h.in $(top_builddir)/config.status
@rm -f stamp-h5
cd $(top_builddir) && $(SHELL) ./config.status include/xkb-config.h
xwin-config.h: stamp-h6
@test -f $@ || rm -f stamp-h6
@test -f $@ || $(MAKE) $(AM_MAKEFLAGS) stamp-h6
stamp-h6: $(srcdir)/xwin-config.h.in $(top_builddir)/config.status
@rm -f stamp-h6
cd $(top_builddir) && $(SHELL) ./config.status include/xwin-config.h
kdrive-config.h: stamp-h7
@test -f $@ || rm -f stamp-h7
@test -f $@ || $(MAKE) $(AM_MAKEFLAGS) stamp-h7
stamp-h7: $(srcdir)/kdrive-config.h.in $(top_builddir)/config.status
@rm -f stamp-h7
cd $(top_builddir) && $(SHELL) ./config.status include/kdrive-config.h
version-config.h: stamp-h8
@test -f $@ || rm -f stamp-h8
@test -f $@ || $(MAKE) $(AM_MAKEFLAGS) stamp-h8
stamp-h8: $(srcdir)/version-config.h.in $(top_builddir)/config.status
@rm -f stamp-h8
cd $(top_builddir) && $(SHELL) ./config.status include/version-config.h
distclean-hdr:
-rm -f do-not-use-config.h stamp-h1 xorg-server.h stamp-h2 dix-config.h stamp-h3 xorg-config.h stamp-h4 xkb-config.h stamp-h5 xwin-config.h stamp-h6 kdrive-config.h stamp-h7 version-config.h stamp-h8
mostlyclean-libtool:
-rm -f *.lo
clean-libtool:
-rm -rf .libs _libs
install-nodist_sdkHEADERS: $(nodist_sdk_HEADERS)
@$(NORMAL_INSTALL)
@list='$(nodist_sdk_HEADERS)'; test -n "$(sdkdir)" || list=; \
if test -n "$$list"; then \
echo " $(MKDIR_P) '$(DESTDIR)$(sdkdir)'"; \
$(MKDIR_P) "$(DESTDIR)$(sdkdir)" || exit 1; \
fi; \
for p in $$list; do \
if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \
echo "$$d$$p"; \
done | $(am__base_list) | \
while read files; do \
echo " $(INSTALL_HEADER) $$files '$(DESTDIR)$(sdkdir)'"; \
$(INSTALL_HEADER) $$files "$(DESTDIR)$(sdkdir)" || exit $$?; \
done
uninstall-nodist_sdkHEADERS:
@$(NORMAL_UNINSTALL)
@list='$(nodist_sdk_HEADERS)'; test -n "$(sdkdir)" || list=; \
files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \
dir='$(DESTDIR)$(sdkdir)'; $(am__uninstall_files_from_dir)
install-sdkHEADERS: $(sdk_HEADERS)
@$(NORMAL_INSTALL)
@list='$(sdk_HEADERS)'; test -n "$(sdkdir)" || list=; \
if test -n "$$list"; then \
echo " $(MKDIR_P) '$(DESTDIR)$(sdkdir)'"; \
$(MKDIR_P) "$(DESTDIR)$(sdkdir)" || exit 1; \
fi; \
for p in $$list; do \
if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \
echo "$$d$$p"; \
done | $(am__base_list) | \
while read files; do \
echo " $(INSTALL_HEADER) $$files '$(DESTDIR)$(sdkdir)'"; \
$(INSTALL_HEADER) $$files "$(DESTDIR)$(sdkdir)" || exit $$?; \
done
uninstall-sdkHEADERS:
@$(NORMAL_UNINSTALL)
@list='$(sdk_HEADERS)'; test -n "$(sdkdir)" || list=; \
files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \
dir='$(DESTDIR)$(sdkdir)'; $(am__uninstall_files_from_dir)
ID: $(am__tagged_files)
$(am__define_uniq_tagged_files); mkid -fID $$unique
tags: tags-am
TAGS: tags
tags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files)
set x; \
here=`pwd`; \
$(am__define_uniq_tagged_files); \
shift; \
if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \
test -n "$$unique" || unique=$$empty_fix; \
if test $$# -gt 0; then \
$(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \
"$$@" $$unique; \
else \
$(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \
$$unique; \
fi; \
fi
ctags: ctags-am
CTAGS: ctags
ctags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files)
$(am__define_uniq_tagged_files); \
test -z "$(CTAGS_ARGS)$$unique" \
|| $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \
$$unique
GTAGS:
here=`$(am__cd) $(top_builddir) && pwd` \
&& $(am__cd) $(top_srcdir) \
&& gtags -i $(GTAGS_ARGS) "$$here"
cscopelist: cscopelist-am
cscopelist-am: $(am__tagged_files)
list='$(am__tagged_files)'; \
case "$(srcdir)" in \
[\\/]* | ?:[\\/]*) sdir="$(srcdir)" ;; \
*) sdir=$(subdir)/$(srcdir) ;; \
esac; \
for i in $$list; do \
if test -f "$$i"; then \
echo "$(subdir)/$$i"; \
else \
echo "$$sdir/$$i"; \
fi; \
done >> $(top_builddir)/cscope.files
distclean-tags:
-rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
distdir: $(DISTFILES)
@srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
list='$(DISTFILES)'; \
dist_files=`for file in $$list; do echo $$file; done | \
sed -e "s|^$$srcdirstrip/||;t" \
-e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \
case $$dist_files in \
*/*) $(MKDIR_P) `echo "$$dist_files" | \
sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \
sort -u` ;; \
esac; \
for file in $$dist_files; do \
if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \
if test -d $$d/$$file; then \
dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \
if test -d "$(distdir)/$$file"; then \
find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \
fi; \
if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \
cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \
find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \
fi; \
cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \
else \
test -f "$(distdir)/$$file" \
|| cp -p $$d/$$file "$(distdir)/$$file" \
|| exit 1; \
fi; \
done
check-am: all-am
check: check-am
all-am: Makefile $(HEADERS) do-not-use-config.h xorg-server.h \
dix-config.h xorg-config.h xkb-config.h xwin-config.h \
kdrive-config.h version-config.h
installdirs:
for dir in "$(DESTDIR)$(sdkdir)" "$(DESTDIR)$(sdkdir)"; do \
test -z "$$dir" || $(MKDIR_P) "$$dir"; \
done
install: install-am
install-exec: install-exec-am
install-data: install-data-am
uninstall: uninstall-am
install-am: all-am
@$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am
installcheck: installcheck-am
install-strip:
if test -z '$(STRIP)'; then \
$(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
install; \
else \
$(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
"INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \
fi
mostlyclean-generic:
clean-generic:
distclean-generic:
-test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES)
-test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES)
maintainer-clean-generic:
@echo "This command is intended for maintainers to use"
@echo "it deletes files that may require special tools to rebuild."
clean: clean-am
clean-am: clean-generic clean-libtool mostlyclean-am
distclean: distclean-am
-rm -f Makefile
distclean-am: clean-am distclean-generic distclean-hdr distclean-tags
dvi: dvi-am
dvi-am:
html: html-am
html-am:
info: info-am
info-am:
install-data-am: install-nodist_sdkHEADERS install-sdkHEADERS
install-dvi: install-dvi-am
install-dvi-am:
install-exec-am:
install-html: install-html-am
install-html-am:
install-info: install-info-am
install-info-am:
install-man:
install-pdf: install-pdf-am
install-pdf-am:
install-ps: install-ps-am
install-ps-am:
installcheck-am:
maintainer-clean: maintainer-clean-am
-rm -f Makefile
maintainer-clean-am: distclean-am maintainer-clean-generic
mostlyclean: mostlyclean-am
mostlyclean-am: mostlyclean-generic mostlyclean-libtool
pdf: pdf-am
pdf-am:
ps: ps-am
ps-am:
uninstall-am: uninstall-nodist_sdkHEADERS uninstall-sdkHEADERS
.MAKE: all install-am install-strip
.PHONY: CTAGS GTAGS TAGS all all-am check check-am clean clean-generic \
clean-libtool cscopelist-am ctags ctags-am distclean \
distclean-generic distclean-hdr distclean-libtool \
distclean-tags distdir dvi dvi-am html html-am info info-am \
install install-am install-data install-data-am install-dvi \
install-dvi-am install-exec install-exec-am install-html \
install-html-am install-info install-info-am install-man \
install-nodist_sdkHEADERS install-pdf install-pdf-am \
install-ps install-ps-am install-sdkHEADERS install-strip \
installcheck installcheck-am installdirs maintainer-clean \
maintainer-clean-generic mostlyclean mostlyclean-generic \
mostlyclean-libtool pdf pdf-am ps ps-am tags tags-am uninstall \
uninstall-am uninstall-nodist_sdkHEADERS uninstall-sdkHEADERS
# Tell versions [3.59,3.63) of GNU make to not export all variables.
# Otherwise a system limit (for SysV at least) may be exceeded.
.NOEXPORT:

View File

@@ -0,0 +1,456 @@
/* include/dix-config.h. Generated from dix-config.h.in by configure. */
/* dix-config.h.in: not at all generated. -*- c -*- */
#ifndef _DIX_CONFIG_H_
#define _DIX_CONFIG_H_
/* Support BigRequests extension */
#define BIGREQS 1
/* Builder address */
#define BUILDERADDR "xorg@lists.freedesktop.org"
/* Operating System Name */
#define OSNAME "Linux 3.16.0-4-amd64 x86_64"
/* Operating System Vendor */
#define OSVENDOR ""
/* Builder string */
#define BUILDERSTRING ""
/* Default font path */
#define COMPILEDDEFAULTFONTPATH "/usr/share/fonts/X11/misc/,/usr/share/fonts/X11/TTF/,/usr/share/fonts/X11/OTF/,/usr/share/fonts/X11/Type1/,/usr/share/fonts/X11/100dpi/,/usr/share/fonts/X11/75dpi/"
/* Miscellaneous server configuration files path */
#define SERVER_MISC_CONFIG_PATH "/proc/self/cwd/usr/lib/xorg"
/* Support Composite Extension */
#define COMPOSITE 1
/* Support Damage extension */
#define DAMAGE 1
/* Use OsVendorVErrorF */
/* #undef DDXOSVERRORF */
/* Use ddxBeforeReset */
/* #undef DDXBEFORERESET */
/* Build DPMS extension */
#define DPMSExtension 1
/* Build GLX extension */
/* #undef GLXEXT */
/* Build GLX DRI loader */
/* #undef GLX_DRI */
/* Path to DRI drivers */
#define DRI_DRIVER_PATH "/usr/lib/x86_64-linux-gnu/dri"
/* Support XDM-AUTH*-1 */
#define HASXDMAUTH 1
/* Define to 1 if you have the `getdtablesize' function. */
#define HAS_GETDTABLESIZE 1
/* Define to 1 if you have the `getifaddrs' function. */
/* #undef HAS_GETIFADDRS */
/* Define to 1 if you have the `getpeereid' function. */
/* #undef HAS_GETPEEREID */
/* Define to 1 if you have the `getpeerucred' function. */
/* #undef HAS_GETPEERUCRED */
/* Define to 1 if you have the `mmap' function. */
#define HAS_MMAP 1
/* Support SHM */
#define HAS_SHM 1
/* Have the 'strlcpy' function */
#define HAS_STRLCPY 1
/* Define to 1 if you have the <asm/mtrr.h> header file. */
/* #undef HAVE_ASM_MTRR_H */
/* Has backtrace support */
/* #undef HAVE_BACKTRACE */
/* Define to 1 if you have the <byteswap.h> header file. */
#define HAVE_BYTESWAP_H 1
/* Define to 1 if you have cbrt */
#define HAVE_CBRT 1
/* Define to 1 if you have the <dbm.h> header file. */
/* #undef HAVE_DBM_H */
/* Define to 1 if you have the <dirent.h> header file, and it defines `DIR'.
*/
#define HAVE_DIRENT_H 1
/* Define to 1 if you have the <dlfcn.h> header file. */
#define HAVE_DLFCN_H 1
/* Define to 1 if you don't have `vprintf' but do have `_doprnt.' */
/* #undef HAVE_DOPRNT */
/* Have execinfo.h */
/* #undef HAVE_EXECINFO_H */
/* Define to 1 if you have the <fcntl.h> header file. */
#define HAVE_FCNTL_H 1
/* Define to 1 if you have the `geteuid' function. */
#define HAVE_GETEUID 1
/* Define to 1 if you have the `getisax' function. */
/* #undef HAVE_GETISAX */
/* Define to 1 if you have the `getuid' function. */
#define HAVE_GETUID 1
/* Define to 1 if you have the `getzoneid' function. */
/* #undef HAVE_GETZONEID */
/* Define to 1 if you have the <inttypes.h> header file. */
#define HAVE_INTTYPES_H 1
/* Have Quartz */
/* #undef XQUARTZ */
/* Support application updating through sparkle. */
/* #undef XQUARTZ_SPARKLE */
/* Prefix to use for bundle identifiers */
#define BUNDLE_ID_PREFIX "org.x"
/* Build a standalone xpbproxy */
/* #undef STANDALONE_XPBPROXY */
/* Define to 1 if you have the `m' library (-lm). */
#define HAVE_LIBM 1
/* Define to 1 if you have the libdispatch (GCD) available */
/* #undef HAVE_LIBDISPATCH */
/* Define to 1 if you have the `link' function. */
#define HAVE_LINK 1
/* Define to 1 if you have the <linux/agpgart.h> header file. */
/* #undef HAVE_LINUX_AGPGART_H */
/* Define to 1 if you have the <linux/apm_bios.h> header file. */
#define HAVE_LINUX_APM_BIOS_H 1
/* Define to 1 if you have the <linux/fb.h> header file. */
#define HAVE_LINUX_FB_H 1
/* Define to 1 if you have the `mkstemp' function. */
#define HAVE_MKSTEMP 1
/* Define to 1 if you have the <ndbm.h> header file. */
/* #undef HAVE_NDBM_H */
/* Define to 1 if you have the <ndir.h> header file, and it defines `DIR'. */
/* #undef HAVE_NDIR_H */
/* Define to 1 if you have the <rpcsvc/dbm.h> header file. */
/* #undef HAVE_RPCSVC_DBM_H */
/* Define to use libc SHA1 functions */
#define HAVE_SHA1_IN_LIBC 1
/* Define to use CommonCrypto SHA1 functions */
/* #undef HAVE_SHA1_IN_COMMONCRYPTO */
/* Define to use libmd SHA1 functions */
/* #undef HAVE_SHA1_IN_LIBMD */
/* Define to use libgcrypt SHA1 functions */
/* #undef HAVE_SHA1_IN_LIBGCRYPT */
/* Define to use libsha1 for SHA1 */
/* #undef HAVE_SHA1_IN_LIBSHA1 */
/* Define to 1 if you have the `shmctl64' function. */
/* #undef HAVE_SHMCTL64 */
/* Define to 1 if you have the <stdint.h> header file. */
#define HAVE_STDINT_H 1
/* Define to 1 if you have the <stdlib.h> header file. */
#define HAVE_STDLIB_H 1
/* Define to 1 if you have the `strchr' function. */
#define HAVE_STRCHR 1
/* Define to 1 if you have the <strings.h> header file. */
#define HAVE_STRINGS_H 1
/* Define to 1 if you have the <string.h> header file. */
#define HAVE_STRING_H 1
/* Define to 1 if you have the `strrchr' function. */
#define HAVE_STRRCHR 1
/* Define to 1 if you have the `strtol' function. */
#define HAVE_STRTOL 1
/* Define to 1 if SYSV IPC is available */
#define HAVE_SYSV_IPC 1
/* Define to 1 if you have the <sys/agpio.h> header file. */
/* #undef HAVE_SYS_AGPIO_H */
/* Define to 1 if you have the <sys/dir.h> header file, and it defines `DIR'.
*/
/* #undef HAVE_SYS_DIR_H */
/* Define to 1 if you have the <sys/io.h> header file. */
/* #undef HAVE_SYS_IO_H */
/* Define to 1 if you have the <sys/ndir.h> header file, and it defines `DIR'.
*/
/* #undef HAVE_SYS_NDIR_H */
/* Define to 1 if you have the <sys/stat.h> header file. */
#define HAVE_SYS_STAT_H 1
/* Define to 1 if you have the <sys/types.h> header file. */
#define HAVE_SYS_TYPES_H 1
/* Define to 1 if you have the <sys/utsname.h> header file. */
#define HAVE_SYS_UTSNAME_H 1
/* Define to 1 if you have the <sys/vm86.h> header file. */
/* #undef HAVE_SYS_VM86_H */
/* Define to 1 if you have the <tslib.h> header file. */
/* #undef HAVE_TSLIB_H */
/* Define to 1 if you have the <unistd.h> header file. */
#define HAVE_UNISTD_H 1
/* Define to 1 if you have the <fnmatch.h> header file. */
#define HAVE_FNMATCH_H 1
/* Have /dev/urandom */
/* #undef HAVE_URANDOM */
/* Define to 1 if you have the `vprintf' function. */
#define HAVE_VPRINTF 1
/* Define to 1 if you have the `vasprintf' function. */
#define HAVE_VASPRINTF 1
/* Support IPv6 for TCP connections */
#define IPv6 1
/* Support os-specific local connections */
/* #undef LOCALCONN */
/* Support MIT-SHM Extension */
#define MITSHM 1
/* Enable some debugging code */
/* #undef DEBUG */
/* Name of package */
#define PACKAGE "xorg-server"
/* Internal define for Xinerama */
#define PANORAMIX 1
/* Overall prefix */
#define PROJECTROOT "/proc/self/cwd/usr"
/* Support RANDR extension */
#define RANDR 1
/* Support Record extension */
#define XRECORD 1
/* Support RENDER extension */
#define RENDER 1
/* Support X resource extension */
#define RES 1
/* Support client ID tracking in X resource extension */
#define CLIENTIDS 1
/* Support MIT-SCREEN-SAVER extension */
#define SCREENSAVER 1
/* Support Secure RPC ("SUN-DES-1") authentication for X11 clients */
/* #undef SECURE_RPC */
/* Support SHAPE extension */
#define SHAPE 1
/* Define to 1 on systems derived from System V Release 4 */
/* #undef SVR4 */
/* Support TCP socket connections */
#define TCPCONN 1
/* Enable touchscreen support */
/* #undef TOUCHSCREEN */
/* Support tslib touchscreen abstraction library */
/* #undef TSLIB */
/* Support UNIX socket connections */
#define UNIXCONN 1
/* Define to use byteswap macros from <sys/endian.h> */
#define USE_SYS_ENDIAN_H 1
/* unaligned word accesses behave as expected */
/* #undef WORKING_UNALIGNED_INT */
/* Build X string registry */
#define XREGISTRY 1
/* Build X-ACE extension */
#define XACE 1
/* Build SELinux extension */
/* #undef XSELINUX */
/* Support XCMisc extension */
#define XCMISC 1
/* Build Security extension */
/* #undef XCSECURITY */
/* Support Xdmcp */
#define XDMCP 1
/* Build XFree86 BigFont extension */
/* #undef XF86BIGFONT */
/* Support XFree86 Video Mode extension */
/* #undef XF86VIDMODE */
/* Support XFixes extension */
#define XFIXES 1
/* Build XDGA support */
/* #undef XFreeXDGA */
/* Support Xinerama extension */
#define XINERAMA 1
/* Vendor release */
/* #undef XORG_RELEASE */
/* Current Xorg version */
/* #undef XORG_VERSION_CURRENT */
/* Xorg release date */
#define XORG_DATE "2012-01-27"
/* Build Xv Extension */
#define XvExtension 1
/* Build XvMC Extension */
#define XvMCExtension 1
/* Support XSync extension */
#define XSYNC 1
/* Support XTest extension */
#define XTEST 1
/* Support Xv extension */
#define XV 1
/* Support DRI extension */
/* #undef XF86DRI */
/* Build DRI2 extension */
/* #undef DRI2 */
/* Build DBE support */
#define DBE 1
/* Vendor name */
#define XVENDORNAME "The X.Org Foundation"
/* Enable GNU and other extensions to the C environment for GLIBC */
/* #undef _GNU_SOURCE */
/* Define to empty if `const' does not conform to ANSI C. */
/* #undef const */
/* Define to `int' if <sys/types.h> does not define. */
/* #undef pid_t */
/* Build Rootless code */
/* #undef ROOTLESS */
/* Define to 1 if unsigned long is 64 bits. */
/* #undef _XSERVER64 */
/* System is BSD-like */
/* #undef CSRG_BASED */
/* Define to 1 if `struct sockaddr_in' has a `sin_len' member */
/* #undef BSD44SOCKETS */
/* Support D-Bus */
#define HAVE_DBUS 1
/* Use libudev for input hotplug */
/* #undef CONFIG_UDEV */
/* Use D-Bus for input hotplug */
/* #undef CONFIG_NEED_DBUS */
/* Support the D-Bus hotplug API */
/* #undef CONFIG_DBUS_API */
/* Support HAL for hotplug */
/* #undef CONFIG_HAL */
/* Have a monotonic clock from clock_gettime() */
/* #undef MONOTONIC_CLOCK */
/* Define to 1 if the DTrace Xserver provider probes should be built in */
/* #undef XSERVER_DTRACE */
/* Define to 16-bit byteswap macro */
#define bswap_16 __swap16
/* Define to 32-bit byteswap macro */
#define bswap_32 __swap32
/* Define to 64-bit byteswap macro */
#define bswap_64 __swap64
/* Need the strcasecmp function. */
#define NEED_STRCASECMP 1
/* Need the strncasecmp function. */
#define NEED_STRNCASECMP 1
/* Need the strcasestr function. */
/* #undef NEED_STRCASESTR */
/* Define to 1 if you have the `ffs' function. */
/* #undef HAVE_FFS */
/* The compiler supported TLS storage class, prefering initial-exec if tls_model is supported */
#define TLS __thread __attribute__((tls_model("initial-exec")))
/* Correctly set _XSERVER64 for OSX fat binaries */
#ifdef __APPLE__
#include "dix-config-apple-verbatim.h"
#endif
#endif /* _DIX_CONFIG_H_ */

View File

@@ -0,0 +1,807 @@
/* include/do-not-use-config.h. Generated from do-not-use-config.h.in by configure. */
/* include/do-not-use-config.h.in. Generated from configure.ac by autoheader. */
/* Define if building universal (internal helper macro) */
/* #undef AC_APPLE_UNIVERSAL_BUILD */
/* Build AIGLX loader */
/* #undef AIGLX */
/* Default base font path */
#define BASE_FONT_PATH "/usr/share/fonts/X11"
/* Support BigRequests extension */
#define BIGREQS 1
/* Define to 1 if `struct sockaddr_in' has a `sin_len' member */
/* #undef BSD44SOCKETS */
/* Builder address */
#define BUILDERADDR "xorg@lists.freedesktop.org"
/* Builder string */
#define BUILDERSTRING ""
/* Prefix to use for bundle identifiers */
#define BUNDLE_ID_PREFIX "org.x"
/* Support client ID tracking */
#define CLIENTIDS 1
/* Default font path */
#define COMPILEDDEFAULTFONTPATH "/usr/share/fonts/X11/misc/,/usr/share/fonts/X11/TTF/,/usr/share/fonts/X11/OTF/,/usr/share/fonts/X11/Type1/,/usr/share/fonts/X11/100dpi/,/usr/share/fonts/X11/75dpi/"
/* Support Composite Extension */
#define COMPOSITE 1
/* Use the D-Bus input configuration API */
/* #undef CONFIG_DBUS_API */
/* Use the HAL hotplug API */
/* #undef CONFIG_HAL */
/* Use D-Bus for input hotplug */
/* #undef CONFIG_NEED_DBUS */
/* Use libudev for input hotplug */
/* #undef CONFIG_UDEV */
/* Define to one of `_getb67', `GETB67', `getb67' for Cray-2 and Cray-YMP
systems. This function is required for `alloca.c' support on those systems.
*/
/* #undef CRAY_STACKSEG_END */
/* System is BSD-like */
/* #undef CSRG_BASED */
/* Simple debug messages */
/* #undef CYGDEBUG */
/* Debug window manager */
/* #undef CYGMULTIWINDOW_DEBUG */
/* Debug messages for window handling */
/* #undef CYGWINDOWING_DEBUG */
/* Define to 1 if using `alloca.c'. */
/* #undef C_ALLOCA */
/* Support Damage extension */
#define DAMAGE 1
/* Support DBE extension */
#define DBE 1
/* Use ddxBeforeReset */
/* #undef DDXBEFORERESET */
/* Use OsVendorVErrorF */
/* #undef DDXOSVERRORF */
/* Enable debugging code */
/* #undef DEBUG */
/* Default library install path */
/* #undef DEFAULT_LIBRARY_PATH */
/* Default log location */
/* #undef DEFAULT_LOGDIR */
/* Default log location */
/* #undef DEFAULT_LOGPREFIX */
/* Default module search path */
/* #undef DEFAULT_MODULE_PATH */
/* Support DGA extension */
/* #undef DGA */
/* Support DPMS extension */
#define DPMSExtension 1
/* Build DRI2 extension */
/* #undef DRI2 */
/* Build DRI2 AIGLX loader */
/* #undef DRI2_AIGLX */
/* Default DRI driver path */
#define DRI_DRIVER_PATH "/usr/lib/x86_64-linux-gnu/dri"
/* Build GLX extension */
/* #undef GLXEXT */
/* Support XDM-AUTH*-1 */
#define HASXDMAUTH 1
/* System has /dev/xf86 aperture driver */
/* #undef HAS_APERTURE_DRV */
/* Cygwin has /dev/windows for signaling new win32 messages */
/* #undef HAS_DEVWINDOWS */
/* Have the 'getdtablesize' function. */
#define HAS_GETDTABLESIZE 1
/* Have the 'getifaddrs' function. */
/* #undef HAS_GETIFADDRS */
/* Have the 'getpeereid' function. */
/* #undef HAS_GETPEEREID */
/* Have the 'getpeerucred' function. */
/* #undef HAS_GETPEERUCRED */
/* Have the 'mmap' function. */
#define HAS_MMAP 1
/* Define to 1 if NetBSD built-in MTRR support is available */
/* #undef HAS_MTRR_BUILTIN */
/* MTRR support available */
/* #undef HAS_MTRR_SUPPORT */
/* Support SHM */
#define HAS_SHM 1
/* Have the 'strlcpy' function */
#define HAS_STRLCPY 1
/* Use Windows sockets */
/* #undef HAS_WINSOCK */
/* Define to 1 if you have `alloca', as a function or macro. */
#define HAVE_ALLOCA 1
/* Define to 1 if you have <alloca.h> and it should be used (not on Ultrix).
*/
#define HAVE_ALLOCA_H 1
/* Define to 1 if you have the <asm/mtrr.h> header file. */
/* #undef HAVE_ASM_MTRR_H */
/* Define to 1 if you have the `authdes_create' function. */
/* #undef HAVE_AUTHDES_CREATE */
/* Define to 1 if you have the `authdes_seccreate' function. */
/* #undef HAVE_AUTHDES_SECCREATE */
/* Has backtrace support */
/* #undef HAVE_BACKTRACE */
/* Define to 1 if you have the <byteswap.h> header file. */
#define HAVE_BYTESWAP_H 1
/* Have the 'cbrt' function */
#define HAVE_CBRT 1
/* Define to 1 if you have the `clock_gettime' function. */
#define HAVE_CLOCK_GETTIME 1
/* Define to 1 if you have the <dbm.h> header file. */
/* #undef HAVE_DBM_H */
/* Have D-Bus support */
#define HAVE_DBUS 1
/* Define to 1 if you have the <dirent.h> header file, and it defines `DIR'.
*/
#define HAVE_DIRENT_H 1
/* Define to 1 if you have the <dlfcn.h> header file. */
#define HAVE_DLFCN_H 1
/* Define to 1 if you don't have `vprintf' but do have `_doprnt.' */
/* #undef HAVE_DOPRNT */
/* Have execinfo.h */
/* #undef HAVE_EXECINFO_H */
/* Define to 1 if you have the <fcntl.h> header file. */
#define HAVE_FCNTL_H 1
/* Define to 1 if you have the `ffs' function. */
/* #undef HAVE_FFS */
/* Define to 1 if you have the <fnmatch.h> header file. */
#define HAVE_FNMATCH_H 1
/* Define to 1 if you have the `geteuid' function. */
#define HAVE_GETEUID 1
/* Define to 1 if you have the `getisax' function. */
/* #undef HAVE_GETISAX */
/* Define to 1 if you have the `getopt' function. */
#define HAVE_GETOPT 1
/* Define to 1 if you have the `getopt_long' function. */
#define HAVE_GETOPT_LONG 1
/* Define to 1 if you have the `getuid' function. */
#define HAVE_GETUID 1
/* Define to 1 if you have the `getzoneid' function. */
/* #undef HAVE_GETZONEID */
/* Define to 1 if you have the <inttypes.h> header file. */
#define HAVE_INTTYPES_H 1
/* Define to 1 if you have the `audit' library (-laudit). */
/* #undef HAVE_LIBAUDIT */
/* Define to 1 if you have the <libaudit.h> header file. */
/* #undef HAVE_LIBAUDIT_H */
/* Define to 1 if you have the libdispatch (GCD) available */
/* #undef HAVE_LIBDISPATCH */
/* Define to 1 if you have the `m' library (-lm). */
#define HAVE_LIBM 1
/* Define to 1 if you have the `ws2_32' library (-lws2_32). */
/* #undef HAVE_LIBWS2_32 */
/* Define to 1 if you have the `link' function. */
#define HAVE_LINK 1
/* Define to 1 if you have the <linux/agpgart.h> header file. */
/* #undef HAVE_LINUX_AGPGART_H */
/* Define to 1 if you have the <linux/apm_bios.h> header file. */
#define HAVE_LINUX_APM_BIOS_H 1
/* Define to 1 if you have the <linux/fb.h> header file. */
#define HAVE_LINUX_FB_H 1
/* Define to 1 if you have the <machine/mtrr.h> header file. */
/* #undef HAVE_MACHINE_MTRR_H */
/* Define to 1 if you have the `memmove' function. */
#define HAVE_MEMMOVE 1
/* Define to 1 if you have the <memory.h> header file. */
#define HAVE_MEMORY_H 1
/* Define to 1 if you have the `memset' function. */
#define HAVE_MEMSET 1
/* Define to 1 if you have the `mkstemp' function. */
#define HAVE_MKSTEMP 1
/* Define to 1 if you have the <ndbm.h> header file. */
/* #undef HAVE_NDBM_H */
/* Define to 1 if you have the <ndir.h> header file, and it defines `DIR'. */
/* #undef HAVE_NDIR_H */
/* Define to 1 if you have the `pci_device_enable' function. */
/* #undef HAVE_PCI_DEVICE_ENABLE */
/* Define to 1 if you have the `pci_device_is_boot_vga' function. */
/* #undef HAVE_PCI_DEVICE_IS_BOOT_VGA */
/* Define to 1 if you have the `pci_device_vgaarb_init' function. */
/* #undef HAVE_PCI_DEVICE_VGAARB_INIT */
/* Define to 1 if you have the `pci_system_init_dev_mem' function. */
/* #undef HAVE_PCI_SYSTEM_INIT_DEV_MEM */
/* Define to 1 if you have the <rpcsvc/dbm.h> header file. */
/* #undef HAVE_RPCSVC_DBM_H */
/* Define to 1 if you have the <SDL/SDL.h> header file. */
#define HAVE_SDL_SDL_H 1
/* Use CommonCrypto SHA1 functions */
/* #undef HAVE_SHA1_IN_COMMONCRYPTO */
/* Use libc SHA1 functions */
#define HAVE_SHA1_IN_LIBC 1
/* Use libgcrypt SHA1 functions */
/* #undef HAVE_SHA1_IN_LIBGCRYPT */
/* Use libmd SHA1 functions */
/* #undef HAVE_SHA1_IN_LIBMD */
/* Use libsha1 for SHA1 */
/* #undef HAVE_SHA1_IN_LIBSHA1 */
/* Define to 1 if you have the `shmctl64' function. */
/* #undef HAVE_SHMCTL64 */
/* Define to 1 if the system has the type `socklen_t'. */
#define HAVE_SOCKLEN_T 1
/* Define to 1 if you have the <stdint.h> header file. */
#define HAVE_STDINT_H 1
/* Define to 1 if you have the <stdlib.h> header file. */
#define HAVE_STDLIB_H 1
/* Define to 1 if you have the `strcasestr' function. */
#define HAVE_STRCASESTR 1
/* Define to 1 if you have the `strchr' function. */
#define HAVE_STRCHR 1
/* Define to 1 if you have the <strings.h> header file. */
#define HAVE_STRINGS_H 1
/* Define to 1 if you have the <string.h> header file. */
#define HAVE_STRING_H 1
/* Define to 1 if you have the <stropts.h> header file. */
/* #undef HAVE_STROPTS_H */
/* Define to 1 if you have the `strrchr' function. */
#define HAVE_STRRCHR 1
/* Define to 1 if you have the `strtol' function. */
#define HAVE_STRTOL 1
/* Define to 1 if SYSV IPC is available */
#define HAVE_SYSV_IPC 1
/* Define to 1 if you have the <sys/agpgart.h> header file. */
/* #undef HAVE_SYS_AGPGART_H */
/* Define to 1 if you have the <sys/agpio.h> header file. */
/* #undef HAVE_SYS_AGPIO_H */
/* Define to 1 if you have the <sys/dir.h> header file, and it defines `DIR'.
*/
/* #undef HAVE_SYS_DIR_H */
/* Define to 1 if you have the <sys/io.h> header file. */
/* #undef HAVE_SYS_IO_H */
/* Define to 1 if you have the <sys/kd.h> header file. */
/* #undef HAVE_SYS_KD_H */
/* Define to 1 if you have the <sys/linker.h> header file. */
/* #undef HAVE_SYS_LINKER_H */
/* Define to 1 if you have the <sys/memrange.h> header file. */
/* #undef HAVE_SYS_MEMRANGE_H */
/* Define to 1 if you have the <sys/ndir.h> header file, and it defines `DIR'.
*/
/* #undef HAVE_SYS_NDIR_H */
/* Define to 1 if you have the <sys/stat.h> header file. */
#define HAVE_SYS_STAT_H 1
/* Define to 1 if you have the <sys/types.h> header file. */
#define HAVE_SYS_TYPES_H 1
/* Define to 1 if you have the <sys/utsname.h> header file. */
#define HAVE_SYS_UTSNAME_H 1
/* Define to 1 if you have the <sys/vm86.h> header file. */
/* #undef HAVE_SYS_VM86_H */
/* Define to 1 if you have the <sys/vt.h> header file. */
/* #undef HAVE_SYS_VT_H */
/* Define to 1 if you have the <unistd.h> header file. */
#define HAVE_UNISTD_H 1
/* Define to 1 if you have the `vasprintf' function. */
#define HAVE_VASPRINTF 1
/* Define to 1 if you have the `vprintf' function. */
#define HAVE_VPRINTF 1
/* Define to 1 if you have the `vsnprintf' function. */
#define HAVE_VSNPRINTF 1
/* Define to 1 if you have the `walkcontext' function. */
/* #undef HAVE_WALKCONTEXT */
/* Support IPv6 for TCP connections */
#define IPv6 1
/* Build kdrive ddx */
#define KDRIVEDDXACTIONS /**/
/* Build fbdev-based kdrive server */
/* #undef KDRIVEFBDEV */
/* Build Kdrive X server */
#define KDRIVESERVER 1
/* Enable KDrive evdev driver */
#define KDRIVE_EVDEV 1
/* Enable KDrive kbd driver */
#define KDRIVE_KBD 1
/* Enable KDrive mouse driver */
#define KDRIVE_MOUSE 1
/* Support os-specific local connections */
/* #undef LOCALCONN */
/* Define to the sub-directory in which libtool stores uninstalled libraries.
*/
#define LT_OBJDIR ".libs/"
/* Support MIT-SHM extension */
#define MITSHM 1
/* Have monotonic clock from clock_gettime() */
/* #undef MONOTONIC_CLOCK */
/* Do not have 'strcasecmp'. */
#define NEED_STRCASECMP 1
/* Do not have 'strcasestr'. */
/* #undef NEED_STRCASESTR */
/* Do not have 'strncasecmp'. */
#define NEED_STRNCASECMP 1
/* Need XFree86 helper functions */
/* #undef NEED_XF86_PROTOTYPES */
/* Need XFree86 typedefs */
/* #undef NEED_XF86_TYPES */
/* Define to 1 if modules should avoid the libcwrapper */
#define NO_LIBCWRAPPER 1
/* Operating System Name */
#define OSNAME "Linux 3.16.0-4-amd64 x86_64"
/* Operating System Vendor */
#define OSVENDOR ""
/* Name of package */
#define PACKAGE "xorg-server"
/* Define to the address where bug reports for this package should be sent. */
#define PACKAGE_BUGREPORT "https://bugs.freedesktop.org/enter_bug.cgi?product=xorg"
/* Define to the full name of this package. */
#define PACKAGE_NAME "xorg-server"
/* Define to the full name and version of this package. */
#define PACKAGE_STRING "xorg-server 1.11.4"
/* Define to the one symbol short name of this package. */
#define PACKAGE_TARNAME "xorg-server"
/* Define to the home page for this package. */
#define PACKAGE_URL ""
/* Define to the version of this package. */
#define PACKAGE_VERSION "1.11.4"
/* Major version of this package */
#define PACKAGE_VERSION_MAJOR 1
/* Minor version of this package */
#define PACKAGE_VERSION_MINOR 11
/* Patch version of this package */
#define PACKAGE_VERSION_PATCHLEVEL 4
/* Internal define for Xinerama */
#define PANORAMIX 1
/* System has PC console */
/* #undef PCCONS_SUPPORT */
/* Default PCI text file ID path */
#define PCI_TXT_IDS_PATH ""
/* System has PC console */
/* #undef PCVT_SUPPORT */
/* Overall prefix */
#define PROJECTROOT "/proc/self/cwd/usr"
/* Support RANDR extension */
#define RANDR 1
/* Make PROJECT_ROOT relative to the xserver location */
/* #undef RELOCATE_PROJECTROOT */
/* Support RENDER extension */
#define RENDER 1
/* Support X resource extension */
#define RES 1
/* Build Rootless code */
/* #undef ROOTLESS */
/* Support MIT-SCREEN-SAVER extension */
#define SCREENSAVER 1
/* Support Secure RPC ("SUN-DES-1") authentication for X11 clients */
/* #undef SECURE_RPC */
/* Server miscellaneous config path */
#define SERVER_MISC_CONFIG_PATH "/proc/self/cwd/usr/lib/xorg"
/* Support SHAPE extension */
#define SHAPE 1
/* The size of `unsigned long', as computed by sizeof. */
#define SIZEOF_UNSIGNED_LONG 4
/* If using the C implementation of alloca, define if you know the
direction of stack growth for your system; otherwise it will be
automatically deduced at runtime.
STACK_DIRECTION > 0 => grows toward higher addresses
STACK_DIRECTION < 0 => grows toward lower addresses
STACK_DIRECTION = 0 => direction of growth unknown */
/* #undef STACK_DIRECTION */
/* Build a standalone xpbproxy */
/* #undef STANDALONE_XPBPROXY */
/* Define to 1 if you have the ANSI C header files. */
#define STDC_HEADERS 1
/* Support PC98 */
/* #undef SUPPORT_PC98 */
/* Define to 1 on systems derived from System V Release 4 */
/* #undef SVR4 */
/* Location of system.XWinrc */
/* #undef SYSCONFDIR */
/* System has syscons console */
/* #undef SYSCONS_SUPPORT */
/* Support TCP socket connections */
#define TCPCONN 1
/* The compiler supported TLS storage class, prefering initial-exec if
tls_model is supported */
#define TLS __thread __attribute__((tls_model("initial-exec")))
/* Have tslib support */
/* #undef TSLIB */
/* Support UNIX socket connections */
#define UNIXCONN 1
/* NetBSD PIO alpha IO */
/* #undef USE_ALPHA_PIO */
/* BSD AMD64 iopl */
/* #undef USE_AMD64_IOPL */
/* BSD /dev/io */
/* #undef USE_DEV_IO */
/* BSD i386 iopl */
/* #undef USE_I386_IOPL */
/* Use SIGIO handlers for input device events by default */
#define USE_SIGIO_BY_DEFAULT TRUE
/* Define to use byteswap macros from <sys/endian.h> */
#define USE_SYS_ENDIAN_H 1
/* Vendor man version */
#define VENDOR_MAN_VERSION "Version 1.11.4"
/* Vendor name */
#define VENDOR_NAME "The X.Org Foundation"
/* Vendor name */
#define VENDOR_NAME_SHORT "X.Org"
/* Vendor release */
#define VENDOR_RELEASE (((1) * 10000000) + ((11) * 100000) + ((4) * 1000) + 0)
/* Version number of package */
#define VERSION "1.11.4"
/* Building with libdrm support */
/* #undef WITH_LIBDRM */
/* Building vgahw module */
/* #undef WITH_VGAHW */
/* Define WORDS_BIGENDIAN to 1 if your processor stores words with the most
significant byte first (like Motorola and SPARC, unlike Intel). */
#if defined AC_APPLE_UNIVERSAL_BUILD
# if defined __BIG_ENDIAN__
# define WORDS_BIGENDIAN 1
# endif
#else
# ifndef WORDS_BIGENDIAN
/* # undef WORDS_BIGENDIAN */
# endif
#endif
/* System has wscons console */
/* #undef WSCONS_SUPPORT */
/* Build X-ACE extension */
#define XACE 1
/* Support XCMisc extension */
#define XCMISC 1
/* Build Security extension */
/* #undef XCSECURITY */
/* Support XDM Control Protocol */
#define XDMCP 1
/* Support XF86 Big font extension */
/* #undef XF86BIGFONT */
/* Name of configuration file */
/* #undef XF86CONFIGFILE */
/* Build DRI extension */
/* #undef XF86DRI */
/* Support XFree86 Video Mode extension */
/* #undef XF86VIDMODE */
/* Support XFixes extension */
#define XFIXES 1
/* Building loadable XFree86 server */
/* #undef XFree86LOADER */
/* Building XFree86 server */
/* #undef XFree86Server */
/* Build XDGA support */
/* #undef XFreeXDGA */
/* Support Xinerama extension */
#define XINERAMA 1
/* Support X Input extension */
#define XINPUT 1
/* Path to XKB data */
#define XKB_BASE_DIRECTORY "/proc/self/cwd/usr/share/X11/xkb"
/* Path to XKB bin dir */
#define XKB_BIN_DIRECTORY "/proc/self/cwd/usr/bin"
/* Default XKB layout */
#define XKB_DFLT_LAYOUT "us"
/* Default XKB model */
#define XKB_DFLT_MODEL "pc105"
/* Default XKB options */
#define XKB_DFLT_OPTIONS ""
/* Default XKB ruleset */
#define XKB_DFLT_RULES "evdev"
/* Default XKB variant */
#define XKB_DFLT_VARIANT ""
/* Path to XKB output dir */
#define XKM_OUTPUT_DIR "/proc/self/cwd/tmp/"
/* Building Xorg server */
/* #undef XORGSERVER */
/* Vendor release */
#define XORG_DATE "2012-01-27"
/* Vendor man version */
#define XORG_MAN_VERSION "Version 1.11.4"
/* Building Xorg server */
/* #undef XORG_SERVER */
/* Current Xorg version */
/* #undef XORG_VERSION_CURRENT */
/* Have Quartz */
/* #undef XQUARTZ */
/* Support application updating through sparkle. */
/* #undef XQUARTZ_SPARKLE */
/* Support Record extension */
#define XRECORD 1
/* Build registry module */
#define XREGISTRY 1
/* Build Xsdl server */
#define XSDLSERVER 1
/* Build SELinux extension */
/* #undef XSELINUX */
/* Define to 1 if the DTrace Xserver provider probes should be built in. */
/* #undef XSERVER_DTRACE */
/* Use libpciaccess for all pci manipulation */
/* #undef XSERVER_LIBPCIACCESS */
/* Support XSync extension */
#define XSYNC 1
/* Support XTest extension */
#define XTEST 1
/* Support Xv extension */
#define XV 1
/* Vendor name */
#define XVENDORNAME "The X.Org Foundation"
/* Short vendor name */
#define XVENDORNAMESHORT "X.Org"
/* Build Xv extension */
#define XvExtension 1
/* Build XvMC extension */
#define XvMCExtension 1
/* Define to 1 if `lex' declares `yytext' as a `char *' by default, not a
`char[]'. */
/* #undef YYTEXT_POINTER */
/* Enable large inode numbers on Mac OS X 10.5. */
#ifndef _DARWIN_USE_64_BIT_INODE
# define _DARWIN_USE_64_BIT_INODE 1
#endif
/* Number of bits in a file offset, on hosts where this is settable. */
/* #undef _FILE_OFFSET_BITS */
/* Enable GNU and other extensions to the C environment for glibc */
/* #undef _GNU_SOURCE */
/* Define for large files, on AIX-style hosts. */
/* #undef _LARGE_FILES */
/* Defined if needed to expose struct msghdr.msg_control */
/* #undef _XOPEN_SOURCE */
/* Define to 1 if unsigned long is 64 bits. */
/* #undef _XSERVER64 */
/* Vendor web address for support */
/* #undef __VENDORDWEBSUPPORT__ */
/* Name of configuration directory */
/* #undef __XCONFIGDIR__ */
/* Name of configuration file */
/* #undef __XCONFIGFILE__ */
/* Name of X server */
/* #undef __XSERVERNAME__ */
/* Define to 16-bit byteswap macro */
#define bswap_16 __swap16
/* Define to 32-bit byteswap macro */
#define bswap_32 __swap32
/* Define to 64-bit byteswap macro */
#define bswap_64 __swap64
/* Define to empty if `const' does not conform to ANSI C. */
/* #undef const */
/* Define to `int' if <sys/types.h> does not define. */
/* #undef pid_t */
/* Define to `unsigned int' if <sys/types.h> does not define. */
/* #undef size_t */

View File

@@ -0,0 +1,41 @@
/* include/kdrive-config.h. Generated from kdrive-config.h.in by configure. */
/* kdrive-config.h.in: not at all generated. -*- c -*-
*/
#ifndef _KDRIVE_CONFIG_H_
#define _KDRIVE_CONFIG_H_
#include <dix-config.h>
#include <xkb-config.h>
/* Building kdrive server. */
#define KDRIVESERVER 1
/* Include framebuffer support in X servers */
/* #undef KDRIVEFBDEV */
/* Enable touchscreen support */
/* #undef TOUCHSCREEN */
/* Support tslib touchscreen abstraction library */
/* #undef TSLIB */
/* Support KDrive kbd driver */
#define KDRIVE_KBD 1
/* Support KDrive mouse driver */
#define KDRIVE_MOUSE 1
/* Support KDrive evdev driver */
#define KDRIVE_EVDEV 1
/* Verbose debugging output hilarity */
/* #undef DEBUG */
/* Have the backtrace() function. */
/* #undef HAVE_BACKTRACE */
/* Have execinfo.h for backtrace(). */
/* #undef HAVE_EXECINFO_H */
#endif /* _KDRIVE_CONFIG_H_ */

View File

@@ -0,0 +1 @@
timestamp for include/do-not-use-config.h

View File

@@ -0,0 +1 @@
timestamp for include/xorg-server.h

View File

@@ -0,0 +1 @@
timestamp for include/dix-config.h

View File

@@ -0,0 +1 @@
timestamp for include/xorg-config.h

View File

@@ -0,0 +1 @@
timestamp for include/xkb-config.h

View File

@@ -0,0 +1 @@
timestamp for include/xwin-config.h

View File

@@ -0,0 +1 @@
timestamp for include/kdrive-config.h

View File

@@ -0,0 +1 @@
timestamp for include/version-config.h

View File

@@ -0,0 +1,17 @@
/* include/version-config.h. Generated from version-config.h.in by configure. */
/* version-config.h.in: not generated */
#ifndef VERSION_CONFIG_H
#define VERSION_CONFIG_H
/* Vendor man version */
#define VENDOR_MAN_VERSION "Version 1.11.4"
/* Vendor name */
#define VENDOR_NAME "The X.Org Foundation"
/* Vendor release */
#define VENDOR_RELEASE (((1) * 10000000) + ((11) * 100000) + ((4) * 1000) + 0)
#endif /* VERSION_CONFIG_H */

View File

@@ -0,0 +1,36 @@
/* include/xkb-config.h. Generated from xkb-config.h.in by configure. */
/* xkb-config.h.in: not at all generated. -*- c -*-
*
*/
#ifndef _XKB_CONFIG_H_
#define _XKB_CONFIG_H_
/* Default set of XKB rules. */
#define XKB_DFLT_RULES "evdev"
/* Default XKB model. */
#define XKB_DFLT_MODEL "pc105"
/* Default XKB layout. */
#define XKB_DFLT_LAYOUT "us"
/* Default XKB variant. */
#define XKB_DFLT_VARIANT ""
/* Default XKB options. */
#define XKB_DFLT_OPTIONS ""
/* Path to XKB definitions. */
#define XKB_BASE_DIRECTORY "/proc/self/cwd/usr/share/X11/xkb"
/* Path to xkbcomp. */
#define XKB_BIN_DIRECTORY "/proc/self/cwd/usr/bin"
/* XKB output dir for compiled keymaps. */
#define XKM_OUTPUT_DIR "/proc/self/cwd/tmp/"
/* Do not have `strcasecmp'. */
#define NEED_STRCASECMP 1
#endif /* _XKB_CONFIG_H_ */

View File

@@ -0,0 +1,146 @@
/* include/xorg-config.h. Generated from xorg-config.h.in by configure. */
/* xorg-config.h.in: not at all generated. -*- c -*-
*
* This file differs from xorg-server.h.in in that -server is installed
* with the rest of the SDK for external drivers/modules to use, whereas
* -config is for internal use only (i.e. building the DDX).
*
*/
#ifndef _XORG_CONFIG_H_
#define _XORG_CONFIG_H_
#include <dix-config.h>
#include <xkb-config.h>
/* Building Xorg server. */
/* #undef XORGSERVER */
/* Current X.Org version. */
/* #undef XORG_VERSION_CURRENT */
/* Name of X server. */
/* #undef __XSERVERNAME__ */
/* URL to go to for support. */
/* #undef __VENDORDWEBSUPPORT__ */
/* Built-in output drivers. */
/* #undef DRIVERS */
/* Built-in input drivers. */
/* #undef IDRIVERS */
/* Path to configuration file. */
/* #undef XF86CONFIGFILE */
/* Path to configuration file. */
/* #undef __XCONFIGFILE__ */
/* Name of configuration directory. */
/* #undef __XCONFIGDIR__ */
/* Path to loadable modules. */
/* #undef DEFAULT_MODULE_PATH */
/* Path to installed libraries. */
/* #undef DEFAULT_LIBRARY_PATH */
/* Path to server log file. */
/* #undef DEFAULT_LOGPREFIX */
/* Building DRI-capable DDX. */
/* #undef XF86DRI */
/* Build DRI2 extension */
/* #undef DRI2 */
/* Define to 1 if you have the <stropts.h> header file. */
/* #undef HAVE_STROPTS_H */
/* Define to 1 if you have the <sys/kd.h> header file. */
/* #undef HAVE_SYS_KD_H */
/* Define to 1 if you have the <sys/vt.h> header file. */
/* #undef HAVE_SYS_VT_H */
/* Define to 1 if you have the `walkcontext' function (used on Solaris for
xorg_backtrace in hw/xfree86/common/xf86Events.c */
/* #undef HAVE_WALKCONTEXT */
/* Define to 1 if unsigned long is 64 bits. */
/* #undef _XSERVER64 */
/* Building vgahw module */
/* #undef WITH_VGAHW */
/* Define to 1 if NetBSD built-in MTRR support is available */
/* #undef HAS_MTRR_BUILTIN */
/* Define to 1 if BSD MTRR support is available */
/* #undef HAS_MTRR_SUPPORT */
/* NetBSD PIO alpha IO */
/* #undef USE_ALPHA_PIO */
/* BSD AMD64 iopl */
/* #undef USE_AMD64_IOPL */
/* BSD /dev/io */
/* #undef USE_DEV_IO */
/* BSD i386 iopl */
/* #undef USE_I386_IOPL */
/* System is BSD-like */
/* #undef CSRG_BASED */
/* System has PC console */
/* #undef PCCONS_SUPPORT */
/* System has PCVT console */
/* #undef PCVT_SUPPORT */
/* System has syscons console */
/* #undef SYSCONS_SUPPORT */
/* System has wscons console */
/* #undef WSCONS_SUPPORT */
/* System has /dev/xf86 aperture driver */
/* #undef HAS_APERTURE_DRV */
/* Has backtrace support */
/* #undef HAVE_BACKTRACE */
/* Name of the period field in struct kbd_repeat */
/* #undef LNX_KBD_PERIOD_NAME */
/* Have execinfo.h */
/* #undef HAVE_EXECINFO_H */
/* Have pci_system_init_dev_mem() */
/* #undef HAVE_PCI_SYSTEM_INIT_DEV_MEM */
/* Define to 1 if you have the `pci_device_is_boot_vga' function. */
/* #undef HAVE_PCI_DEVICE_IS_BOOT_VGA */
/* Have pci_enable_device */
/* #undef HAVE_PCI_DEVICE_ENABLE */
/* Define to 1 if you have the `pci_device_vgaarb_init' function. */
/* #undef HAVE_PCI_DEVICE_VGAARB_INIT */
/* Path to text files containing PCI IDs */
#define PCI_TXT_IDS_PATH ""
/* Use SIGIO handlers for input device events by default */
#define USE_SIGIO_BY_DEFAULT TRUE
/* Support PC98 */
/* #undef SUPPORT_PC98 */
/* Build with libdrm support */
/* #undef WITH_LIBDRM */
#endif /* _XORG_CONFIG_H_ */

View File

@@ -0,0 +1,192 @@
/* include/xorg-server.h. Generated from xorg-server.h.in by configure. */
/* xorg-server.h.in -*- c -*-
*
* This file is the template file for the xorg-server.h file which gets
* installed as part of the SDK. The #defines in this file overlap
* with those from config.h, but only for those options that we want
* to export to external modules. Boilerplate autotool #defines such
* as HAVE_STUFF and PACKAGE_NAME is kept in config.h
*
* It is still possible to update config.h.in using autoheader, since
* autoheader only creates a .h.in file for the first
* AM_CONFIG_HEADER() line, and thus does not overwrite this file.
*
* However, it should be kept in sync with this file.
*/
#ifndef _XORG_SERVER_H_
#define _XORG_SERVER_H_
/* Support BigRequests extension */
#define BIGREQS 1
/* Default font path */
#define COMPILEDDEFAULTFONTPATH "/usr/share/fonts/X11/misc/,/usr/share/fonts/X11/TTF/,/usr/share/fonts/X11/OTF/,/usr/share/fonts/X11/Type1/,/usr/share/fonts/X11/100dpi/,/usr/share/fonts/X11/75dpi/"
/* Support Composite Extension */
#define COMPOSITE 1
/* Build DPMS extension */
#define DPMSExtension 1
/* Build GLX extension */
/* #undef GLXEXT */
/* Support XDM-AUTH*-1 */
#define HASXDMAUTH 1
/* Support SHM */
#define HAS_SHM 1
/* Support IPv6 for TCP connections */
#define IPv6 1
/* Support MIT-SHM Extension */
#define MITSHM 1
/* Internal define for Xinerama */
#define PANORAMIX 1
/* Support RANDR extension */
#define RANDR 1
/* Support RENDER extension */
#define RENDER 1
/* Support X resource extension */
#define RES 1
/* Support MIT-SCREEN-SAVER extension */
#define SCREENSAVER 1
/* Support SHAPE extension */
#define SHAPE 1
/* Define to 1 on systems derived from System V Release 4 */
/* #undef SVR4 */
/* Support TCP socket connections */
#define TCPCONN 1
/* Enable touchscreen support */
/* #undef TOUCHSCREEN */
/* Support tslib touchscreen abstraction library */
/* #undef TSLIB */
/* Support UNIX socket connections */
#define UNIXCONN 1
/* unaligned word accesses behave as expected */
/* #undef WORKING_UNALIGNED_INT */
/* Support XCMisc extension */
#define XCMISC 1
/* Support Xdmcp */
#define XDMCP 1
/* Build XFree86 BigFont extension */
/* #undef XF86BIGFONT */
/* Support XFree86 Video Mode extension */
/* #undef XF86VIDMODE */
/* Build XDGA support */
/* #undef XFreeXDGA */
/* Support Xinerama extension */
#define XINERAMA 1
/* Support X Input extension */
#define XINPUT 1
/* XKB default rules */
#define XKB_DFLT_RULES "evdev"
/* Support loadable input and output drivers */
/* #undef XLOADABLE */
/* Build DRI extension */
/* #undef XF86DRI */
/* Build DRI2 extension */
/* #undef DRI2 */
/* Build Xorg server */
/* #undef XORGSERVER */
/* Vendor release */
/* #undef XORG_RELEASE */
/* Current Xorg version */
/* #undef XORG_VERSION_CURRENT */
/* Build Xv Extension */
#define XvExtension 1
/* Build XvMC Extension */
#define XvMCExtension 1
/* Support XSync extension */
#define XSYNC 1
/* Support XTest extension */
#define XTEST 1
/* Support Xv Extension */
#define XV 1
/* Vendor name */
#define XVENDORNAME "The X.Org Foundation"
/* BSD-compliant source */
/* #undef _BSD_SOURCE */
/* POSIX-compliant source */
/* #undef _POSIX_SOURCE */
/* X/Open-compliant source */
/* #undef _XOPEN_SOURCE */
/* Vendor web address for support */
/* #undef __VENDORDWEBSUPPORT__ */
/* Location of configuration file */
/* #undef __XCONFIGFILE__ */
/* Name of X server */
/* #undef __XSERVERNAME__ */
/* Building vgahw module */
/* #undef WITH_VGAHW */
/* System is BSD-like */
/* #undef CSRG_BASED */
/* System has PC console */
/* #undef PCCONS_SUPPORT */
/* System has PCVT console */
/* #undef PCVT_SUPPORT */
/* System has syscons console */
/* #undef SYSCONS_SUPPORT */
/* System has wscons console */
/* #undef WSCONS_SUPPORT */
/* Loadable XFree86 server awesomeness */
/* #undef XFree86LOADER */
/* Use libpciaccess */
/* #undef XSERVER_LIBPCIACCESS */
/* X Access Control Extension */
#define XACE 1
#ifdef _LP64
#define _XSERVER64 1
#endif
#endif /* _XORG_SERVER_H_ */

View File

@@ -0,0 +1,37 @@
/* include/xwin-config.h. Generated from xwin-config.h.in by configure. */
/*
* xwin-config.h.in
*
* This file has all defines used in the xwin ddx
*
*/
#include <dix-config.h>
/* Winsock networking */
/* #undef HAS_WINSOCK */
/* Cygwin has /dev/windows for signaling new win32 messages */
/* #undef HAS_DEVWINDOWS */
/* Switch on debug messages */
/* #undef CYGDEBUG */
/* #undef CYGWINDOWING_DEBUG */
/* #undef CYGMULTIWINDOW_DEBUG */
/* Define to 1 if unsigned long is 64 bits. */
/* #undef _XSERVER64 */
/* Do we require our own snprintf? */
/* #undef NEED_SNPRINTF */
/* Short vendor name */
#define XVENDORNAMESHORT "X.Org"
/* Vendor web address for support */
/* #undef __VENDORDWEBSUPPORT__ */
/* Location of system.XWinrc */
/* #undef SYSCONFDIR */
/* Default log location */
/* #undef DEFAULT_LOGDIR */

View File

@@ -37,7 +37,7 @@
* for the implementation.
*/
void
miInitializeBackingStore (ScreenPtr pScreen)
{
}
//void
//miInitializeBackingStore (ScreenPtr pScreen)
//{
//}