mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-04-23 06:32:10 +02:00
Implement problem marker for AC_CHECK_LIB macro.
Fix for https://fedorahosted.org/eclipse-packagekit/ticket/5 . Change-Id: Ic4466a7eb04c4acc5749eafd0536364c53ae6fdb Reviewed-on: https://git.eclipse.org/r/9663 Reviewed-by: Jeff Johnston <jjohnstn@redhat.com> IP-Clean: Jeff Johnston <jjohnstn@redhat.com> Tested-by: Jeff Johnston <jjohnstn@redhat.com>
This commit is contained in:
parent
d0c99408cd
commit
62fa044031
2 changed files with 3 additions and 1 deletions
|
@ -21,7 +21,7 @@ import org.eclipse.core.runtime.IPath;
|
|||
*/
|
||||
public class AutotoolsProblemMarkerInfo {
|
||||
|
||||
public static enum Type{PACKAGE, HEADER, PROG, FILE, GENERIC}
|
||||
public static enum Type{PACKAGE, HEADER, PROG, LIB, FILE, GENERIC}
|
||||
|
||||
private ProblemMarkerInfo marker;
|
||||
|
||||
|
|
|
@ -175,6 +175,8 @@ public class ErrorParser extends MarkerGenerator implements IErrorParser {
|
|||
return AutotoolsProblemMarkerInfo.Type.HEADER;
|
||||
if (typeString.equals("file"))
|
||||
return AutotoolsProblemMarkerInfo.Type.FILE;
|
||||
if (typeString.equals("lib"))
|
||||
return AutotoolsProblemMarkerInfo.Type.LIB;
|
||||
|
||||
return null;
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue