diff options
author | marha <marha@users.sourceforge.net> | 2009-10-11 13:33:22 +0000 |
---|---|---|
committer | marha <marha@users.sourceforge.net> | 2009-10-11 13:33:22 +0000 |
commit | 6465e1afb26d7f01a0d4d9e735ddc955dfc6d4a8 (patch) | |
tree | fe80625fc156847267967ead4c413ba70c102504 /xorg-server | |
parent | cf59c83171bfea3c7e88b8e70e3800150a97af41 (diff) | |
download | vcxsrv-6465e1afb26d7f01a0d4d9e735ddc955dfc6d4a8.tar.gz vcxsrv-6465e1afb26d7f01a0d4d9e735ddc955dfc6d4a8.tar.bz2 vcxsrv-6465e1afb26d7f01a0d4d9e735ddc955dfc6d4a8.zip |
Added copying of swrast_dri.dll and opengl32.dll
Diffstat (limited to 'xorg-server')
-rw-r--r-- | xorg-server/makefile | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/xorg-server/makefile b/xorg-server/makefile index bdbae3802..49b80ba7b 100644 --- a/xorg-server/makefile +++ b/xorg-server/makefile @@ -108,7 +108,14 @@ load_makefile fonts.src\makefile MAKESERVER=0 DEBUG=0 load_makefile xkbdata.src\makefile MAKESERVER=0 DEBUG=0 all: $(TTYAPP).exe xlaunch.exe xkbcomp.exe protocol.txt XKeysymDB XErrorDB \ - ..\libX11\nls\all fonts.src\all xkbdata.src\all plink.exe + ..\libX11\nls\all fonts.src\all xkbdata.src\all plink.exe \ + opengl32.dll swrast_dri.dll + +swrast_dri.dll: ..\mesalib\lib\swrast_dri.dll + copy $< $@ + +opengl32.dll: ..\mesalib\lib\opengl32.dll + copy $< $@ protocol.txt: dix\protocol.txt copy $< $@ |