aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNoah Misch <noah@leadboat.com>2023-06-12 07:40:38 -0700
committerNoah Misch <noah@leadboat.com>2023-06-12 07:40:38 -0700
commit04411cbfdb76194c483c77bdbc636e83099ae5c3 (patch)
tree30ac5295bcb4a4acb5e09efe58e43372bc5e7c47
parentbfd332b3fda5c73e28c05b7ba0aac6cf053cdf00 (diff)
downloadpostgresql-04411cbfdb76194c483c77bdbc636e83099ae5c3.tar.gz
postgresql-04411cbfdb76194c483c77bdbc636e83099ae5c3.zip
Give postgres.exe the icon of other executables.
We had left it icon-free since users won't achieve much by opening it from Windows Explorer. Subsequent to that decision, Task Manager started to show the icon. That shifts the balance in favor of attaching the icon, so do so. No back-patch, but make this late addition to v16. Reviewed by Andres Freund and Magnus Hagander. Discussion: https://postgr.es/m/20230608014507.GD1334487@rfd.leadboat.com
-rw-r--r--src/backend/Makefile3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/backend/Makefile b/src/backend/Makefile
index e4bf0fe9c0e..3c420031759 100644
--- a/src/backend/Makefile
+++ b/src/backend/Makefile
@@ -10,8 +10,7 @@
#-------------------------------------------------------------------------
PGFILEDESC = "PostgreSQL Server"
-# This is a daemon process, which is why it is not labeled as an executable
-#PGAPPICON=win32
+PGAPPICON=win32
subdir = src/backend
top_builddir = ../..