Login
[x]
Log in using an account from:
Fedora Account System
Red Hat Associate
Red Hat Customer
Or login using a Red Hat Bugzilla account
Forgot Password
Login:
Hide Forgot
Create an Account
Red Hat Bugzilla – Attachment 636542 Details for
Bug 857119
USB clerk service won't share any device on Windows Server 2008 R2 and Windows XP
[?]
New
Simple Search
Advanced Search
My Links
Browse
Requests
Reports
Current State
Search
Tabular reports
Graphical reports
Duplicates
Other Reports
User Changes
Plotly Reports
Bug Status
Bug Severity
Non-Defaults
|
Product Dashboard
Help
Page Help!
Bug Writing Guidelines
What's new
Browser Support Policy
5.0.4.rh83 Release notes
FAQ
Guides index
User guide
Web Services
Contact
Legal
This site requires JavaScript to be enabled to function correctly, please enable it.
[patch]
use specific static libs
0001-libwdi-driver-installer-use-specific-static-libs.patch (text/plain), 4.28 KB, created by
Arnon Gilboa
on 2012-11-01 10:18:05 UTC
(
hide
)
Description:
use specific static libs
Filename:
MIME Type:
Creator:
Arnon Gilboa
Created:
2012-11-01 10:18:05 UTC
Size:
4.28 KB
patch
obsolete
>From dbaedb12f186a8caa69fcd487d420be43929e9d4 Mon Sep 17 00:00:00 2001 >From: Arnon Gilboa <agilboa@redhat.com> >Date: Thu, 1 Nov 2012 12:22:59 +0200 >Subject: [PATCH] libwdi driver installer: use specific static libs > >-add Advapi32.lib ole32.lib, set RTL to MT instead of MD >-otherwise it requires to install MS VC++ 2008 SP1 redist >-solves libwdi error WDI_ERROR_NEEDS_ADMIN (-15) >"Unable to run process with required administrative privileges" > >rhbz#857119 >--- > libwdi/.msvc/installer_x64_2008.vcproj | 10 ++++++---- > libwdi/.msvc/installer_x86_2008.vcproj | 10 ++++++---- > 2 files changed, 12 insertions(+), 8 deletions(-) > >diff --git a/libwdi/.msvc/installer_x64_2008.vcproj b/libwdi/.msvc/installer_x64_2008.vcproj >index 11d606b..366a47f 100644 >--- a/libwdi/.msvc/installer_x64_2008.vcproj >+++ b/libwdi/.msvc/installer_x64_2008.vcproj >@@ -21,6 +21,7 @@ > OutputDirectory="$(SolutionDir)$(PlatformName)\$(ConfigurationName)\helper" > IntermediateDirectory="$(SolutionDir)$(PlatformName)\$(ConfigurationName)\helper\installer_x64" > ConfigurationType="1" >+ UseOfMFC="0" > CharacterSet="1" > > > <Tool >@@ -44,7 +45,7 @@ > Optimization="0" > AdditionalIncludeDirectories="..\msvc" > PreprocessorDefinitions="_CRT_SECURE_NO_WARNINGS; _WIN64" >- RuntimeLibrary="3" >+ RuntimeLibrary="1" > WarningLevel="3" > DebugInformationFormat="3" > /> >@@ -59,7 +60,7 @@ > /> > <Tool > Name="VCLinkerTool" >- AdditionalDependencies="newdev.lib setupapi.lib" >+ AdditionalDependencies="newdev.lib setupapi.lib Advapi32.lib ole32.lib" > OutputFile="$(OutDir)\installer_x64.exe" > GenerateDebugInformation="true" > SubSystem="1" >@@ -92,6 +93,7 @@ > OutputDirectory="$(SolutionDir)$(PlatformName)\$(ConfigurationName)\helper" > IntermediateDirectory="$(SolutionDir)$(PlatformName)\$(ConfigurationName)\helper\installer_x64" > ConfigurationType="1" >+ UseOfMFC="0" > CharacterSet="1" > WholeProgramOptimization="1" > > >@@ -116,7 +118,7 @@ > Optimization="1" > AdditionalIncludeDirectories="..\..\msvc" > PreprocessorDefinitions="_CRT_SECURE_NO_WARNINGS; _WIN64" >- RuntimeLibrary="2" >+ RuntimeLibrary="0" > WarningLevel="3" > /> > <Tool >@@ -130,7 +132,7 @@ > /> > <Tool > Name="VCLinkerTool" >- AdditionalDependencies="newdev.lib setupapi.lib" >+ AdditionalDependencies="newdev.lib setupapi.lib Advapi32.lib ole32.lib" > OutputFile="$(OutDir)\installer_x64.exe" > GenerateDebugInformation="false" > SubSystem="1" >diff --git a/libwdi/.msvc/installer_x86_2008.vcproj b/libwdi/.msvc/installer_x86_2008.vcproj >index eb58428..d0d00ea 100644 >--- a/libwdi/.msvc/installer_x86_2008.vcproj >+++ b/libwdi/.msvc/installer_x86_2008.vcproj >@@ -21,6 +21,7 @@ > OutputDirectory="$(SolutionDir)$(PlatformName)\$(ConfigurationName)\helper" > IntermediateDirectory="$(SolutionDir)$(PlatformName)\$(ConfigurationName)\helper\installer_x86" > ConfigurationType="1" >+ UseOfMFC="0" > CharacterSet="1" > > > <Tool >@@ -44,7 +45,7 @@ > AdditionalIncludeDirectories="..\..\msvc" > PreprocessorDefinitions="_CRT_SECURE_NO_WARNINGS" > MinimalRebuild="true" >- RuntimeLibrary="3" >+ RuntimeLibrary="1" > WarningLevel="3" > DebugInformationFormat="3" > /> >@@ -59,7 +60,7 @@ > /> > <Tool > Name="VCLinkerTool" >- AdditionalDependencies="newdev.lib setupapi.lib" >+ AdditionalDependencies="newdev.lib setupapi.lib Advapi32.lib ole32.lib" > OutputFile="$(OutDir)\installer_x86.exe" > GenerateDebugInformation="true" > SubSystem="1" >@@ -92,6 +93,7 @@ > OutputDirectory="$(SolutionDir)$(PlatformName)\$(ConfigurationName)\helper" > IntermediateDirectory="$(SolutionDir)$(PlatformName)\$(ConfigurationName)\helper\installer_x86" > ConfigurationType="1" >+ UseOfMFC="0" > CharacterSet="1" > WholeProgramOptimization="1" > > >@@ -115,7 +117,7 @@ > Optimization="1" > AdditionalIncludeDirectories="..\..\msvc" > PreprocessorDefinitions="_CRT_SECURE_NO_WARNINGS" >- RuntimeLibrary="2" >+ RuntimeLibrary="0" > WarningLevel="3" > /> > <Tool >@@ -129,7 +131,7 @@ > /> > <Tool > Name="VCLinkerTool" >- AdditionalDependencies="newdev.lib setupapi.lib" >+ AdditionalDependencies="newdev.lib setupapi.lib Advapi32.lib ole32.lib" > OutputFile="$(OutDir)\installer_x86.exe" > GenerateDebugInformation="false" > SubSystem="1" >-- >1.7.4.1 >
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Diff
Attachments on
bug 857119
:
633274
|
634962
| 636542