aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPali Rohár <pali@kernel.org>2022-11-05 20:08:33 +0100
committerPali Rohár <pali@kernel.org>2022-11-05 20:08:33 +0100
commit2e2fe038d8857b38b46217d67f8cce498bb8537d (patch)
tree988aa8dfbe5a9d7867fdf473dad894078d3f8702
parent55704534e519d38ed4c2362925b2a68cf4c1e476 (diff)
downloadpciutils-2e2fe038d8857b38b46217d67f8cce498bb8537d.tar.gz
windows: Put name and version information into lspci/setpci executables
Extend existing .in resource template file and generate resource objects also for lspci.exe and setpci.exe executables.
-rw-r--r--Makefile17
-rw-r--r--lib/Makefile6
-rw-r--r--lib/winrsrc.rc.in (renamed from lib/dllrsrc.rc.in)10
3 files changed, 27 insertions, 6 deletions
diff --git a/Makefile b/Makefile
index e2e3bd7..11f15f1 100644
--- a/Makefile
+++ b/Makefile
@@ -112,6 +112,21 @@ example.o: example.c $(PCIINC)
%$(EXEEXT): %.o
$(CC) $(LDFLAGS) $(TARGET_ARCH) $^ $(LDLIBS) -o $@
+ifdef PCI_OS_WINDOWS
+comma := ,
+%-rsrc.rc: lib/winrsrc.rc.in
+ sed <$< >$@ -e 's,@PCILIB_VERSION@,$(PCILIB_VERSION),' \
+ -e 's,@PCILIB_VERSION_WINRC@,$(subst .,\$(comma),$(PCILIB_VERSION).0),' \
+ -e 's,@FILENAME@,$(subst -rsrc.rc,$(EXEEXT),$@),' \
+ -e 's,@DESCRIPTION@,$(subst -rsrc.rc,,$@),' \
+ -e 's,@LIBRARY_BUILD@,0,' \
+ -e 's,@DEBUG_BUILD@,$(if $(findstring -g,$(CFLAGS)),1,0),'
+%-rsrc.o: %-rsrc.rc
+ $(WINDRES) --input=$< --output=$@ --input-format=rc --output-format=coff
+lspci$(EXEEXT): lspci-rsrc.o
+setpci$(EXEEXT): setpci-rsrc.o
+endif
+
%.8 %.7 %.5: %.man
M=`echo $(DATE) | sed 's/-01-/-January-/;s/-02-/-February-/;s/-03-/-March-/;s/-04-/-April-/;s/-05-/-May-/;s/-06-/-June-/;s/-07-/-July-/;s/-08-/-August-/;s/-09-/-September-/;s/-10-/-October-/;s/-11-/-November-/;s/-12-/-December-/;s/\(.*\)-\(.*\)-\(.*\)/\3 \2 \1/'` ; sed <$< >$@ "s/@TODAY@/$$M/;s/@VERSION@/pciutils-$(VERSION)/;s#@IDSDIR@#$(IDSDIR)#;s#@PCI_IDS@#$(PCI_IDS)#"
@@ -125,7 +140,7 @@ TAGS:
clean:
rm -f `find . -name "*~" -o -name "*.[oa]" -o -name "\#*\#" -o -name TAGS -o -name core -o -name "*.orig"`
- rm -f update-pciids lspci$(EXEEXT) setpci$(EXEEXT) example$(EXEEXT) lib/config.* *.[578] pci.ids.gz lib/*.pc lib/*.so lib/*.so.* lib/*.dll lib/*.def lib/dllrsrc.rc tags
+ rm -f update-pciids lspci$(EXEEXT) setpci$(EXEEXT) example$(EXEEXT) lib/config.* *.[578] pci.ids.gz lib/*.pc lib/*.so lib/*.so.* lib/*.dll lib/*.def lib/dllrsrc.rc *-rsrc.rc tags
rm -rf maint/dist
distclean: clean
diff --git a/lib/Makefile b/lib/Makefile
index 13c2a19..05db1ec 100644
--- a/lib/Makefile
+++ b/lib/Makefile
@@ -79,10 +79,12 @@ $(PCIIMPDEF): libpci.ver ver2def.pl
$(PCIIMPLIB): $(PCIIMPDEF)
$(DLLTOOL) --input-def $< --output-lib $@
comma := ,
-dllrsrc.rc: dllrsrc.rc.in
+dllrsrc.rc: winrsrc.rc.in
sed <$< >$@ -e 's,@PCILIB_VERSION@,$(PCILIB_VERSION),' \
-e 's,@PCILIB_VERSION_WINRC@,$(subst .,\$(comma),$(PCILIB_VERSION).0),' \
- -e 's,@PCILIB@,$(PCILIB),' \
+ -e 's,@FILENAME@,$(PCILIB),' \
+ -e 's,@DESCRIPTION@,libpci,' \
+ -e 's,@LIBRARY_BUILD@,1,' \
-e 's,@DEBUG_BUILD@,$(if $(findstring -g,$(CFLAGS)),1,0),'
dllrsrc.o: dllrsrc.rc
$(WINDRES) --input=$< --output=$@ --input-format=rc --output-format=coff
diff --git a/lib/dllrsrc.rc.in b/lib/winrsrc.rc.in
index 519772b..6f16dc2 100644
--- a/lib/dllrsrc.rc.in
+++ b/lib/winrsrc.rc.in
@@ -9,7 +9,11 @@ FILEFLAGS VS_FF_DEBUG
FILEFLAGS 0
#endif
FILEOS VOS_NT_WINDOWS32
+#if @LIBRARY_BUILD@
FILETYPE VFT_DLL
+#else
+FILETYPE VFT_APP
+#endif
FILESUBTYPE 0
BEGIN
BLOCK "StringFileInfo"
@@ -20,10 +24,10 @@ BEGIN
*/
BLOCK "040904B0" /* Default U.S. English language, UNICODE/UTF-16 codepage */
BEGIN
- VALUE "FileDescription", "libpci"
+ VALUE "FileDescription", "@DESCRIPTION@"
VALUE "FileVersion", "@PCILIB_VERSION@"
- VALUE "InternalName", "@PCILIB@"
- VALUE "OriginalFilename", "@PCILIB@"
+ VALUE "InternalName", "@FILENAME@"
+ VALUE "OriginalFilename", "@FILENAME@"
VALUE "ProductName", "pciutils"
VALUE "ProductVersion", "@PCILIB_VERSION@"
END