config: move config.h to hotplug.h
Also, move configInitialise to after OsInit, since the next commit will make it use a timer.
This commit is contained in:
parent
72e7f2ac6c
commit
0c5dab5c8e
|
@ -130,7 +130,6 @@ int ProcInitialConnection();
|
||||||
#include "dispatch.h"
|
#include "dispatch.h"
|
||||||
#include "swaprep.h"
|
#include "swaprep.h"
|
||||||
#include "swapreq.h"
|
#include "swapreq.h"
|
||||||
#include "config.h"
|
|
||||||
#ifdef PANORAMIX
|
#ifdef PANORAMIX
|
||||||
#include "panoramiX.h"
|
#include "panoramiX.h"
|
||||||
#include "panoramiXsrv.h"
|
#include "panoramiXsrv.h"
|
||||||
|
|
|
@ -98,7 +98,7 @@ Equipment Corporation.
|
||||||
#include <X11/fonts/font.h>
|
#include <X11/fonts/font.h>
|
||||||
#include "opaque.h"
|
#include "opaque.h"
|
||||||
#include "servermd.h"
|
#include "servermd.h"
|
||||||
#include "config.h"
|
#include "hotplug.h"
|
||||||
#include "site.h"
|
#include "site.h"
|
||||||
#include "dixfont.h"
|
#include "dixfont.h"
|
||||||
#include "extnsionst.h"
|
#include "extnsionst.h"
|
||||||
|
@ -309,9 +309,9 @@ main(int argc, char *argv[], char *envp[])
|
||||||
DPMSPowerLevel = 0;
|
DPMSPowerLevel = 0;
|
||||||
#endif
|
#endif
|
||||||
InitBlockAndWakeupHandlers();
|
InitBlockAndWakeupHandlers();
|
||||||
configInitialise();
|
|
||||||
/* Perform any operating system dependent initializations you'd like */
|
/* Perform any operating system dependent initializations you'd like */
|
||||||
OsInit();
|
OsInit();
|
||||||
|
configInitialise();
|
||||||
if(serverGeneration == 1)
|
if(serverGeneration == 1)
|
||||||
{
|
{
|
||||||
CreateWellKnownSockets();
|
CreateWellKnownSockets();
|
||||||
|
|
|
@ -7,7 +7,7 @@ sdk_HEADERS = \
|
||||||
closure.h \
|
closure.h \
|
||||||
colormap.h \
|
colormap.h \
|
||||||
colormapst.h \
|
colormapst.h \
|
||||||
config.h \
|
hotplug.h \
|
||||||
cursor.h \
|
cursor.h \
|
||||||
cursorstr.h \
|
cursorstr.h \
|
||||||
dix.h \
|
dix.h \
|
||||||
|
|
Loading…
Reference in New Issue