Commit f52ed2c7 f52ed2c7d8e5baa10f04fad38b8d7da1b987da52 by Sergey Poznyakoff

Minor fix

* mu/ldflags.c: Ignore "cfg" and "argp" keywords.
1 parent 3619df58
...@@ -65,8 +65,8 @@ struct lib_descr { ...@@ -65,8 +65,8 @@ struct lib_descr {
65 #ifdef WITH_PYTHON 65 #ifdef WITH_PYTHON
66 { "python", "-lmu_py " PYTHON_LIBS, -1, NOTALL }, 66 { "python", "-lmu_py " PYTHON_LIBS, -1, NOTALL },
67 #endif 67 #endif
68 { "cfg", "-lmu_cfg", -1, NOTALL }, 68 { "cfg", NULL, 0, 0 }, /* deprecated */
69 { "argp", "-lmu_argp", -2, NOTALL }, 69 { "argp", NULL, 0, 0 }, /* deprecated */
70 { NULL } 70 { NULL }
71 }; 71 };
72 72
...@@ -100,7 +100,7 @@ add_entry (int level, char *ptr) ...@@ -100,7 +100,7 @@ add_entry (int level, char *ptr)
100 100
101 /* Sort the entries by their level. */ 101 /* Sort the entries by their level. */
102 void 102 void
103 sort_entries () 103 sort_entries (void)
104 { 104 {
105 int j; 105 int j;
106 106
......