Implemented a lot of fixes

This commit is contained in:
Mario Danic 2007-05-12 00:25:56 +00:00
parent 06256b889a
commit 08dfbf2592
7 changed files with 49 additions and 21 deletions

View File

@ -10,3 +10,15 @@
</classpathentry> </classpathentry>
<classpathentry kind="output" path="bin"/> <classpathentry kind="output" path="bin"/>
</classpath> </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>

View File

@ -15,3 +15,20 @@
<nature>org.eclipse.jdt.core.javanature</nature> <nature>org.eclipse.jdt.core.javanature</nature>
</natures> </natures>
</projectDescription> </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>

View File

@ -14,9 +14,7 @@ The simplest way to compile this package is:
Running `configure' might take a while. While running, it prints Running `configure' might take a while. While running, it prints
some messages telling which features it is checking for. 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 2. Type `ant' to compile the package.
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.
3. Optionally, type `ant check' to run any self-tests that come with 3. Optionally, type `ant check' to run any self-tests that come with
the package. the package.

View File

@ -45,7 +45,7 @@
<property name="dist.jar" value="${package}-${version}.jar" /> <property name="dist.jar" value="${package}-${version}.jar" />
<!-- === CC tasks ====================== --> <!-- === CC tasks ====================== -->
<property name="cc.jar" value="cpptasks.jar"/> <property name="cc.jar" value="${libs}/cpptasks.jar"/>
<taskdef resource="cpptasks.tasks" <taskdef resource="cpptasks.tasks"
classpath="${cc.jar}" classpath="${cc.jar}"
loaderRef="cctasks"/> loaderRef="cctasks"/>
@ -247,23 +247,20 @@
<mkdir dir="${build}"/> <mkdir dir="${build}"/>
<patternset id="tar.commonfiles" includes="**" <patternset id="tar.commonfiles" includes="java-libburn/**"
excludes="**/build/**, **/bin/**, **/*.back, **/*~, excludes="**/build/**, **/bin/**, **/*.back, **/*~,
**/*.sh, **/doc/api/**, **/autom4te.cache/**, **/*.sh, **/doc/api/**, **/autom4te.cache/**,
**/build.properties/**, **/.bzr**, configure" /> **/build.properties/**, **/.bzr**" />
<!-- <!--
.tar.gz distribution (with execution permissions for .sh files) .tar.gz distribution (with execution permissions for .sh files)
--> -->
<delete file="${build}/${dist.tar}.tar.gz"/> <delete file="${build}/${dist.tar}.tar.gz"/>
<tar tarfile="${build}/${dist.tar}.tar.gz" longfile="gnu" <tar tarfile="${build}/${dist.tar}.tar.gz" longfile="gnu"
compression="gzip"> compression="gzip">
<tarfileset prefix="${dist.tar}" dir="."> <tarfileset dir="..">
<patternset refid="tar.commonfiles"/> <patternset refid="tar.commonfiles"/>
</tarfileset> </tarfileset>
<tarfileset prefix="${dist.tar}" mode="755" dir="."> <tarfileset dir=".." mode="755" includes="java-libburn/**/*.sh"/>
<patternset includes="**/*.sh" />
<patternset includes="configure" />
</tarfileset>
</tar> </tar>
</target> </target>

View File

@ -12,9 +12,9 @@ generated by GNU Autoconf 2.60. Invocation command line was
hostname = mplaptop hostname = mplaptop
uname -m = i686 uname -m = i686
uname -r = 2.6.20-15-generic uname -r = 2.6.17-10-generic
uname -s = Linux 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 /usr/bin/uname -p = unknown
/bin/uname -X = unknown /bin/uname -X = unknown
@ -33,6 +33,7 @@ PATH: /usr/sbin
PATH: /usr/bin PATH: /usr/bin
PATH: /sbin PATH: /sbin
PATH: /bin PATH: /bin
PATH: /usr/bin/X11
PATH: /usr/games PATH: /usr/games
@ -41,8 +42,8 @@ PATH: /usr/games
## ----------- ## ## ----------- ##
configure:1633: checking for javac configure:1633: checking for javac
configure:1651: found /usr/bin/javac configure:1651: found /usr/local/bin/javac
configure:1663: result: /usr/bin/javac configure:1663: result: /usr/local/bin/javac
configure:1673: checking for javah configure:1673: checking for javah
configure:1691: found /usr/bin/javah configure:1691: found /usr/bin/javah
configure:1703: result: /usr/bin/javah configure:1703: result: /usr/bin/javah
@ -54,7 +55,7 @@ configure:1816: found /usr/bin/gcc
configure:1827: result: gcc configure:1827: result: gcc
configure:2065: checking for C compiler version configure:2065: checking for C compiler version
configure:2072: gcc --version >&5 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. Copyright (C) 2006 Free Software Foundation, Inc.
This is free software; see the source for copying conditions. There is NO This is free software; see the source for copying conditions. There is NO
warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
@ -65,7 +66,7 @@ Using built-in specs.
Target: i486-linux-gnu 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 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 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:2085: $? = 0
configure:2092: gcc -V >&5 configure:2092: gcc -V >&5
gcc: '-V' option must have argument gcc: '-V' option must have argument
@ -152,7 +153,7 @@ ac_cv_env_target_alias_set=
ac_cv_env_target_alias_value= ac_cv_env_target_alias_value=
ac_cv_objext=o ac_cv_objext=o
ac_cv_path_JAR=/usr/bin/jar 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_path_JAVAH=/usr/bin/javah
ac_cv_prog_ac_ct_CC=gcc ac_cv_prog_ac_ct_CC=gcc
ac_cv_prog_cc_c89= ac_cv_prog_cc_c89=
@ -173,7 +174,7 @@ ECHO_T=''
EXEEXT='' EXEEXT=''
ISOFS_INCLUDE='/usr/local/include/libisofs' ISOFS_INCLUDE='/usr/local/include/libisofs'
JAR='/usr/bin/jar' JAR='/usr/bin/jar'
JAVAC='/usr/bin/javac' JAVAC='/usr/local/bin/javac'
JAVAH='/usr/bin/javah' JAVAH='/usr/bin/javah'
LDFLAGS='' LDFLAGS=''
LIBOBJS='' LIBOBJS=''

View File

@ -318,7 +318,7 @@ Copyright (C) 2006 Free Software Foundation, Inc.
This config.status script is free software; the Free Software Foundation This config.status script is free software; the Free Software Foundation
gives unlimited permission to copy, distribute and modify it." gives unlimited permission to copy, distribute and modify it."
ac_pwd='extras/java' ac_pwd='/home/metalpain/Dados/workspace/java-libburn'
srcdir='.' srcdir='.'
# If no file are specified by the user, then we need to provide default # 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. # 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,@build_alias@,|#_!!_#|,g
s,@host_alias@,|#_!!_#|,g s,@host_alias@,|#_!!_#|,g
s,@target_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,@JAVAH@,|#_!!_#|/usr/bin/javah,g
s,@JAR@,|#_!!_#|/usr/bin/jar,g s,@JAR@,|#_!!_#|/usr/bin/jar,g
s,@CC@,|#_!!_#|gcc,g s,@CC@,|#_!!_#|gcc,g

View File

@ -1,3 +1,6 @@
#Sat Mar 24 13:41:25 CET 2007 #Sat Mar 24 13:41:25 CET 2007
eclipse.preferences.version=1 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 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