Minor fix
* mu/ldflags.c: Ignore "cfg" and "argp" keywords.
Showing
1 changed file
with
3 additions
and
3 deletions
... | @@ -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 | ... | ... |
-
Please register or sign in to post a comment