changeset 26031:559a244d5679

Add MPLAYER_ prefix to the multiple inclusion guards of generated header files.
author diego
date Fri, 22 Feb 2008 17:38:20 +0000
parents a93e46adb54c
children 93dcb01491cf
files vidix/pci_db2c.awk
diffstat 1 files changed, 9 insertions(+), 9 deletions(-) [+]
line wrap: on
line diff
--- a/vidix/pci_db2c.awk	Fri Feb 22 17:32:36 2008 +0000
+++ b/vidix/pci_db2c.awk	Fri Feb 22 17:38:20 2008 +0000
@@ -46,17 +46,17 @@
     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 @@
     }
     #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