diff options
author | Mike Gabriel <mike.gabriel@das-netzwerkteam.de> | 2016-06-28 12:06:50 +0200 |
---|---|---|
committer | Mike Gabriel <mike.gabriel@das-netzwerkteam.de> | 2016-07-02 13:48:13 +0200 |
commit | a08e2323e838099cc2079287c5b3fd1e9b7f20f7 (patch) | |
tree | 15cd093ae2827f236aa471d2e615323754a5ea6c /nx-X11/programs/Xserver/GL/glx | |
parent | dd5f5b56b48127641ca2bf70a272f60872f2568b (diff) | |
download | nx-libs-a08e2323e838099cc2079287c5b3fd1e9b7f20f7.tar.gz nx-libs-a08e2323e838099cc2079287c5b3fd1e9b7f20f7.tar.bz2 nx-libs-a08e2323e838099cc2079287c5b3fd1e9b7f20f7.zip |
Xserver Imakefiles: Make sure NXAGENT_SERVER is defined for all extensions.
Diffstat (limited to 'nx-X11/programs/Xserver/GL/glx')
-rw-r--r-- | nx-X11/programs/Xserver/GL/glx/Imakefile | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/nx-X11/programs/Xserver/GL/glx/Imakefile b/nx-X11/programs/Xserver/GL/glx/Imakefile index 05dfed738..24a35d22e 100644 --- a/nx-X11/programs/Xserver/GL/glx/Imakefile +++ b/nx-X11/programs/Xserver/GL/glx/Imakefile @@ -31,6 +31,8 @@ NXAGENT_SKIP_SRCS = \ NXAGENT_SKIP_OBJS = \ glxext.o \ $(NULL) +#else + NX_DEFINES = -DNXAGENT_SERVER #endif SRCS = global.c \ @@ -124,8 +126,12 @@ NXAGENT_SKIP_OBJS = \ XCOMM If you add "-DDEBUG" in DEFINES, then make sure you also XCOMM add DEBUG to the define in ../mesa/src/X/xf86glx.c - DEFINES = $(GLX_DEFINES) $(NO_EXT_DEFS) $(APIENTRY_DEFS) - + DEFINES = \ + $(GLX_DEFINES) \ + $(NO_EXT_DEFS) \ + $(APIENTRY_DEFS) \ + $(NX_DEFINES) \ + $(NULL) #ifdef IHaveModules ModuleObjectRule() |