Implemented a lot of fixes
This commit is contained in:
parent
06256b889a
commit
08dfbf2592
@ -10,3 +10,15 @@
|
||||
</classpathentry>
|
||||
<classpathentry kind="output" path="bin"/>
|
||||
</classpath>
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<classpath>
|
||||
<classpathentry kind="src" path="src/java"/>
|
||||
<classpathentry kind="src" path="src/test"/>
|
||||
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER"/>
|
||||
<classpathentry kind="con" path="org.eclipse.jdt.USER_LIBRARY/java-libburn">
|
||||
<attributes>
|
||||
<attribute name="org.eclipse.jdt.launching.CLASSPATH_ATTR_LIBRARY_PATH_ENTRY" value="java-libburn/tmp"/>
|
||||
</attributes>
|
||||
</classpathentry>
|
||||
<classpathentry kind="output" path="bin"/>
|
||||
</classpath>
|
||||
|
@ -15,3 +15,20 @@
|
||||
<nature>org.eclipse.jdt.core.javanature</nature>
|
||||
</natures>
|
||||
</projectDescription>
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<projectDescription>
|
||||
<name>java-libburn</name>
|
||||
<comment></comment>
|
||||
<projects>
|
||||
</projects>
|
||||
<buildSpec>
|
||||
<buildCommand>
|
||||
<name>org.eclipse.jdt.core.javabuilder</name>
|
||||
<arguments>
|
||||
</arguments>
|
||||
</buildCommand>
|
||||
</buildSpec>
|
||||
<natures>
|
||||
<nature>org.eclipse.jdt.core.javanature</nature>
|
||||
</natures>
|
||||
</projectDescription>
|
||||
|
@ -14,9 +14,7 @@ The simplest way to compile this package is:
|
||||
Running `configure' might take a while. While running, it prints
|
||||
some messages telling which features it is checking for.
|
||||
|
||||
2. Type `ant' to compile the package. You need to add the cpptasks.jar to ant
|
||||
classpath. Usually this can be done by copy that jar into ant lib dir.
|
||||
cpptasks.jar can be downloaded from http://ant-contrib.sourceforge.net.
|
||||
2. Type `ant' to compile the package.
|
||||
|
||||
3. Optionally, type `ant check' to run any self-tests that come with
|
||||
the package.
|
||||
|
@ -45,7 +45,7 @@
|
||||
<property name="dist.jar" value="${package}-${version}.jar" />
|
||||
|
||||
<!-- === CC tasks ====================== -->
|
||||
<property name="cc.jar" value="cpptasks.jar"/>
|
||||
<property name="cc.jar" value="${libs}/cpptasks.jar"/>
|
||||
<taskdef resource="cpptasks.tasks"
|
||||
classpath="${cc.jar}"
|
||||
loaderRef="cctasks"/>
|
||||
@ -247,23 +247,20 @@
|
||||
|
||||
<mkdir dir="${build}"/>
|
||||
|
||||
<patternset id="tar.commonfiles" includes="**"
|
||||
<patternset id="tar.commonfiles" includes="java-libburn/**"
|
||||
excludes="**/build/**, **/bin/**, **/*.back, **/*~,
|
||||
**/*.sh, **/doc/api/**, **/autom4te.cache/**,
|
||||
**/build.properties/**, **/.bzr**, configure" />
|
||||
**/build.properties/**, **/.bzr**" />
|
||||
<!--
|
||||
.tar.gz distribution (with execution permissions for .sh files)
|
||||
-->
|
||||
<delete file="${build}/${dist.tar}.tar.gz"/>
|
||||
<tar tarfile="${build}/${dist.tar}.tar.gz" longfile="gnu"
|
||||
compression="gzip">
|
||||
<tarfileset prefix="${dist.tar}" dir=".">
|
||||
<tarfileset dir="..">
|
||||
<patternset refid="tar.commonfiles"/>
|
||||
</tarfileset>
|
||||
<tarfileset prefix="${dist.tar}" mode="755" dir=".">
|
||||
<patternset includes="**/*.sh" />
|
||||
<patternset includes="configure" />
|
||||
</tarfileset>
|
||||
<tarfileset dir=".." mode="755" includes="java-libburn/**/*.sh"/>
|
||||
</tar>
|
||||
</target>
|
||||
|
||||
|
@ -12,9 +12,9 @@ generated by GNU Autoconf 2.60. Invocation command line was
|
||||
|
||||
hostname = mplaptop
|
||||
uname -m = i686
|
||||
uname -r = 2.6.20-15-generic
|
||||
uname -r = 2.6.17-10-generic
|
||||
uname -s = Linux
|
||||
uname -v = #2 SMP Sun Apr 15 07:36:31 UTC 2007
|
||||
uname -v = #2 SMP Fri Oct 13 18:45:35 UTC 2006
|
||||
|
||||
/usr/bin/uname -p = unknown
|
||||
/bin/uname -X = unknown
|
||||
@ -33,6 +33,7 @@ PATH: /usr/sbin
|
||||
PATH: /usr/bin
|
||||
PATH: /sbin
|
||||
PATH: /bin
|
||||
PATH: /usr/bin/X11
|
||||
PATH: /usr/games
|
||||
|
||||
|
||||
@ -41,8 +42,8 @@ PATH: /usr/games
|
||||
## ----------- ##
|
||||
|
||||
configure:1633: checking for javac
|
||||
configure:1651: found /usr/bin/javac
|
||||
configure:1663: result: /usr/bin/javac
|
||||
configure:1651: found /usr/local/bin/javac
|
||||
configure:1663: result: /usr/local/bin/javac
|
||||
configure:1673: checking for javah
|
||||
configure:1691: found /usr/bin/javah
|
||||
configure:1703: result: /usr/bin/javah
|
||||
@ -54,7 +55,7 @@ configure:1816: found /usr/bin/gcc
|
||||
configure:1827: result: gcc
|
||||
configure:2065: checking for C compiler version
|
||||
configure:2072: gcc --version >&5
|
||||
gcc (GCC) 4.1.2 (Ubuntu 4.1.2-0ubuntu4)
|
||||
gcc (GCC) 4.1.2 20060928 (prerelease) (Ubuntu 4.1.1-13ubuntu5)
|
||||
Copyright (C) 2006 Free Software Foundation, Inc.
|
||||
This is free software; see the source for copying conditions. There is NO
|
||||
warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
||||
@ -65,7 +66,7 @@ Using built-in specs.
|
||||
Target: i486-linux-gnu
|
||||
Configured with: ../src/configure -v --enable-languages=c,c++,fortran,objc,obj-c++,treelang --prefix=/usr --enable-shared --with-system-zlib --libexecdir=/usr/lib --without-included-gettext --enable-threads=posix --enable-nls --program-suffix=-4.1 --enable-__cxa_atexit --enable-clocale=gnu --enable-libstdcxx-debug --enable-mpfr --enable-checking=release i486-linux-gnu
|
||||
Thread model: posix
|
||||
gcc version 4.1.2 (Ubuntu 4.1.2-0ubuntu4)
|
||||
gcc version 4.1.2 20060928 (prerelease) (Ubuntu 4.1.1-13ubuntu5)
|
||||
configure:2085: $? = 0
|
||||
configure:2092: gcc -V >&5
|
||||
gcc: '-V' option must have argument
|
||||
@ -152,7 +153,7 @@ ac_cv_env_target_alias_set=
|
||||
ac_cv_env_target_alias_value=
|
||||
ac_cv_objext=o
|
||||
ac_cv_path_JAR=/usr/bin/jar
|
||||
ac_cv_path_JAVAC=/usr/bin/javac
|
||||
ac_cv_path_JAVAC=/usr/local/bin/javac
|
||||
ac_cv_path_JAVAH=/usr/bin/javah
|
||||
ac_cv_prog_ac_ct_CC=gcc
|
||||
ac_cv_prog_cc_c89=
|
||||
@ -173,7 +174,7 @@ ECHO_T=''
|
||||
EXEEXT=''
|
||||
ISOFS_INCLUDE='/usr/local/include/libisofs'
|
||||
JAR='/usr/bin/jar'
|
||||
JAVAC='/usr/bin/javac'
|
||||
JAVAC='/usr/local/bin/javac'
|
||||
JAVAH='/usr/bin/javah'
|
||||
LDFLAGS=''
|
||||
LIBOBJS=''
|
||||
|
@ -318,7 +318,7 @@ Copyright (C) 2006 Free Software Foundation, Inc.
|
||||
This config.status script is free software; the Free Software Foundation
|
||||
gives unlimited permission to copy, distribute and modify it."
|
||||
|
||||
ac_pwd='extras/java'
|
||||
ac_pwd='/home/metalpain/Dados/workspace/java-libburn'
|
||||
srcdir='.'
|
||||
# If no file are specified by the user, then we need to provide default
|
||||
# value. By we need to know if files were specified by the user.
|
||||
@ -489,7 +489,7 @@ s,@LIBS@,|#_!!_#|,g
|
||||
s,@build_alias@,|#_!!_#|,g
|
||||
s,@host_alias@,|#_!!_#|,g
|
||||
s,@target_alias@,|#_!!_#|,g
|
||||
s,@JAVAC@,|#_!!_#|/usr/bin/javac,g
|
||||
s,@JAVAC@,|#_!!_#|/usr/local/bin/javac,g
|
||||
s,@JAVAH@,|#_!!_#|/usr/bin/javah,g
|
||||
s,@JAR@,|#_!!_#|/usr/bin/jar,g
|
||||
s,@CC@,|#_!!_#|gcc,g
|
||||
|
@ -1,3 +1,6 @@
|
||||
#Sat Mar 24 13:41:25 CET 2007
|
||||
eclipse.preferences.version=1
|
||||
org.eclipse.jdt.ui.text.custom_code_templates=<?xml version\="1.0" encoding\="UTF-8" standalone\="no"?><templates><template autoinsert\="true" context\="gettercomment_context" deleted\="false" description\="Comment for getter method" enabled\="true" id\="org.eclipse.jdt.ui.text.codetemplates.gettercomment" name\="gettercomment">/**\n * @return the ${bare_field_name}\n */</template><template autoinsert\="true" context\="settercomment_context" deleted\="false" description\="Comment for setter method" enabled\="true" id\="org.eclipse.jdt.ui.text.codetemplates.settercomment" name\="settercomment">/**\n * @param ${param} the ${bare_field_name} to set\n */</template><template autoinsert\="true" context\="constructorcomment_context" deleted\="false" description\="Comment for created constructors" enabled\="true" id\="org.eclipse.jdt.ui.text.codetemplates.constructorcomment" name\="constructorcomment">/**\n * ${tags}\n */</template><template autoinsert\="true" context\="filecomment_context" deleted\="false" description\="Comment for created Java files" enabled\="true" id\="org.eclipse.jdt.ui.text.codetemplates.filecomment" name\="filecomment">/**\n * \n */</template><template autoinsert\="false" context\="typecomment_context" deleted\="false" description\="Comment for created types" enabled\="true" id\="org.eclipse.jdt.ui.text.codetemplates.typecomment" name\="typecomment">/**\n * @author Vreixo Formoso\n * @since 0.1\n */</template><template autoinsert\="true" context\="fieldcomment_context" deleted\="false" description\="Comment for fields" enabled\="true" id\="org.eclipse.jdt.ui.text.codetemplates.fieldcomment" name\="fieldcomment">/**\n * \n */</template><template autoinsert\="true" context\="methodcomment_context" deleted\="false" description\="Comment for non-overriding methods" enabled\="true" id\="org.eclipse.jdt.ui.text.codetemplates.methodcomment" name\="methodcomment">/**\n * ${tags}\n */</template><template autoinsert\="true" context\="overridecomment_context" deleted\="false" description\="Comment for over
|
||||
#Sat Mar 24 13:41:25 CET 2007
|
||||
eclipse.preferences.version=1
|
||||
org.eclipse.jdt.ui.text.custom_code_templates=<?xml version\="1.0" encoding\="UTF-8" standalone\="no"?><templates><template autoinsert\="true" context\="gettercomment_context" deleted\="false" description\="Comment for getter method" enabled\="true" id\="org.eclipse.jdt.ui.text.codetemplates.gettercomment" name\="gettercomment">/**\n * @return the ${bare_field_name}\n */</template><template autoinsert\="true" context\="settercomment_context" deleted\="false" description\="Comment for setter method" enabled\="true" id\="org.eclipse.jdt.ui.text.codetemplates.settercomment" name\="settercomment">/**\n * @param ${param} the ${bare_field_name} to set\n */</template><template autoinsert\="true" context\="constructorcomment_context" deleted\="false" description\="Comment for created constructors" enabled\="true" id\="org.eclipse.jdt.ui.text.codetemplates.constructorcomment" name\="constructorcomment">/**\n * ${tags}\n */</template><template autoinsert\="true" context\="filecomment_context" deleted\="false" description\="Comment for created Java files" enabled\="true" id\="org.eclipse.jdt.ui.text.codetemplates.filecomment" name\="filecomment">/**\n * \n */</template><template autoinsert\="false" context\="typecomment_context" deleted\="false" description\="Comment for created types" enabled\="true" id\="org.eclipse.jdt.ui.text.codetemplates.typecomment" name\="typecomment">/**\n * @author Vreixo Formoso\n * @since 0.1\n */</template><template autoinsert\="true" context\="fieldcomment_context" deleted\="false" description\="Comment for fields" enabled\="true" id\="org.eclipse.jdt.ui.text.codetemplates.fieldcomment" name\="fieldcomment">/**\n * \n */</template><template autoinsert\="true" context\="methodcomment_context" deleted\="false" description\="Comment for non-overriding methods" enabled\="true" id\="org.eclipse.jdt.ui.text.codetemplates.methodcomment" name\="methodcomment">/**\n * ${tags}\n */</template><template autoinsert\="true" context\="overridecomment_context" deleted\="false" description\="Comment for over
|
||||
|
Loading…
Reference in New Issue
Block a user