mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-04-29 19:45:01 +02:00
autotools: Fix API errors. Make internal packages actually internal.
Change-Id: I014a7e778f247124239b7c6087b2f0107a11a7fc Signed-off-by: Marc-Andre Laperle <marc-andre.laperle@ericsson.com>
This commit is contained in:
parent
a657aaa132
commit
646f1813f8
4 changed files with 14 additions and 5 deletions
|
@ -2,7 +2,7 @@ Manifest-Version: 1.0
|
|||
Bundle-ManifestVersion: 2
|
||||
Bundle-Name: %Bundle-Name.0
|
||||
Bundle-SymbolicName: org.eclipse.cdt.autotools.core;singleton:=true
|
||||
Bundle-Version: 1.5.0.qualifier
|
||||
Bundle-Version: 2.0.0.qualifier
|
||||
Bundle-Activator: org.eclipse.cdt.autotools.core.AutotoolsPlugin
|
||||
Bundle-Localization: plugin
|
||||
Require-Bundle: org.eclipse.ui;bundle-version="3.4.0",
|
||||
|
@ -29,7 +29,7 @@ Require-Bundle: org.eclipse.ui;bundle-version="3.4.0",
|
|||
Bundle-ActivationPolicy: lazy
|
||||
Bundle-Vendor: %provider
|
||||
Export-Package: org.eclipse.cdt.autotools.core,
|
||||
org.eclipse.cdt.internal.autotools.core,
|
||||
org.eclipse.cdt.internal.autotools.core.configure,
|
||||
org.eclipse.cdt.internal.autotools.core;x-internal:=true,
|
||||
org.eclipse.cdt.internal.autotools.core.configure;x-internal:=true,
|
||||
org.eclipse.cdt.internal.autotools.core.wizards;x-internal:=true
|
||||
Bundle-RequiredExecutionEnvironment: JavaSE-1.7
|
||||
|
|
|
@ -11,7 +11,7 @@
|
|||
<relativePath>../../pom.xml</relativePath>
|
||||
</parent>
|
||||
|
||||
<version>1.5.0-SNAPSHOT</version>
|
||||
<version>2.0.0-SNAPSHOT</version>
|
||||
<artifactId>org.eclipse.cdt.autotools.core</artifactId>
|
||||
<packaging>eclipse-plugin</packaging>
|
||||
</project>
|
||||
|
|
|
@ -131,6 +131,9 @@ public class AutotoolsNewMakeGenerator extends MarkerGenerator {
|
|||
|
||||
}
|
||||
|
||||
/**
|
||||
* @since 2.0
|
||||
*/
|
||||
public MultiStatus generateMakefiles()
|
||||
throws CoreException {
|
||||
return regenerateMakefiles(false);
|
||||
|
@ -171,11 +174,17 @@ public class AutotoolsNewMakeGenerator extends MarkerGenerator {
|
|||
return project;
|
||||
}
|
||||
|
||||
/**
|
||||
* @since 2.0
|
||||
*/
|
||||
public boolean isGeneratedResource() {
|
||||
// TODO Auto-generated method stub
|
||||
return false;
|
||||
}
|
||||
|
||||
/**
|
||||
* @since 2.0
|
||||
*/
|
||||
public void regenerateDependencies() {
|
||||
// TODO Auto-generated method stub
|
||||
|
||||
|
|
|
@ -90,7 +90,7 @@ public class ErrorParserManager extends OutputStream {
|
|||
* @param project - project being built.
|
||||
* @param baseDirectoryURI - absolute location URI of working directory of where the build is performed.
|
||||
* @param markerGenerator - marker generator able to create markers.
|
||||
* @since 5.1
|
||||
* @since 2.0
|
||||
*/
|
||||
public ErrorParserManager(IProject project, URI baseDirectoryURI, MarkerGenerator markerGenerator) {
|
||||
fProject = project;
|
||||
|
|
Loading…
Add table
Reference in a new issue