Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Xserver autotools #946

Open
wants to merge 120 commits into
base: 3.6.x
Choose a base branch
from
Open

Commits on Oct 18, 2019

  1. Configuration menu
    Copy the full SHA
    a2ae85a View commit details
    Browse the repository at this point in the history
  2. replace Xpoll.h.in by Xpoll.h

    uli42 authored and mjtrangoni committed Oct 18, 2019
    Configuration menu
    Copy the full SHA
    37edfa6 View commit details
    Browse the repository at this point in the history
  3. buildit.sh: fix typo

    uli42 authored and mjtrangoni committed Oct 18, 2019
    Configuration menu
    Copy the full SHA
    ef95781 View commit details
    Browse the repository at this point in the history
  4. Fix links to m4 macros

    uli42 authored and mjtrangoni committed Oct 18, 2019
    Configuration menu
    Copy the full SHA
    579765b View commit details
    Browse the repository at this point in the history
  5. Fix ac_fn_c_check_member: command not found

    Backport of this commit:
    
      author	  Julien Cristau <[email protected]>	2009-10-06 16:11:24 +0200
      committer	  Julien Cristau <[email protected]>	2009-10-06 16:12:45 +0200
      commit	  854269d55cdda8caf425515bfed2855e211a5ada (patch)
      tree		  2f485b4e4fa0147682d945cd9ae32d1a72fe593b
      parent	  3bb020587ce74e0737ec7aceb20041f1e77d3b87 (diff)
    
      configure: quote argument to m4_pattern_forbid
      Without this, configure spits out
      ../configure: line 12364: ac_fn_c_check_member: command not found
      ../configure: line 12378: ac_fn_c_check_type: command not found
    
      Also anchor the pattern to make it stricter.
    
      Signed-off-by: Julien Cristau <[email protected]>
    uli42 authored and mjtrangoni committed Oct 18, 2019
    Configuration menu
    Copy the full SHA
    13cb9e9 View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    8bd71b0 View commit details
    Browse the repository at this point in the history
  7. configure.ac: we do not need nxcomp-ext

    there's no pkgconfig because it's included in nxagent
    uli42 authored and mjtrangoni committed Oct 18, 2019
    Configuration menu
    Copy the full SHA
    d6df6d6 View commit details
    Browse the repository at this point in the history
  8. drop libcwrapper

    we do not have the corresponding code anymore
    uli42 authored and mjtrangoni committed Oct 18, 2019
    Configuration menu
    Copy the full SHA
    6f85954 View commit details
    Browse the repository at this point in the history
  9. Xserver: add exports include dir

    uli42 authored and mjtrangoni committed Oct 18, 2019
    Configuration menu
    Copy the full SHA
    76c9c0d View commit details
    Browse the repository at this point in the history
  10. Require pixman lib

    uli42 authored and mjtrangoni committed Oct 18, 2019
    Configuration menu
    Copy the full SHA
    a3110ff View commit details
    Browse the repository at this point in the history
  11. Makefile: clean up a bit

    uli42 authored and mjtrangoni committed Oct 18, 2019
    Configuration menu
    Copy the full SHA
    80a2758 View commit details
    Browse the repository at this point in the history
  12. buildit.sh: add missing make call

    uli42 authored and mjtrangoni committed Oct 18, 2019
    Configuration menu
    Copy the full SHA
    68e2e02 View commit details
    Browse the repository at this point in the history
  13. travisCI fixes, pixman-1, xfont2, and tirpc autotools check fixed.

    nx-X11:
    Fix configure.ac checks for xfont2, pixman-1, and tirpc.
    
    travisCI:
    * add xfont-utils
    * add libxfont1-dev , Ubuntu 16.04 is missing fontutil.h
    * Add ghostscript for /usr/bin/ps2pdf
    
    Signed-off-by: Mario Trangoni <[email protected]>
    mjtrangoni committed Oct 18, 2019
    Configuration menu
    Copy the full SHA
    465e90c View commit details
    Browse the repository at this point in the history
  14. Configuration menu
    Copy the full SHA
    c762c52 View commit details
    Browse the repository at this point in the history
  15. Xserver/configure.ac: trivial aesthetic changes

    Signed-off-by: Mario Trangoni <[email protected]>
    mjtrangoni committed Oct 18, 2019
    Configuration menu
    Copy the full SHA
    9a859d0 View commit details
    Browse the repository at this point in the history
  16. Configuration menu
    Copy the full SHA
    9acf503 View commit details
    Browse the repository at this point in the history
  17. Xserver/dix/dixfonts.c: Remove include extra space

    Signed-off-by: Mario Trangoni <[email protected]>
    mjtrangoni committed Oct 18, 2019
    Configuration menu
    Copy the full SHA
    4536a47 View commit details
    Browse the repository at this point in the history
  18. Set HAS_XFONT2 define

    Signed-off-by: Mario Trangoni <[email protected]>
    uli42 authored and mjtrangoni committed Oct 18, 2019
    Configuration menu
    Copy the full SHA
    9e7c406 View commit details
    Browse the repository at this point in the history
  19. do not force const for font path elements

    FONT_PATH_ELEMENT_NAME_CONST=0
    
    We should check if we can change the code to make it work with const enabled..
    
    Signed-off-by: Mario Trangoni <[email protected]>
    uli42 authored and mjtrangoni committed Oct 18, 2019
    Configuration menu
    Copy the full SHA
    01dbccf View commit details
    Browse the repository at this point in the history
  20. Make fb compile

    Signed-off-by: Mario Trangoni <[email protected]>
    uli42 authored and mjtrangoni committed Oct 18, 2019
    Configuration menu
    Copy the full SHA
    9dedc70 View commit details
    Browse the repository at this point in the history
  21. Make mi compile

    Signed-off-by: Mario Trangoni <[email protected]>
    uli42 authored and mjtrangoni committed Oct 18, 2019
    Configuration menu
    Copy the full SHA
    08d6ffe View commit details
    Browse the repository at this point in the history
  22. mieq.c: add missing include

    Fixes this error:
    
      mieq.c: In function ‘mieqProcessInputEvents’:
      mieq.c:162:11: error: ‘DPMSPowerLevel’ undeclared (first use in this function)
        else if (DPMSPowerLevel != DPMSModeOn)
                 ^~~~~~~~~~~~~~
    
    Signed-off-by: Mario Trangoni <[email protected]>
    uli42 authored and mjtrangoni committed Oct 18, 2019
    Configuration menu
    Copy the full SHA
    9bc3e17 View commit details
    Browse the repository at this point in the history
  23. mi/Makefile.am: remove reference to non-existant file

    Signed-off-by: Mario Trangoni <[email protected]>
    uli42 authored and mjtrangoni committed Oct 18, 2019
    Configuration menu
    Copy the full SHA
    9c39f65 View commit details
    Browse the repository at this point in the history
  24. Xext/Makefile.am: remove reference to non-existant file

    Signed-off-by: Mario Trangoni <[email protected]>
    uli42 authored and mjtrangoni committed Oct 18, 2019
    Configuration menu
    Copy the full SHA
    ad5dcaf View commit details
    Browse the repository at this point in the history
  25. dix-config.h.in: add missing XResExtension

    Fixes "ResourceName" is unknown
    
    Signed-off-by: Mario Trangoni <[email protected]>
    uli42 authored and mjtrangoni committed Oct 18, 2019
    Configuration menu
    Copy the full SHA
    287eb4a View commit details
    Browse the repository at this point in the history
  26. add PIXPRIV define

    Fixes
    
    error: ‘struct _Pixmap’ has no member named ‘devPrivates’; did you mean ‘devPrivate’?
    Signed-off-by: Mario Trangoni <[email protected]>
    uli42 authored and mjtrangoni committed Oct 18, 2019
    Configuration menu
    Copy the full SHA
    00890d8 View commit details
    Browse the repository at this point in the history
  27. add SERVER_LOCK define

    Fixes
      utils.c: In function ‘ProcessCommandLine’:
      utils.c:804:3: error: ‘nolock’ undeclared (first use in this function); did you mean ‘clock’?
         nolock = TRUE;
         ^~~~~~
    
    Signed-off-by: Mario Trangoni <[email protected]>
    uli42 authored and mjtrangoni committed Oct 18, 2019
    Configuration menu
    Copy the full SHA
    32d9362 View commit details
    Browse the repository at this point in the history
  28. randr/Makefile.am: remove reference to non-existant file

    Signed-off-by: Mario Trangoni <[email protected]>
    uli42 authored and mjtrangoni committed Oct 18, 2019
    Configuration menu
    Copy the full SHA
    9b7c802 View commit details
    Browse the repository at this point in the history
  29. rander/Makefile.am: remove reference to non-existant file

    Signed-off-by: Mario Trangoni <[email protected]>
    uli42 authored and mjtrangoni committed Oct 18, 2019
    Configuration menu
    Copy the full SHA
    399377c View commit details
    Browse the repository at this point in the history
  30. dix-config.h.in: add missing XINPUT define

    Signed-off-by: Mario Trangoni <[email protected]>
    uli42 authored and mjtrangoni committed Oct 18, 2019
    Configuration menu
    Copy the full SHA
    975f11b View commit details
    Browse the repository at this point in the history
  31. xkb/Makefile,am: remove reference to non-existant files

    Signed-off-by: Mario Trangoni <[email protected]>
    uli42 authored and mjtrangoni committed Oct 18, 2019
    Configuration menu
    Copy the full SHA
    09dd2e3 View commit details
    Browse the repository at this point in the history
  32. XKB.h: Do not depend on XFree86Server define

    Signed-off-by: Mario Trangoni <[email protected]>
    uli42 authored and mjtrangoni committed Oct 18, 2019
    Configuration menu
    Copy the full SHA
    273f9eb View commit details
    Browse the repository at this point in the history
  33. buildit.sh: pass down NXAGENT_SERVER define

    Signed-off-by: Mario Trangoni <[email protected]>
    uli42 authored and mjtrangoni committed Oct 18, 2019
    Configuration menu
    Copy the full SHA
    f059a0d View commit details
    Browse the repository at this point in the history
  34. buildit.sh: extend include paths

    Some files refer to "XI.h" or "X.h". For now we extend the include
    path but it'd probably be better to fix the path in the affected
    files.
    
    Signed-off-by: Mario Trangoni <[email protected]>
    uli42 authored and mjtrangoni committed Oct 18, 2019
    Configuration menu
    Copy the full SHA
    2d5f7d4 View commit details
    Browse the repository at this point in the history
  35. buildit.sh: drop NX_MODIFICATION, we are not using it anywhere

    Signed-off-by: Mario Trangoni <[email protected]>
    uli42 authored and mjtrangoni committed Oct 18, 2019
    Configuration menu
    Copy the full SHA
    7e14a25 View commit details
    Browse the repository at this point in the history
  36. buildit.sh: define version string

    Signed-off-by: Mario Trangoni <[email protected]>
    uli42 authored and mjtrangoni committed Oct 18, 2019
    Configuration menu
    Copy the full SHA
    a77c3a1 View commit details
    Browse the repository at this point in the history
  37. Client.c: fix include path

    Signed-off-by: Mario Trangoni <[email protected]>
    uli42 authored and mjtrangoni committed Oct 18, 2019
    Configuration menu
    Copy the full SHA
    c5ea515 View commit details
    Browse the repository at this point in the history
  38. buildit.sh: extend include paths once more

    Signed-off-by: Mario Trangoni <[email protected]>
    uli42 authored and mjtrangoni committed Oct 18, 2019
    Configuration menu
    Copy the full SHA
    046f45c View commit details
    Browse the repository at this point in the history
  39. configure.ac: add libxml2

    Signed-off-by: Mario Trangoni <[email protected]>
    uli42 authored and mjtrangoni committed Oct 18, 2019
    Configuration menu
    Copy the full SHA
    27b4805 View commit details
    Browse the repository at this point in the history
  40. Add/use nxagent-config.h

    Signed-off-by: Mario Trangoni <[email protected]>
    uli42 authored and mjtrangoni committed Oct 18, 2019
    Configuration menu
    Copy the full SHA
    5fd8c3a View commit details
    Browse the repository at this point in the history
  41. Fix osdep.h include path

    Signed-off-by: Mario Trangoni <[email protected]>
    uli42 authored and mjtrangoni committed Oct 18, 2019
    Configuration menu
    Copy the full SHA
    2f63540 View commit details
    Browse the repository at this point in the history
  42. Use COMPILEDDEFAULTFONTPATH

    Signed-off-by: Mario Trangoni <[email protected]>
    uli42 authored and mjtrangoni committed Oct 18, 2019
    Configuration menu
    Copy the full SHA
    fe75df2 View commit details
    Browse the repository at this point in the history
  43. Makefile.am: remove references to non-existant files

    Signed-off-by: Mario Trangoni <[email protected]>
    uli42 authored and mjtrangoni committed Oct 18, 2019
    Configuration menu
    Copy the full SHA
    6f93f1c View commit details
    Browse the repository at this point in the history
  44. buildit.sh: Add mesa include path

    Signed-off-by: Mario Trangoni <[email protected]>
    uli42 authored and mjtrangoni committed Oct 18, 2019
    Configuration menu
    Copy the full SHA
    e78da4a View commit details
    Browse the repository at this point in the history
  45. buildit.sh: add nxagent specific link variable

    Signed-off-by: Mario Trangoni <[email protected]>
    uli42 authored and mjtrangoni committed Oct 18, 2019
    Configuration menu
    Copy the full SHA
    94ac07b View commit details
    Browse the repository at this point in the history
  46. Do not compile some files in NXAGENT mode

    These files are included by hw/nxagent/NX*.c and must not be compiled
    directly.
    
    Signed-off-by: Mario Trangoni <[email protected]>
    uli42 authored and mjtrangoni committed Oct 18, 2019
    Configuration menu
    Copy the full SHA
    432f5d3 View commit details
    Browse the repository at this point in the history
  47. render/Makefile.am: add missing file

    Signed-off-by: Mario Trangoni <[email protected]>
    uli42 authored and mjtrangoni committed Oct 18, 2019
    Configuration menu
    Copy the full SHA
    c0b472c View commit details
    Browse the repository at this point in the history
  48. configure.ac: comment missing libs

    we do not have those libs in out environment
    
    Signed-off-by: Mario Trangoni <[email protected]>
    uli42 authored and mjtrangoni committed Oct 18, 2019
    Configuration menu
    Copy the full SHA
    f6d6cac View commit details
    Browse the repository at this point in the history
  49. buildit.sh: fix wrong variable name

    Signed-off-by: Mario Trangoni <[email protected]>
    uli42 authored and mjtrangoni committed Oct 18, 2019
    Configuration menu
    Copy the full SHA
    9775dc5 View commit details
    Browse the repository at this point in the history
  50. Remove trailing space

    Signed-off-by: Mario Trangoni <[email protected]>
    mjtrangoni committed Oct 18, 2019
    Configuration menu
    Copy the full SHA
    15523a2 View commit details
    Browse the repository at this point in the history
  51. travisCI: Add missing x11proto-resource-dev

    Signed-off-by: Mario Trangoni <[email protected]>
    mjtrangoni committed Oct 18, 2019
    Configuration menu
    Copy the full SHA
    5114a1b View commit details
    Browse the repository at this point in the history
  52. travisCI: Add x11proto-video-dev

    Signed-off-by: Mario Trangoni <[email protected]>
    mjtrangoni committed Oct 18, 2019
    Configuration menu
    Copy the full SHA
    4054170 View commit details
    Browse the repository at this point in the history
  53. travisCI: Add x11proto-xcmisc-dev and x11proto-xf86vidmode-dev

    Signed-off-by: Mario Trangoni <[email protected]>
    mjtrangoni committed Oct 18, 2019
    Configuration menu
    Copy the full SHA
    cc4821e View commit details
    Browse the repository at this point in the history
  54. travisCI: Add x11proto-bigreqs-dev, x11proto-xf86bigfont-dev, and x11…

    …proto-xf86dga-dev
    
    Signed-off-by: Mario Trangoni <[email protected]>
    mjtrangoni committed Oct 18, 2019
    Configuration menu
    Copy the full SHA
    093d6cd View commit details
    Browse the repository at this point in the history
  55. m4/libtool.m4: Fix linker warning

    See,
    
    ar: `u' modifier ignored since `D' is the default (see `U')
    
    Signed-off-by: Mario Trangoni <[email protected]>
    mjtrangoni committed Oct 18, 2019
    Configuration menu
    Copy the full SHA
    57d823c View commit details
    Browse the repository at this point in the history
  56. Xserver/hw/nxagent/Makefile.am: Add compext directory

    Signed-off-by: Mario Trangoni <[email protected]>
    mjtrangoni committed Oct 18, 2019
    Configuration menu
    Copy the full SHA
    2c8e3be View commit details
    Browse the repository at this point in the history
  57. Xserver/hw/nxagent/Makefile.am: Re-Add extend subdir-objects to AUTOM…

    …AKE_OPTIONS
    
    Signed-off-by: Mario Trangoni <[email protected]>
    mjtrangoni committed Oct 18, 2019
    Configuration menu
    Copy the full SHA
    6303837 View commit details
    Browse the repository at this point in the history
  58. test

    Signed-off-by: Mario Trangoni <[email protected]>
    mjtrangoni committed Oct 18, 2019
    Configuration menu
    Copy the full SHA
    bfc3bed View commit details
    Browse the repository at this point in the history
  59. test

    Signed-off-by: Mario Trangoni <[email protected]>
    mjtrangoni committed Oct 18, 2019
    Configuration menu
    Copy the full SHA
    9359361 View commit details
    Browse the repository at this point in the history
  60. travisCI: Add libjpeg8-dev

    See,
    compext/Jpeg.o: undefined reference to symbol 'jpeg_set_quality@@LIBJPEG_8.0'
    
    Signed-off-by: Mario Trangoni <[email protected]>
    mjtrangoni committed Oct 18, 2019
    Configuration menu
    Copy the full SHA
    58ebe43 View commit details
    Browse the repository at this point in the history
  61. check for jpeglib.h libraries

    Signed-off-by: Mario Trangoni <[email protected]>
    mjtrangoni committed Oct 18, 2019
    Configuration menu
    Copy the full SHA
    310f6d1 View commit details
    Browse the repository at this point in the history
  62. test

    Signed-off-by: Mario Trangoni <[email protected]>
    mjtrangoni committed Oct 18, 2019
    Configuration menu
    Copy the full SHA
    df708cd View commit details
    Browse the repository at this point in the history
  63. nx-X11: check for libpng on configure.ac

    Signed-off-by: Mario Trangoni <[email protected]>
    mjtrangoni committed Oct 18, 2019
    Configuration menu
    Copy the full SHA
    ffab6f4 View commit details
    Browse the repository at this point in the history
  64. travisCI: remove not required dependencies

    Signed-off-by: Mario Trangoni <[email protected]>
    mjtrangoni committed Oct 18, 2019
    Configuration menu
    Copy the full SHA
    d2d560a View commit details
    Browse the repository at this point in the history
  65. nx-X11: check for zlib

    Signed-off-by: Mario Trangoni <[email protected]>
    mjtrangoni committed Oct 18, 2019
    Configuration menu
    Copy the full SHA
    3ee0880 View commit details
    Browse the repository at this point in the history
  66. travisCI: remove zlib-dev as it is already installed

    Signed-off-by: Mario Trangoni <[email protected]>
    mjtrangoni committed Oct 18, 2019
    Configuration menu
    Copy the full SHA
    efb1523 View commit details
    Browse the repository at this point in the history
  67. Configuration menu
    Copy the full SHA
    061935f View commit details
    Browse the repository at this point in the history
  68. Xserver/configure.ac: add xtst and xdamage to the linker

    Signed-off-by: Mario Trangoni <[email protected]>
    mjtrangoni committed Oct 18, 2019
    Configuration menu
    Copy the full SHA
    94023b0 View commit details
    Browse the repository at this point in the history
  69. configure.ac: add xpm library to the linker

    Signed-off-by: Mario Trangoni <[email protected]>
    mjtrangoni committed Oct 18, 2019
    Configuration menu
    Copy the full SHA
    2837804 View commit details
    Browse the repository at this point in the history
  70. Configuration menu
    Copy the full SHA
    efdd444 View commit details
    Browse the repository at this point in the history
  71. Configuration menu
    Copy the full SHA
    a030971 View commit details
    Browse the repository at this point in the history
  72. Configuration menu
    Copy the full SHA
    383c480 View commit details
    Browse the repository at this point in the history
  73. Configuration menu
    Copy the full SHA
    31ef96f View commit details
    Browse the repository at this point in the history
  74. dix.config.in: add NX defines

    These do not really belong here. But in lack of a better location we
    put them here for now.
    uli42 authored and mjtrangoni committed Oct 18, 2019
    Configuration menu
    Copy the full SHA
    095ec14 View commit details
    Browse the repository at this point in the history
  75. configure.ac: add libXinerama

    uli42 authored and mjtrangoni committed Oct 18, 2019
    Configuration menu
    Copy the full SHA
    7f1ceea View commit details
    Browse the repository at this point in the history
  76. Configuration menu
    Copy the full SHA
    428f75c View commit details
    Browse the repository at this point in the history
  77. hw/nxagent/Makefile.am: add DIX_CFLAGS as we are compiling some dix f…

    …iles
    
    In NX*.c some c files from dix are sourced. For them to compile cleanly we need
    to add DIX_CFLAGS.
    uli42 authored and mjtrangoni committed Oct 18, 2019
    Configuration menu
    Copy the full SHA
    bad94b5 View commit details
    Browse the repository at this point in the history
  78. dix: do not compile files we source from nxagent

    they will be compiled there
    uli42 authored and mjtrangoni committed Oct 18, 2019
    Configuration menu
    Copy the full SHA
    dbc5b64 View commit details
    Browse the repository at this point in the history
  79. Configuration menu
    Copy the full SHA
    ec2bf88 View commit details
    Browse the repository at this point in the history
  80. Xext: do not compile some files

    they will be compiled in nxagent dir
    uli42 authored and mjtrangoni committed Oct 18, 2019
    Configuration menu
    Copy the full SHA
    e0a75ee View commit details
    Browse the repository at this point in the history
  81. glx: do not compile one file

    it will be compiled in nxagent dir
    uli42 authored and mjtrangoni committed Oct 18, 2019
    Configuration menu
    Copy the full SHA
    22dd714 View commit details
    Browse the repository at this point in the history
  82. Configuration menu
    Copy the full SHA
    8c367bf View commit details
    Browse the repository at this point in the history
  83. Configuration menu
    Copy the full SHA
    56eb5b8 View commit details
    Browse the repository at this point in the history
  84. m4: Rebase libtool m4 files to v2.4.6-44-gb9b44533

    Signed-off-by: Mario Trangoni <[email protected]>
    mjtrangoni committed Oct 18, 2019
    Configuration menu
    Copy the full SHA
    1ac0555 View commit details
    Browse the repository at this point in the history
  85. nx-X11/programs/Xserver/configure.ac: Handle NXAGENT_SERVER on CPPFLA…

    …GS and CXXFLAGS
    
    Signed-off-by: Mario Trangoni <[email protected]>
    mjtrangoni committed Oct 18, 2019
    Configuration menu
    Copy the full SHA
    0a1308e View commit details
    Browse the repository at this point in the history
  86. nx-X11/programs/buildit.sh: remote not configured XSERVERLIBS_LIBS va…

    …riable
    
    Signed-off-by: Mario Trangoni <[email protected]>
    mjtrangoni committed Oct 18, 2019
    Configuration menu
    Copy the full SHA
    6d928d7 View commit details
    Browse the repository at this point in the history
  87. nxagent: include nxagent-config.h

    We need the _XSERVER64 define to be set correctly
    uli42 authored and mjtrangoni committed Oct 18, 2019
    Configuration menu
    Copy the full SHA
    9ea391c View commit details
    Browse the repository at this point in the history
  88. Enable XKB by default

    uli42 authored and mjtrangoni committed Oct 18, 2019
    Configuration menu
    Copy the full SHA
    b296a97 View commit details
    Browse the repository at this point in the history
  89. nx-X11/programs/Xserver/configure.ac: Add default compiler flags if t…

    …hey are empty
    
    Signed-off-by: Mario Trangoni <[email protected]>
    mjtrangoni committed Oct 18, 2019
    Configuration menu
    Copy the full SHA
    e2b6ac1 View commit details
    Browse the repository at this point in the history
  90. nx-X11/programs/Xserver/configure.ac: Integrate some more flags on au…

    …totools
    
    Signed-off-by: Mario Trangoni <[email protected]>
    mjtrangoni committed Oct 18, 2019
    Configuration menu
    Copy the full SHA
    575dc73 View commit details
    Browse the repository at this point in the history
  91. enable screensaver

    we had that in the Imake build, too
    uli42 authored and mjtrangoni committed Oct 18, 2019
    Configuration menu
    Copy the full SHA
    f3112a5 View commit details
    Browse the repository at this point in the history
  92. Add _XSERVER64 to CFLAGS

    This helps for files softlinked from mesa - these cannot easily be
    extended to include dix-config.h so we need to add the define to the
    CFLAGS.
    
    Signed-off-by: Mario Trangoni <[email protected]>
    mjtrangoni committed Oct 18, 2019
    Configuration menu
    Copy the full SHA
    39e26d9 View commit details
    Browse the repository at this point in the history
  93. hw/nxagent/Makefile.am: fix list of defines

    remove unused, add forgotten
    uli42 authored and mjtrangoni committed Oct 18, 2019
    Configuration menu
    Copy the full SHA
    99f5ef4 View commit details
    Browse the repository at this point in the history
  94. configure.ac: Fix define name

    NX_TRANS_TRANS_WAKEUP -> NX_TRANS_WAKEUP
    uli42 authored and mjtrangoni committed Oct 18, 2019
    Configuration menu
    Copy the full SHA
    72f5df2 View commit details
    Browse the repository at this point in the history
  95. include/dix-config.h.in: add FIXME

    uli42 authored and mjtrangoni committed Oct 18, 2019
    Configuration menu
    Copy the full SHA
    162397a View commit details
    Browse the repository at this point in the history
  96. configure.ac: take care that XORG is set

    this will set a lot of stuff we depend on, e.g. -DXFree86Server
    uli42 authored and mjtrangoni committed Oct 18, 2019
    Configuration menu
    Copy the full SHA
    347e998 View commit details
    Browse the repository at this point in the history
  97. define XFree86Server directly where required

    we do not need to pass these three variables around for just one
    define. Besides, files linked in from mesa check XFree86LOADER and
    IN_MODULE and fail to compile. We do no have them in the imake build.
    
    Basically this is a backport of
    
      commit 84683f19b4d1c712281036bcabf8dc623e64b26a
      Author: Daniel Stone <[email protected]>
      Date:   Tue Jul 18 18:16:12 2006 -0400
    
        get rid of XFree86LOADER, XFree86Server, XFree86Module, and IN_MODULE
        Get rid of almost all uses of these definitions.  They're still defined for
        delinquent out-of-tree drivers, and also for the Mesa build.  As well as
        for miinitext.c.  But largely gone.
    uli42 authored and mjtrangoni committed Oct 18, 2019
    Configuration menu
    Copy the full SHA
    36e3e18 View commit details
    Browse the repository at this point in the history
  98. Configuration menu
    Copy the full SHA
    65734f2 View commit details
    Browse the repository at this point in the history
  99. Remove unused defines from Makefile

    uli42 authored and mjtrangoni committed Oct 18, 2019
    Configuration menu
    Copy the full SHA
    a34a5ed View commit details
    Browse the repository at this point in the history
  100. Xserver/configure.ac: move XSERVERCFLAGS_CFLAGS to configure.ac

    Signed-off-by: Mario Trangoni <[email protected]>
    mjtrangoni committed Oct 18, 2019
    Configuration menu
    Copy the full SHA
    920b814 View commit details
    Browse the repository at this point in the history
  101. Xserver/configure.ac: XvMC extension default disabled

    Signed-off-by: Mario Trangoni <[email protected]>
    mjtrangoni committed Oct 18, 2019
    Configuration menu
    Copy the full SHA
    6b7d5c7 View commit details
    Browse the repository at this point in the history
  102. Xserver/configure.ac: ScreenSaver extension default enabled

    Signed-off-by: Mario Trangoni <[email protected]>
    mjtrangoni committed Oct 18, 2019
    Configuration menu
    Copy the full SHA
    e363428 View commit details
    Browse the repository at this point in the history
  103. Configuration menu
    Copy the full SHA
    4dee95a View commit details
    Browse the repository at this point in the history
  104. Configuration menu
    Copy the full SHA
    035e012 View commit details
    Browse the repository at this point in the history
  105. Configuration menu
    Copy the full SHA
    0d276de View commit details
    Browse the repository at this point in the history
  106. Xserver/configure.ac: XF86VidMode extension default disabled

    Signed-off-by: Mario Trangoni <[email protected]>
    mjtrangoni committed Oct 18, 2019
    Configuration menu
    Copy the full SHA
    a26d257 View commit details
    Browse the repository at this point in the history
  107. Xserver/configure.ac: XF86Misc default disabled

    Signed-off-by: Mario Trangoni <[email protected]>
    mjtrangoni committed Oct 18, 2019
    Configuration menu
    Copy the full SHA
    a312c9b View commit details
    Browse the repository at this point in the history
  108. Remove extra enable-mitshm, as this is default enabled

    Signed-off-by: Mario Trangoni <[email protected]>
    mjtrangoni committed Oct 18, 2019
    Configuration menu
    Copy the full SHA
    f7f2f2e View commit details
    Browse the repository at this point in the history
  109. Xserver/configure.ac: Xorg server as owned by root with setuid bit de…

    …fault disabled
    
    Signed-off-by: Mario Trangoni <[email protected]>
    mjtrangoni committed Oct 18, 2019
    Configuration menu
    Copy the full SHA
    b6ed809 View commit details
    Browse the repository at this point in the history
  110. Configuration menu
    Copy the full SHA
    f6552ca View commit details
    Browse the repository at this point in the history
  111. Xserver/configure.ac: kbd_mode utility default disabled

    Signed-off-by: Mario Trangoni <[email protected]>
    mjtrangoni committed Oct 18, 2019
    Configuration menu
    Copy the full SHA
    2d21f75 View commit details
    Browse the repository at this point in the history
  112. Xserver/configure.ac: nxagent server default enabled

    Signed-off-by: Mario Trangoni <[email protected]>
    mjtrangoni committed Oct 18, 2019
    Configuration menu
    Copy the full SHA
    8d80da8 View commit details
    Browse the repository at this point in the history
  113. Xserver/configure.ac: Set default MESA_SOURCE path

    Signed-off-by: Mario Trangoni <[email protected]>
    mjtrangoni committed Oct 18, 2019
    Configuration menu
    Copy the full SHA
    ae53bcd View commit details
    Browse the repository at this point in the history
  114. Xserver/configure.ac: Add configure status resume

    Signed-off-by: Mario Trangoni <[email protected]>
    mjtrangoni committed Oct 18, 2019
    Configuration menu
    Copy the full SHA
    5a63f0a View commit details
    Browse the repository at this point in the history
  115. travisCI: Add xutils-dev for xorg m4 macros

    Signed-off-by: Mario Trangoni <[email protected]>
    mjtrangoni committed Oct 18, 2019
    Configuration menu
    Copy the full SHA
    520ba3c View commit details
    Browse the repository at this point in the history
  116. nx-X11/programs/Xserver: Update .gitignore files

    Signed-off-by: Mario Trangoni <[email protected]>
    mjtrangoni committed Oct 18, 2019
    Configuration menu
    Copy the full SHA
    e4896d0 View commit details
    Browse the repository at this point in the history
  117. nx-X11/programs/Xserver: add some extra files to .gitignore

    Signed-off-by: Mario Trangoni <[email protected]>
    mjtrangoni committed Oct 18, 2019
    Configuration menu
    Copy the full SHA
    ebba962 View commit details
    Browse the repository at this point in the history
  118. nx-X11/programs/Xserver/configure.ac: Move last flags from buildit.sh…

    … script
    
    Signed-off-by: Mario Trangoni <[email protected]>
    mjtrangoni committed Oct 18, 2019
    Configuration menu
    Copy the full SHA
    566a7de View commit details
    Browse the repository at this point in the history
  119. nx-X11/programs/Xserver/configure.ac: Move NXAGENTMODULES_LIBS from b…

    …uildit.sh
    
    Signed-off-by: Mario Trangoni <[email protected]>
    mjtrangoni committed Oct 18, 2019
    Configuration menu
    Copy the full SHA
    6c731fd View commit details
    Browse the repository at this point in the history
  120. nx-X11/programs/Xserver/configure.ac: Disable GCC warnings missing-pr…

    …ototype and strict-prototypes
    
    Signed-off-by: Mario Trangoni <[email protected]>
    mjtrangoni committed Oct 18, 2019
    Configuration menu
    Copy the full SHA
    daea207 View commit details
    Browse the repository at this point in the history