diff options
author | Mike Gabriel <mike.gabriel@das-netzwerkteam.de> | 2016-06-29 11:13:34 +0200 |
---|---|---|
committer | Mike Gabriel <mike.gabriel@das-netzwerkteam.de> | 2016-06-29 11:13:34 +0200 |
commit | b9fb7a05ae01329ef6579b8a1d83926fe5374a76 (patch) | |
tree | f321f6d6eba5693c915cb32e63a323b0d69ee746 /nx-X11/lib/Xext/Imakefile | |
parent | b83a1484399bf0d3790b03206a97ec0d55296fb9 (diff) | |
parent | f051b7a2d3c150c819d44c7ee648108755f71c85 (diff) | |
download | nx-libs-b9fb7a05ae01329ef6579b8a1d83926fe5374a76.tar.gz nx-libs-b9fb7a05ae01329ef6579b8a1d83926fe5374a76.tar.bz2 nx-libs-b9fb7a05ae01329ef6579b8a1d83926fe5374a76.zip |
Merge branch 'sunweaver-pr/libnx-xext-drop-unused-extensions' into 3.6.x
Attributes GH PR #121: https://github.com/ArcticaProject/nx-libs/pull/121
Reviewed by: Vadim Troshchinskiy <vadim@qindel.com> -- Wed, 29 Jun 2016 00:45:43 -0700
Diffstat (limited to 'nx-X11/lib/Xext/Imakefile')
-rw-r--r-- | nx-X11/lib/Xext/Imakefile | 26 |
1 files changed, 14 insertions, 12 deletions
diff --git a/nx-X11/lib/Xext/Imakefile b/nx-X11/lib/Xext/Imakefile index 065667123..e96e23510 100644 --- a/nx-X11/lib/Xext/Imakefile +++ b/nx-X11/lib/Xext/Imakefile @@ -1,10 +1,8 @@ XCOMM $Xorg: Imakefile,v 1.3 2000/08/17 19:45:50 cpqbld Exp $ - - - - XCOMM $XFree86: xc/lib/Xext/Imakefile,v 1.12 2002/10/16 00:37:27 dawes Exp $ + NULL = + #define DoNormalLib NormalLibXext #define DoSharedLib SharedLibXext #define DoExtraLib SharedLibXext @@ -31,16 +29,20 @@ ALLOC_DEFINES = Malloc0ReturnsNullDefines DEFINES = $(ALLOC_DEFINES) INCLUDES = -I$(XLIBSRC) - SRCS = globals.c extutil.c XShape.c $(SHMSRCS) \ - XTestExt1.c XSync.c \ - XSecurity.c DPMS.c - OBJS = globals.o extutil.o XShape.o $(SHMOBJS) \ - XTestExt1.o XSync.o \ - XSecurity.o DPMS.o + SRCS = globals.c \ + extutil.c \ + XShape.c \ + $(SHMSRCS) \ + $(NULL) + + OBJS = globals.o \ + extutil.o \ + XShape.o \ + $(SHMOBJS) \ + $(NULL) + LINTLIBS = $(LINTXLIB) #include <Library.tmpl> -LinkFile(ImUtil.h,$(XLIBSRC)/ImUtil.h) - DependTarget() |