summaryrefslogtreecommitdiffstats
path: root/vidix
diff options
context:
space:
mode:
authordiego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2>2008-02-22 17:38:20 +0000
committerdiego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2>2008-02-22 17:38:20 +0000
commit7ea10ea3fab40cbcca063181f3e036ca19b2b434 (patch)
tree391725a2c1f9a43c55060130befe16f680b66880 /vidix
parent584fe5daf2c9de92bf3e3d32c81ab19610dedd7d (diff)
downloadmpv-7ea10ea3fab40cbcca063181f3e036ca19b2b434.tar.bz2
mpv-7ea10ea3fab40cbcca063181f3e036ca19b2b434.tar.xz
Add MPLAYER_ prefix to the multiple inclusion guards of generated header files.
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@26063 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'vidix')
-rw-r--r--vidix/pci_db2c.awk18
1 files changed, 9 insertions, 9 deletions
diff --git a/vidix/pci_db2c.awk b/vidix/pci_db2c.awk
index 16b8c6c33d..38bfca1407 100644
--- a/vidix/pci_db2c.awk
+++ b/vidix/pci_db2c.awk
@@ -46,17 +46,17 @@ BEGIN {
print_head(name_h_file);
print_head(dev_ids_file);
print_includes(dev_ids_file);
- print "#ifndef PCI_VENDORS_H" >vendor_file
- print "#define PCI_VENDORS_H">vendor_file
+ print "#ifndef MPLAYER_PCI_VENDORS_H" >vendor_file
+ print "#define MPLAYER_PCI_VENDORS_H">vendor_file
print "" >vendor_file
- print "#ifndef PCI_IDS_H" >ids_file
- print "#define PCI_IDS_H">ids_file
+ print "#ifndef MPLAYER_PCI_IDS_H" >ids_file
+ print "#define MPLAYER_PCI_IDS_H">ids_file
print "" >ids_file
print "#include \"pci_vendors.h\"">ids_file
print "" >ids_file
- print "#ifndef PCI_NAMES_H" >name_h_file
- print "#define PCI_NAMES_H">name_h_file
+ print "#ifndef MPLAYER_PCI_NAMES_H" >name_h_file
+ print "#define MPLAYER_PCI_NAMES_H">name_h_file
print "" >name_h_file
print_name_struct(name_h_file);
print "#include <stddef.h>">name_file
@@ -116,11 +116,11 @@ BEGIN {
}
#print "Total lines parsed:", line;
print "">vendor_file
- print "#endif /* PCI_VENDORS_H */">vendor_file
+ print "#endif /* MPLAYER_PCI_VENDORS_H */">vendor_file
print "">ids_file
- print "#endif /* PCI_IDS_H */">ids_file
+ print "#endif /* MPLAYER_PCI_IDS_H */">ids_file
print "">name_h_file
- print "#endif /* PCI_NAMES_H */">name_h_file
+ print "#endif /* MPLAYER_PCI_NAMES_H */">name_h_file
if (with_pci_db) print "};">name_file
print "{ 0xFFFF, NULL }" >dev_ids_file;
print "};">dev_ids_file