mirror of
				https://github.com/mintty/wsltty.git
				synced 2025-11-04 09:01:52 +00:00 
			
		
		
		
	Compare commits
	
		
			4 Commits
		
	
	
		
	
	| Author | SHA1 | Date | |
|---|---|---|---|
| 
						 | 
					5136d7e878 | ||
| 
						 | 
					0d39faaaf6 | ||
| 
						 | 
					d61e551236 | ||
| 
						 | 
					3f60e3f48c | 
@@ -154,6 +154,10 @@ config () {
 | 
			
		||||
    	else	icon="$installdir"'\wsl.ico'
 | 
			
		||||
    	fi
 | 
			
		||||
    	root="$basepath/rootfs"
 | 
			
		||||
    elif [ -f "$basepath/$distro.exe" ]
 | 
			
		||||
    then
 | 
			
		||||
    	icon="$basepath/$distro.exe"
 | 
			
		||||
    	root="$basepath/rootfs"
 | 
			
		||||
    else
 | 
			
		||||
    	icon="%LOCALAPPDATA%/lxss/bash.ico"
 | 
			
		||||
    	root="$basepath"
 | 
			
		||||
 
 | 
			
		||||
@@ -30,6 +30,7 @@ rem copy "WSL Terminal.lnk" "%installdir%"
 | 
			
		||||
rem copy "WSL Terminal %%.lnk" "%installdir%"
 | 
			
		||||
copy config-distros.sh "%installdir%"
 | 
			
		||||
copy mkshortcut.vbs "%installdir%"
 | 
			
		||||
copy uninstall.bat "%installdir%"
 | 
			
		||||
rem allow persistent customization of default icon:
 | 
			
		||||
if not exist "%installdir%\wsl.ico" copy tux.ico "%installdir%\wsl.ico"
 | 
			
		||||
 | 
			
		||||
 
 | 
			
		||||
							
								
								
									
										4
									
								
								makefile
									
									
									
									
									
								
							
							
						
						
									
										4
									
								
								makefile
									
									
									
									
									
								
							@@ -8,7 +8,7 @@
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
# wsltty release
 | 
			
		||||
ver=3.0.2
 | 
			
		||||
ver=3.0.2.2
 | 
			
		||||
 | 
			
		||||
# wsltty appx release - must have 4 parts!
 | 
			
		||||
verx=3.0.2.2
 | 
			
		||||
@@ -121,7 +121,7 @@ wslbridge-package:
 | 
			
		||||
 | 
			
		||||
wslbridge-source:	wslbridge-$(wslbridge-commit).zip
 | 
			
		||||
	unzip -o wslbridge-$(wslbridge-commit).zip
 | 
			
		||||
	#cd wslbridge-$(wslbridge-commit)/backend; patch -T -p1 < ../../wslbridge-backend-static.patch
 | 
			
		||||
	cd wslbridge-$(wslbridge-commit)/backend; patch -T -p1 < ../../wslbridge-backend-static.patch
 | 
			
		||||
	tr -d '\015' < wslbridge-$(wslbridge-commit)/LICENSE.txt > LICENSE.wslbridge
 | 
			
		||||
 | 
			
		||||
wslbridge-$(wslbridge-commit).zip:
 | 
			
		||||
 
 | 
			
		||||
@@ -1,26 +1,41 @@
 | 
			
		||||
diff -rup orig/Makefile new/Makefile
 | 
			
		||||
--- orig/Makefile	2018-05-06 01:12:36.000000000 +0200
 | 
			
		||||
+++ new/Makefile	2019-05-01 08:16:53.647051200 +0200
 | 
			
		||||
@@ -5,7 +5,7 @@ all : ../out/wslbridge-backend
 | 
			
		||||
 ../out/wslbridge-backend : wslbridge-backend.cc ../common/SocketIo.cc ../common/SocketIo.h ../VERSION.txt Makefile
 | 
			
		||||
 	mkdir -p ../out
 | 
			
		||||
 	$(CXX) -std=c++11 -fno-exceptions \
 | 
			
		||||
-		-static-libgcc -static-libstdc++ \
 | 
			
		||||
+		-static -static-libgcc -static-libstdc++ \
 | 
			
		||||
diff -rup old/Makefile new/Makefile
 | 
			
		||||
--- old/Makefile	2018-05-06 01:12:36.000000000 +0200
 | 
			
		||||
+++ new/Makefile	2019-07-24 22:29:12.874257700 +0200
 | 
			
		||||
@@ -8,7 +8,9 @@ all : ../out/wslbridge-backend
 | 
			
		||||
 		-static-libgcc -static-libstdc++ \
 | 
			
		||||
 		-D_GNU_SOURCE \
 | 
			
		||||
 		-DWSLBRIDGE_VERSION=$(shell cat ../VERSION.txt) \
 | 
			
		||||
 		-Wall -O2 $< ../common/SocketIo.cc -o $@ -lutil -pthread
 | 
			
		||||
diff -rup orig/wslbridge-backend.cc new/wslbridge-backend.cc
 | 
			
		||||
--- orig/wslbridge-backend.cc	2018-05-06 01:12:36.000000000 +0200
 | 
			
		||||
+++ new/wslbridge-backend.cc	2019-05-01 08:19:12.799688500 +0200
 | 
			
		||||
@@ -494,6 +494,45 @@ static void frontendVersionCheck(const c
 | 
			
		||||
-		-Wall -O2 $< ../common/SocketIo.cc -o $@ -lutil -pthread
 | 
			
		||||
+		-Wall -O2 $< ../common/SocketIo.cc -o $@ \
 | 
			
		||||
+		-ldl -lutil -static -pthread \
 | 
			
		||||
+		-Wl,--whole-archive -lpthread -Wl,--no-whole-archive
 | 
			
		||||
 	$(STRIP) $@
 | 
			
		||||
 
 | 
			
		||||
 clean:
 | 
			
		||||
diff -rup old/wslbridge-backend.cc new/wslbridge-backend.cc
 | 
			
		||||
--- old/wslbridge-backend.cc	2018-05-06 01:12:36.000000000 +0200
 | 
			
		||||
+++ new/wslbridge-backend.cc	2019-07-24 22:55:25.324307400 +0200
 | 
			
		||||
@@ -494,6 +494,58 @@ static void frontendVersionCheck(const c
 | 
			
		||||
 
 | 
			
		||||
 } // namespace
 | 
			
		||||
 
 | 
			
		||||
+#define getpwuid _getpwuid
 | 
			
		||||
+
 | 
			
		||||
+#include <dlfcn.h>
 | 
			
		||||
+typedef struct passwd * (*__getpwuid_t)(int uid);
 | 
			
		||||
+
 | 
			
		||||
+struct passwd * getpwuid(int uid)
 | 
			
		||||
+{
 | 
			
		||||
+    void * dl = dlopen(0, 0);
 | 
			
		||||
+printf("dlopen %p\n", dl);
 | 
			
		||||
+    if (dl) {
 | 
			
		||||
+        struct passwd * (*__getpwuid)(int uid) =
 | 
			
		||||
+            (__getpwuid_t)dlsym(dl, "getpwuid");
 | 
			
		||||
+printf("dlsym %p\n", __getpwuid);
 | 
			
		||||
+        if (__getpwuid)
 | 
			
		||||
+            return __getpwuid(uid);
 | 
			
		||||
+    }
 | 
			
		||||
+
 | 
			
		||||
+    FILE * pwd = fopen("/etc/passwd", "r");
 | 
			
		||||
+    if (pwd) {
 | 
			
		||||
+        char pwbuf[222];
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user