aboutsummaryrefslogtreecommitdiff
path: root/ports/libpq/patches/windows/MSBuildProject-static-lib.patch
blob: ba72a82bf18ad2592e84864d9bd73f8709cb349b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
diff --git a/src/tools/msvc/MSBuildProject.pm b/src/tools/msvc/MSBuildProject.pm
index 823357c02..e1dc59aa7 100644
--- a/src/tools/msvc/MSBuildProject.pm
+++ b/src/tools/msvc/MSBuildProject.pm
@@ -262,7 +262,7 @@ sub WriteConfigurationPropertyGroup
 	my $cfgtype =
 	  ($self->{type} eq "exe")
 	  ? 'Application'
-	  : ($self->{type} eq "dll" ? 'DynamicLibrary' : 'StaticLibrary');
+	  : ($self->{type} eq "dll" ? 'StaticLibrary' : 'StaticLibrary');
 
 	print $f <<EOF;
   <PropertyGroup Condition="'\$(Configuration)|\$(Platform)'=='$cfgname|$self->{platform}'" Label="Configuration">