Compiling TinyCOBOL problems.

Hi,
I'm trying to compile TinyCOBOL on my Solaris 9 x86 PC. When running "./configure", I receive the following...
loading cache ./config.cache
checking host system type... i386-pc-solaris2.9
checking target system type... i386-pc-solaris2.9
checking build system type... i386-pc-solaris2.9
checking for gcc... gcc
checking for as... as
checking for a BSD compatible install... ./install-sh -c
checking whether ln -s works... yes
checking whether make sets ${MAKE}... yes
checking for ranlib... ranlib
checking for ar... ar
checking for flex... flex
checking for bison... bison
checking for expand... /usr/bin/expand
checking how to run the C preprocessor... gcc -E
checking for ANSI C header files... yes
checking for stdio.h... yes
checking for alloca.h... yes
checking for errno.h... yes
checking for fcntl.h... yes
checking for limits.h... yes
checking for sys/time.h... yes
checking for unistd.h... yes
checking for malloc.h... yes
checking for stdlib.h... yes
checking for string.h... yes
checking for strings.h... yes
checking for utime.h... yes
checking for ctype.h... yes
checking for sys/stat.h... yes
checking for sys/types.h... yes
checking for getopt.h... no
checking for working const... yes
checking for off_t... yes
checking for size_t... yes
checking whether struct tm is in sys/time.h or time.h... time.h
checking for 8-bit clean memcmp... yes
checking for vprintf... yes
checking for strcspn... yes
checking for strdup... yes
checking for strerror... yes
checking for strspn... yes
checking for putenv... yes
checking for asin in -lm... yes
Beginning DB library header search sequence
checking for db_185.h... yes
Beginning DB library test link sequence
-n checking for -ldb (version 2.x or 3.x with 1.85 API compatibility)...
no
-n checking for -ldb-4 (with 1.85 API compatibility)...
no
-n checking for -ldb3 (with 1.85 API compatibility)...
no
-n checking for -ldb2 (with 1.85 API compatibility)...
no
configure: error: library test link failed for db3 or db2 and/or compatibility API to version 1.85 not found... aborting
Any ideas? I've installed the "db-4.2.52.NC" package from www.sunfreeware.com, but it doesn't appears to include the files needed.
Cheers.

Ah, I was not aware I had to be in that program to test and run code on an iPhone.
So there is no way I can write code and test run it on an actual iPhone device without being accepted into that program?

Similar Messages

  • Compile / run problems with netbeans 6 but not netbeans 6 beta 1 or 5.5

    When I compile my project in netbeans IDE 6.0 (Build 200711261600) 1.6.0_01; Java HotSpot(TM) Client VM 1.6.0_01-b06 i get quite often a "can not find symbol" error or during runtime a "netbeans 6 java.lang.NoClassDefFoundError" exception. also switching between F6 or ctrl-F5 mode can cause the problem to appear.
    Compiling again or clean build resolves it.
    However running the same project under netbeans 5.5 or 6 beta 1 never gives this problem.
    any hint what might be wrong? i looked and compared the project settings but can't see any difference, but I assume that the upgrade script must have changed something.

    <?xml version="1.0" encoding="UTF-8" ?>
    - <project name="BorderDemo" default="default" basedir=".">
    <import file="nbproject/build-impl.xml" />
    </project>This is 'build.xml' file. Check for 'project.xml' file in 'nbproject' folder. You will find it to be:
    <?xml version="1.0" encoding="UTF-8" ?>
    - <project xmlns="http://www.netbeans.org/ns/project/1">
      <type>org.netbeans.modules.java.j2seproject</type>
    - <configuration>
    - <data xmlns="http://www.netbeans.org/ns/j2se-project/3">
      <name>BorderDemo</name>
      <minimum-ant-version>1.6.5</minimum-ant-version>
    - <source-roots>
      <root id="src.dir" />
      </source-roots>
      </data>
      </configuration>
      </project>Change it to:
    <?xml version="1.0" encoding="UTF-8" ?>
    - <project xmlns="http://www.netbeans.org/ns/project/1">
      <type>org.netbeans.modules.java.j2seproject</type>
    - <configuration>
    - <data xmlns="http://www.netbeans.org/ns/j2se-project/3">
      <name>BorderDemo</name>
      <minimum-ant-version>1.6.5</minimum-ant-version>
    - <source-roots>
      <root id="src.dir" />
      </source-roots>
      <test-roots>
      <root id="test.src.dir" />
      </test-roots>
      </data>
      </configuration>
      </project>I hope it works.....
    thanks!

  • Compiling packages problem???

    Thanks for checking this out, noticed there hadn't been a similar compiling question for
    at least 40 pages, so figured I should contribute!!
    I am trying to compile a package class with six other classes added as part of the
    same package and instantiated withing tabbed panes within the first class.
    info
    JDK: j2sdk1.4.0-beta3
    path: path=c:\windows;c:\windows;c:\windows\command\j2sdk1.4.0-beta3\bin
    Folder/directory : c:\Divelog
    javac is accessed by: c:\j2sdk1.4.0-beta3\bin\javac
    package: divelog
    file: DiveLog.java
    -public class DiveLog extends JFrame
    six other files are Welcome.java, Diver.java, Dives.java, Statistics.java, Website.java,
    Resources.java
    -all are started with the package divelog; declaration
    - all are called within a populateTabbedPane() in the DiveLog file and class.
    all .java files can be seen when I enter c:\Divelog>dir
    problem:
    entering c:\j2sdk1.4.0-beta3\bin\javac DiveLog.java
    returns six errors of type : cannot resolve symbol
    symbol: class Welcome
    location: class divelog.Divelog
    new Welcome
    I understand that this is not the way to compile a package so tryed lots of different
    things as suggested by the troubleshooting tutorial, the most effective are
    c:\j2sdk1.4.0-beta3\bin\javac -classpath c:\Divelog.divelog.java
    " \javac -classpath c:\Divelog.divelog
    \javac -classpath c:\Divelog
    all of these pause for about 5 seconds then returns to the c:\Divelog> (as if there
    were no errors)
    enter dir to see if they have been compiled, and there is no .class versions of these
    files.
    entering
    c:\j2sdk1.4.0-beta3\bin\javac -classpath c:\Divelog\ DiveLog.java or \ Divelog or \
    Divelog.DiveLog
    (with the space after the \ ) returns the six error messages above.
    I am positive there is something very simple I am missing, could someone please help
    me out, It would be greatly appreciated, I really like this java programming, but when
    you run into a hurdle like this, It gets very frustrating. Thanks alot in advance!!!

    Thanks alot eric, I spent about 15 hours trying to work that out. Tthat helped alot I have a couple of quick follow up questions
    1. in the classpath \divelog/*.java what does the /*.java do is that the call for the entirity of the divelog
    package.
    2. all of the six sub classes (welcome, Resources, etc) all compiled and are now in the directory of the
    c:\Divelog>
    except that the main class/file DiveLog will not itself, and is not listed as a DiveLog.class,
    there is still only a DiveLog.java even thought the others in the package all have become .class.
    Is there any way I can compile this one file on it's own, or how do I get it to compile into a .class file??
    3. to run the application would I then enter
    c:\Divelog>c:\j2sdk1.4.0-beta3\bin\java -classpath \divelog.?
    Once again, I really appreciate your help, that was great!

  • Possible compiler/FB Problem?

    I just upgraded to FB 2.0.1. After having to deinstall and
    reimport my project due to issues with the old project, I now have
    a very strange issue.
    When FB compiles and it detects an error,the Problems tab
    shows a description of the problem, but does not show the name of
    the file under "Resource" or anything in the "In Folder" columns.
    It shows a line number, but that really doesn't do me any good
    since I don't know what file its in and I can't double-click or use
    the GO TO to find the error. Due to problems upgrading, I've had to
    import multiple files and it just tells me the problem, but no
    location.
    Any thoughts? This is driving me crazy.
    Thanks,
    Tom

    Thanks for the tip, but it was a bit more involved for me.
    All the normal attempts to resolve the issue didn't work
    including cleaning the project, recreating the project, and even
    reinstalling Flex Builder (w/2.0.1). Finally, the only thing that
    resolved it was deleting all of the files and rebuilding my source
    code from SVN.
    Have a good night!
    Michael
    http://michael.omnicypher.com/2007/01/wheres-problem.html

  • URGENT: sp6 and JSP compiling/classpath problem?

    Hi,
              We installed sp6 on our production site a little over a week and started
              seeing this problem on our logs with regards to any JSP with an include tag,
              such as:
              <%@ include file="/inc/insideHeadTag.jsp" %>
              INTERMITTENTLY, we will get the following error in the page on the client
              side at runtime:
              < ! -- cannot include file '/inc/insideHeadTag.jsp', resource not
              found -- >
              I grepped this newsgroup and noticed a previous unanswered post of the same
              nature, "Static compiles do not seem to include JSP's". Except in our case,
              this problem also manifest for dynamic JSP compiles, happens sporatically,
              and only started with sp6.
              Bug???
              Gene Chuang
              Join Kiko.com!
              

              Just to clarify - I'm not from BEA, I'm from EA - short a letter.
              As far as I know, there is no synchronization between WL instances in a cluster regarding the
              the compiling of JSPs. So when you start up two WL instances that share the same workingDir,
              and each WL instances gets a hit on your shiny new index.jsp, they both need to compile it. So the first
              one compiles it and writes index.class, the second does the same, overwriting the first _index.class,
              possibly at the same time that the first instance is trying to load _index.class into memory. And you
              get a mysterious 'class not found' error. Not likely, but possible.
              "Gene Chuang" <[email protected]> wrote:
              >Hmm, interesting... I thought Weblogic strongly recommends clustered
              >servers sharing the same file system?
              >
              >So you're saying the system-wide, cluster and node specific directories can
              >reside on the shared drive, but workingDirs should reside on local drives?
              >
              >--
              >Gene Chuang
              >Join Kiko.com!
              >
              >"Mike Reiche" <[email protected]> wrote in message
              >news:[email protected]...
              >>
              >> Make sure that your WLS instances are NOT sharing the workingDir. If two
              >instances
              >> try to compile the same JSP at the same time, bad things can happen.
              >>
              >> Mike
              >>
              >> "Gene Chuang" <[email protected]> wrote:
              >> >Hi Jong,
              >> >
              >> >Thanks for the reply; but I wish the solution is as simple as that.
              >Yes,
              >> >my .jsps are in the proper directory. They have been working properly
              >for
              >> >the past 6 months, since we were running WL 4.5.1. Only when I switched
              >to
              >> >WL 5.1 sp6 did this bug start showing up. Plus, like I said in my
              >original
              >> >post, this bug is sporatic. SOMETIMES the included jsp is found by
              >Weblogic
              >> >and the includer jsp compiles correctly; other times it isn't found and
              >the
              >> >includer jsp leaves a gap! What's going on?
              >> >
              >> >We are running clustered web servers in Solaris 2.7 with a shared file
              >> >system. This sporatic behavior may be because some nodes aren't working
              >> >properly???
              >> >
              >> >--
              >> >Gene Chuang
              >> >Join Kiko.com!
              >> >
              >> >"Jong Lee" <[email protected]> wrote in message
              >> >news:[email protected]...
              >> >>
              >> >> "Gene Chuang" <[email protected]> wrote:
              >> >> >Hi,
              >> >> >
              >> >> >We installed sp6 on our production site a little over a week and
              >started
              >> >> >seeing this problem on our logs with regards to any JSP with an
              >include
              >> >tag,
              >> >> >such as:
              >> >> I assumed insideHeadTag.jsp is in
              >> >> YOUR_DOCUMENT_ROOT/inc/insideHeadTag.jsp
              >> >>
              >> >> if you haven't read the spec of relative URI please do so:
              >> >> jsp spec 1.1 - section 2.5.2
              >> >>
              >> >> Jong
              >> >>
              >> >> >
              >> >> > <%@ include file="/inc/insideHeadTag.jsp" %>
              >> >> >
              >> >> >INTERMITTENTLY, we will get the following error in the page on the
              >client
              >> >> >side at runtime:
              >> >> >
              >> >> > < ! -- cannot include file '/inc/insideHeadTag.jsp', resource not
              >> >> >found -- >
              >> >> >
              >> >> >I grepped this newsgroup and noticed a previous unanswered post of the
              >> >same
              >> >> >nature, "Static compiles do not seem to include JSP's". Except in our
              >> >case,
              >> >> >this problem also manifest for dynamic JSP compiles, happens
              >> >sporatically,
              >> >> >and only started with sp6.
              >> >> >
              >> >> >Bug???
              >> >> >
              >> >> >Gene Chuang
              >> >> >Join Kiko.com!
              >> >> >
              >> >> >
              >> >> >
              >> >>
              >> >
              >> >
              >>
              >
              >
              

  • Compiling Servlet problem that uses a JavaBean

    I have a servlet that will get data from a JavaBean which is created before in a jsp file. While I trying to compile the servlet I am getting this message:
    --------------------Configuration: JDK version 1.3 <Default>--------------------
    Command : "C:\jdk1.3\bin\javac.exe" -d "C:\jakarta-tomcat-3.2.1\webapps\ROOT\WEB-INF\classes" C:\jakarta-tomcat-3.2.1\webapps\ROOT\WEB-INF\classes\MyServlet.java
    Directory : C:\jakarta-tomcat-3.2.1\webapps\ROOT\WEB-INF\classes
    C:\jakarta-tomcat-3.2.1\webapps\ROOT\WEB-INF\classes\TasitKayitGirisi.java:19: cannot resolve symbol
    symbol : class SimpleBean
    location: class MyPackage.SimpleBean
         SimpleBean simpleBean = (SimpleBean) session.getAttribute
    ^
    ("simpleBean");
    C:\jakarta-tomcat-3.2.1\webapps\ROOT\WEB-INF\classes\MyServlet.java:19: cannot resolve symbol
    symbol : class SimpleBean
    location: class MyPackage.SimpleBean
         SimpleBean simpleBean= (SimpleBean) session.getAttribute("simpleBean");
    ^
    2 errors
    Process completed.
    Where is the problem. SimpleBean is successfully being initializing in my jsp file. But I couldn't compile my servlet that will get data from that bean. Both my servlet and bean are in the same package. I am using JCreator to compile servlets. I think the problem is the compile string that JCreator uses. Can you help me. Thx in advance.

    Hi,
    The problem is it is not finding the Bean. Put it in the classpath.
    The simplest way is put the class in /WEB-INF/classes/MyPackage folder.

  • Compilation album problems

    please help I am being driven to distraction every time I try to import a compilation album to itunes in finishes up completely dispersed all over every part of my libray single track here single track there no art.its making a terrible mess as a large part of my collection are compilation albulms you can see the problem Im sure its something simple I just cant put my finger on it. I tried looking all through the preferences to no avail.thanks in advance

    When you insert the CD before you import, right click the CD - get info.
    Tick Compilation.

  • Cannot compile Lightspark, problem with llvm

    Hello,
    Lightspark is a new flash player for Flash 9 and more I would like to try. All is done for Ubuntu users, but for the others you have to compile the sources, that's what I am trying.
    During the compilation, here is what I got :
    [ 94%] Built target spark
    Scanning dependencies of target lightspark
    [ 97%] Building CXX object CMakeFiles/lightspark.dir/main.cpp.o
    Linking CXX executable lightspark
    /usr/bin/ld: cannot find -lLLVMLinker
    collect2: ld a retourné 1 code d'état d'exécution
    make[2]: *** [lightspark] Erreur 1
    make[1]: *** [CMakeFiles/lightspark.dir/all] Erreur 2
    make: *** [all] Erreur 2
    As far as I searched on Google, the problem should be easy to fix, there is one name file to change or one packet to download. If this is really the problem, which file/packet ?
    Lightspark wants the user to use cmake :
    [zarmakuizz@zarok objs]$ cmake -DCMAKE-BUILD-TYPE=Release ..
    -- The C compiler identification is GNU
    -- The CXX compiler identification is GNU
    -- Check for working C compiler: /usr/bin/gcc
    -- Check for working C compiler: /usr/bin/gcc -- works
    -- Detecting C compiler ABI info
    -- Detecting C compiler ABI info - done
    -- Check for working CXX compiler: /usr/bin/c++
    -- Check for working CXX compiler: /usr/bin/c++ -- works
    -- Detecting CXX compiler ABI info
    -- Detecting CXX compiler ABI info - done
    -- Found assembler: /usr/bin/nasm
    -- LLVM llvm-config found at: /usr/bin/llvm-config
    -- LLVM version: 2.7
    -- LLVM CXX flags: -I/usr/include  -DNDEBUG -D_GNU_SOURCE -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -O2 -fomit-frame-pointer -fno-exceptions -fno-rtti -fPIC -Woverloaded-virtual
    -- LLVM LD flags: -L/usr/lib/llvm  -lpthread -lffi -ldl -lm
    -- LLVM core libs: -lLLVMLinker -lLLVMArchive -lLLVMBitWriter -lLLVMBitReader -lLLVMInstrumentation -lLLVMipo -lLLVMTransformUtils -lLLVMipa -lLLVMAnalysis -lLLVMTarget -lLLVMMC -lLLVMCore -lLLVMSupport -lLLVMSystem
    -- LLVM JIT libs: -lLLVMX86Disassembler -lLLVMX86AsmParser -lLLVMMCParser -lLLVMX86AsmPrinter -lLLVMX86CodeGen -lLLVMSelectionDAG -lLLVMAsmPrinter -lLLVMX86Info -lLLVMJIT -lLLVMExecutionEngine -lLLVMCodeGen -lLLVMScalarOpts -lLLVMInstCombine -lLLVMTransformUtils -lLLVMipa -lLLVMAnalysis -lLLVMTarget -lLLVMMC -lLLVMCore -lLLVMSupport -lLLVMSystem
    -- LLVM JIT objs:
    -- Found LLVM: /usr/include
    -- Looking for include files CMAKE_HAVE_PTHREAD_H
    -- Looking for include files CMAKE_HAVE_PTHREAD_H - found
    -- Looking for pthread_create in pthreads
    -- Looking for pthread_create in pthreads - not found
    -- Looking for pthread_create in pthread
    -- Looking for pthread_create in pthread - found
    -- Found Threads: TRUE
    -- Found CURL: /usr/lib/libcurl.so
    -- Found ZLIB: /usr/lib/libz.so
    -- checking for modules 'gl;libpcrecpp;libavcodec;libavutil;ftgl;x11'
    --   found gl, version 7.7.1
    --   found libpcrecpp, version 8.02
    --   found libavcodec, version 52.67.0
    --   found libavutil, version 50.15.2
    --   found ftgl, version 2.1.3~rc5
    --   found x11, version 1.3.3
    -- Loaded CMakeASM-NASMInformation - ASM-NASM support is still experimental, please report issues
    -- Configuring done
    -- Generating done
    -- Build files have been written to: /home/zarmakuizz/progra/lightspark-0.3.1/objs
    When compiling :
    [zarmakuizz@zarok objs]$ make
    Scanning dependencies of target spark
    [  2%] Building CXX object CMakeFiles/spark.dir/swf.cpp.o
    [  5%] Building CXX object CMakeFiles/spark.dir/swftypes.cpp.o
    /home/zarmakuizz/progra/lightspark-0.3.1/swftypes.cpp: In member function 'virtual void lightspark::FILLSTYLE::setFragmentProgram() const':
    /home/zarmakuizz/progra/lightspark-0.3.1/swftypes.cpp:1268:25: attention : unused variable 'buffer'
    /home/zarmakuizz/progra/lightspark-0.3.1/swftypes.cpp:1269:16: attention : unused variable 'grad_index'
    /home/zarmakuizz/progra/lightspark-0.3.1/swftypes.cpp:1271:7: attention : unused variable 'index_l'
    /home/zarmakuizz/progra/lightspark-0.3.1/swftypes.cpp:1273:7: attention : unused variable 'index_r'
    [  8%] Building CXX object CMakeFiles/spark.dir/tags.cpp.o
    [ 10%] Building CXX object CMakeFiles/spark.dir/geometry.cpp.o
    [ 13%] Building CXX object CMakeFiles/spark.dir/actions.cpp.o
    [ 16%] Building CXX object CMakeFiles/spark.dir/frame.cpp.o
    [ 18%] Building CXX object CMakeFiles/spark.dir/input.cpp.o
    [ 21%] Building CXX object CMakeFiles/spark.dir/streams.cpp.o
    [ 24%] Building CXX object CMakeFiles/spark.dir/tags_stub.cpp.o
    [ 27%] Building CXX object CMakeFiles/spark.dir/logger.cpp.o
    [ 29%] Building CXX object CMakeFiles/spark.dir/vm.cpp.o
    [ 32%] Building CXX object CMakeFiles/spark.dir/asobjects.cpp.o
    [ 35%] Building CXX object CMakeFiles/spark.dir/abc.cpp.o
    [ 37%] Building CXX object CMakeFiles/spark.dir/abc_codesynt.cpp.o
    /home/zarmakuizz/progra/lightspark-0.3.1/abc_codesynt.cpp: In member function 'lightspark::ASObject* (* lightspark::method_info::synt_method())(lightspark::call_context*)':
    /home/zarmakuizz/progra/lightspark-0.3.1/abc_codesynt.cpp:1611:53: attention : passing NULL to non-pointer argument 2 of 'static llvm::Constant* llvm::ConstantInt::get(const llvm::Type*, uint64_t, bool)'
    /home/zarmakuizz/progra/lightspark-0.3.1/abc_codesynt.cpp:2606:53: attention : passing NULL to non-pointer argument 2 of 'static llvm::Constant* llvm::ConstantInt::get(const llvm::Type*, uint64_t, bool)'
    [ 40%] Building CXX object CMakeFiles/spark.dir/abc_opcodes.cpp.o
    [ 43%] Building CXX object CMakeFiles/spark.dir/flashdisplay.cpp.o
    /home/zarmakuizz/progra/lightspark-0.3.1/flashdisplay.cpp: In static member function 'static lightspark::ASObject* lightspark::Graphics::lineTo(lightspark::ASObject*, lightspark::ASObject* const*, unsigned int)':
    /home/zarmakuizz/progra/lightspark-0.3.1/flashdisplay.cpp:1634:12: attention : unused variable 'th'
    /home/zarmakuizz/progra/lightspark-0.3.1/flashdisplay.cpp:1637:6: attention : unused variable 'x'
    /home/zarmakuizz/progra/lightspark-0.3.1/flashdisplay.cpp:1638:6: attention : unused variable 'y'
    /home/zarmakuizz/progra/lightspark-0.3.1/flashdisplay.cpp: In static member function 'static lightspark::ASObject* lightspark::Graphics::drawCircle(lightspark::ASObject*, lightspark::ASObject* const*, unsigned int)':
    /home/zarmakuizz/progra/lightspark-0.3.1/flashdisplay.cpp:1671:9: attention : unused variable 'x'
    /home/zarmakuizz/progra/lightspark-0.3.1/flashdisplay.cpp:1672:9: attention : unused variable 'y'
    /home/zarmakuizz/progra/lightspark-0.3.1/flashdisplay.cpp:1673:9: attention : unused variable 'radius'
    /home/zarmakuizz/progra/lightspark-0.3.1/flashdisplay.cpp: In static member function 'static lightspark::ASObject* lightspark::Graphics::drawRect(lightspark::ASObject*, lightspark::ASObject* const*, unsigned int)':
    /home/zarmakuizz/progra/lightspark-0.3.1/flashdisplay.cpp:1694:6: attention : unused variable 'x'
    /home/zarmakuizz/progra/lightspark-0.3.1/flashdisplay.cpp:1695:6: attention : unused variable 'y'
    /home/zarmakuizz/progra/lightspark-0.3.1/flashdisplay.cpp:1696:6: attention : unused variable 'width'
    /home/zarmakuizz/progra/lightspark-0.3.1/flashdisplay.cpp:1697:6: attention : unused variable 'height'
    [ 45%] Building CXX object CMakeFiles/spark.dir/flashevents.cpp.o
    [ 48%] Building CXX object CMakeFiles/spark.dir/textfile.cpp.o
    [ 51%] Building CXX object CMakeFiles/spark.dir/thread_pool.cpp.o
    [ 54%] Building CXX object CMakeFiles/spark.dir/flashgeom.cpp.o
    [ 56%] Building CXX object CMakeFiles/spark.dir/flashnet.cpp.o
    [ 59%] Building CXX object CMakeFiles/spark.dir/flashsystem.cpp.o
    [ 62%] Building CXX object CMakeFiles/spark.dir/flashutils.cpp.o
    [ 64%] Building CXX object CMakeFiles/spark.dir/compat.cpp.o
    [ 67%] Building CXX object CMakeFiles/spark.dir/abc_interpreter.cpp.o
    [ 70%] Building CXX object CMakeFiles/spark.dir/flashexternal.cpp.o
    [ 72%] Building CXX object CMakeFiles/spark.dir/flashtext.cpp.o
    [ 75%] Building CXX object CMakeFiles/spark.dir/flashmedia.cpp.o
    [ 78%] Building CXX object CMakeFiles/spark.dir/flv.cpp.o
    [ 81%] Building CXX object CMakeFiles/spark.dir/netutils.cpp.o
    [ 83%] Building CXX object CMakeFiles/spark.dir/timer.cpp.o
    [ 86%] Building CXX object CMakeFiles/spark.dir/decoder.cpp.o
    /home/zarmakuizz/progra/lightspark-0.3.1/decoder.cpp: In member function 'virtual bool lightspark::FFMpegDecoder::decodeData(uint8_t*, uint32_t)':
    /home/zarmakuizz/progra/lightspark-0.3.1/decoder.cpp:365:2: attention : 'int avcodec_decode_video(AVCodecContext*, AVFrame*, int*, const uint8_t*, int)' is deprecated (declared at /usr/include/libavcodec/avcodec.h:3448)
    /home/zarmakuizz/progra/lightspark-0.3.1/decoder.cpp:365:69: attention : 'int avcodec_decode_video(AVCodecContext*, AVFrame*, int*, const uint8_t*, int)' is deprecated (declared at /usr/include/libavcodec/avcodec.h:3448)
    /home/zarmakuizz/progra/lightspark-0.3.1/decoder.cpp:372:2: attention : comparaison entre des expressions entières signée et non signée
    [ 89%] Building CXX object CMakeFiles/spark.dir/threading.cpp.o
    [ 91%] Building CXX object CMakeFiles/spark.dir/flashxml.cpp.o
    /home/zarmakuizz/progra/lightspark-0.3.1/flashxml.cpp: In static member function 'static lightspark::ASObject* lightspark::XMLDocument::_constructor(lightspark::ASObject*, lightspark::ASObject* const*, unsigned int)':
    /home/zarmakuizz/progra/lightspark-0.3.1/flashxml.cpp:46:15: attention : unused variable 'th'
    [ 94%] Building ASM-NASM object CMakeFiles/spark.dir/fastpaths_64.asm.o
    Linking CXX static library libspark.a
    [ 94%] Built target spark
    Scanning dependencies of target lightspark
    [ 97%] Building CXX object CMakeFiles/lightspark.dir/main.cpp.o
    Linking CXX executable lightspark
    /usr/bin/ld: cannot find -lLLVMLinker
    collect2: ld a retourné 1 code d'état d'exécution
    make[2]: *** [lightspark] Erreur 1
    make[1]: *** [CMakeFiles/lightspark.dir/all] Erreur 2
    make: *** [all] Erreur 2
    I don't know what to do to fix it Any idea ?
    Regards,
    Zarmakuizz

    Check here
    http://bbs.archlinux.org/viewtopic.php?id=97363

  • When I export a video I get export errors. It compiled no problem.  Now I will do this as HD h.264 youtube HD

    I exported a movie and now every time I do the same project i get errors in media encoder and the logs say :
    08/14/2014 10:20:58 PM : Encoding Failed
    Export Error
    Error compiling movie.
      Unknown error.
      - Encoding Time: 00:04:21
    08/14/2014 10:28:45 PM : Encoding Failed
    Export Error
    Error compiling movie.
      Unknown error.
      - Encoding Time: 00:10:39
    08/15/2014 04:33:40 PM : Encoding Failed
    Export Error
    Error compiling movie.
      Unknown error.
    I do quicktime it works or SD and its a hit and miss as SD in h.264  any ideas? I never had this problem before....

    Error Compiling Movie... some past discussions and ideas
    -http://helpx.adobe.com/premiere-pro/kb/error-compiling-movie-rendering-or.html
    -http://helpx.adobe.com/premiere-elements/kb/error-error-compiling-movie-render.html
    -and nested sequences http://forums.adobe.com/thread/955172

  • JSPC compile JSP problems (Duplicate class name)

    Hello,
    I tried to use Ant1.5.1 to compile the JSP files.
    I encountered the following problems:
    if my webapp directory structure is as
    $WEB_ROOT/index.jsp
    $WEB_ROOT/folder1/index.jsp
    I compile the JSP in Ant as following:
    <taskdef classname="org.apache.jasper.JspC" name="jasper2" >
    <classpath refid="run.classpath"/>
    </taskdef>
    <jasper2 verbose="0"
    package="eric.test.jsp"
    uriroot="${basedir}/myserv"
    webXmlFragment="${basedir}/jsp/web.xml"
    outputDir="${basedir}/jsp" />
    The Jasper(JSPC) can't append the extra folder to the index_jsp.java
    Both of the index.jsp that in the "ROOT" or in the "folder1" belongs to the same package "eric.test.jsp".
    Therefore, when I compile the .java files, it just raised the Exception "Duplicate class declaration"
    Best regards,
    Eric

    Hi Eric - did you manage to sort this problem out? I am trying to pre-compile my JSPs and I am having the same problem with duplicates classes.
    What I don't understand is that if I don't pre-compile, and I allow Tomcat to compile the JSPs when they are accessed, it appears to create duplicate classes in the same package without any problems...?

  • Compilation's problems with eclipse

    hello
    in working for my thesis with eclipse I have see that the modify to source code have not effect in runt-time
    In effect I have an file .class, I modify the source file .java, I compile and i go this in run with the Eclipse command <<run>> but the behavior not change.
    I don't lie because i appnd a
    system.out
    to main of a class and in run-time the print is'nt.
    What's appened?
    I not remober about modify about Eclipse's configuration ????
    What do you think??
    thank for every feed-back
    Alessandro Puzielli

    Ehm...
    I use Eclipse over Linux.. I have runned Eclipse as
    "root" a few of day ago and Eclipse's behaviort was
    ok. After I have lanched Eclipse as normal user and
    in effect I try to overwriter the *class of root and
    it's impossible!it's normal 'cause you don't have the permissions on the project files
    I have take a few of day for the understand the
    problem with a
    $ stat name_of_file_.classThanks for the responses!so if your project is a small project, start Eclipse as normal user and rewrite your project ! otherwise, log u as root and give you all the permission on the project and it may work (chmod 777 -R project_path)
    peace
    fred

  • Compilation album problem at iOS 7!!!  [HELP]

    (Sorry for inappropriate English, i'm not Native Speaker.)
    So i used to edit some albums within various artists as compilation albums when i used iOS 6 numbering versions.
    It was all good, the albums was all sorted and i could find which artists are participated, if i press A artist, the Music App showed me A's several songs in
    compilation album A artist participated.
    after i used iOS 7, when i press A artist, the Music App does not show me only A's songs, but all of songs in compilation album A artist participated,
    It making me seriously annoying, because, after iOS 7, The Music App doesn't show me what artists has made the song in the pannel of what songs in some Compilation album.
    As you see, the image shows you guys Songs pannel though, when i see inside of some Compilation album, i
    can see what artists has made the songs But IT WAS iOS 6
    I couldn't find any fitting image so i captured my iPhone, anyway, as you see, the image shows you guys inside of some Compilation album,
    and none of those songs shows me what artists has made!! How Could i find it when i want to what artists has made what songs?
    The Problem is not just it, sometimes, no, often when i Press A artist who participated, the Music App shows me only A's song at Compliation album,
    and then i press the Compliation album, still only A's song remain, but all of other artist's songs are gone!! and these songs can be search -.-
    all those problems were not exist when i used iOS 6, after i use iOS 7, technically when i changed the phone to 5s from 4, all those Copilation album problems came up, I need some help desperately!
    (Sorry for inappropriate English agian.)

    Thanks for all your help ...
    The playlist option is viable, but it doesn't show up on the "browse section" and it wouldn't appear as an album ...
    And copying songs again to another location is simply wasting space.
    Is there any other way ?
    What about creating a symbolic link ? Would that help ?
    MBP, 20.GHz, 2GB RAM Mac OS X (10.4.8)

  • OpenMPI compile/link problems [SOLVED]

    After installing openmpi 1.6-2, I tried compiling a well-tested mpi program that
    I have been running under lam mpi on Debian linux.  Attempting to compile on
    Arch openmpi results in missing libraries:
    swallow:~/svn/conv/trunk$ make
    mpicc -g -c main.c
    mpicc -g -c timestep.c
    mpicc -g -c thermo.c
    mpicc -g -c toyrad.c
    mpicc -g -c getprofile.c
    mpicc -g -o conv main.o timestep.o thermo.o toyrad.o \
    getprofile.o -lcdf -lm
    main.o: In function `main':
    /home/raymond/svn/conv/trunk/main.c:157: undefined reference to `lam_mpi_comm_world'
    /home/raymond/svn/conv/trunk/main.c:158: undefined reference to `lam_mpi_comm_world'
    /home/raymond/svn/conv/trunk/main.c:187: undefined reference to `lam_mpi_comm_world'
    /home/raymond/svn/conv/trunk/main.c:189: undefined reference to `lam_mpi_comm_world'
    /home/raymond/svn/conv/trunk/main.c:629: undefined reference to `lam_mpi_sum'
    collect2: error: ld returned 1 exit status
    make: *** [conv] Error 1
    swallow:~/svn/conv/trunk$
    I then downloaded the openmpi package from the OpenMPI website, compiled it myself,
    and installed it in /usr/local.  I was able to compile and run the program with no trouble.
    (The --prefix /usr/local flag was needed on mpirun.)
    I notice that the openmpi libraries have been moved to /usr/lib/openmpi/ in the Arch version.
    Presumably Arch openmpi would work if one told the system where the libraries were (I haven't
    tried it), but relocating the libraries seems like an unnecessary complication to me and a
    booby trap for the unwary.
    Last edited by djraymondnm (2012-09-11 12:57:18)

    Compilation of C code works for me. The location of the libs should not be a problem because the linker find them with the following file :
        $ cat  /etc/ld.so.conf.d/openmpi.conf
        /usr/lib/openmpi
    I just pushed openmpi-1.6.1 in [extra]. Let me know if it works for you. If not, could you please give me a minimal example that does not compile for you ?
    Last edited by stephane (2012-09-04 23:10:17)

  • Compilation album problem ...

    Hello,
    I have a slight problem with a new album (compilation from 1 artist).
    The CD contains only 3 new songs + all greatest hits from the past ... I have only ripped the new tunes out from the CD. I already have the other songs in previous albums.
    My question is, how can make a new album without having to rip all the songs from this CD ? Can I somehow link other songs in this album from my library ?
    Some help would be nice. I would also like to have complete song info and album art from this new album.
    Thanks

    Thanks for all your help ...
    The playlist option is viable, but it doesn't show up on the "browse section" and it wouldn't appear as an album ...
    And copying songs again to another location is simply wasting space.
    Is there any other way ?
    What about creating a symbolic link ? Would that help ?
    MBP, 20.GHz, 2GB RAM Mac OS X (10.4.8)

  • Compiling 0ad - problem with updating workspaces

    Hello.
    I am trying to compile the game 0ad from AUR with makepkg (tried as root and as normal user). Afte downloading and making I get this error message:
    Aktualisiert zu Revision 7314.
    ==> SVN checkout done or server timeout
    ==> Starting make...
    ==> Updating Workspaces...
    /mnt/winshare/user/0ad/PKGBUILD: Zeile 40: ./update-workspaces.sh: Keine Berechtigung
    ==> FEHLER: Build fehlgeschlagen.
    Breche ab ...
    The main problem is, that I have no permission to use ./update-workspaces.sh although it has the permission mask 777! I even tried to compile as root, but the error persists. I am not sure, but maybe it has something to do with the circumstance that I compile the files on a ntfs-partition. I have to, because my ext3-partition is too small.
    I appreciate any help.
    Greetz,
    haunted

    Hi again
    And that's why we call them bugs.
    Did you remember to report it as same to Adobe? The link is in my sig.
    Cheers... Rick
    Helpful and Handy Links
    RoboHelp Wish Form/Bug Reporting Form
    Begin learning RoboHelp HTML within the day - $24.95!
    Adobe Certified RoboHelp HTML Training
    SorcerStone Blog
    RoboHelp eBooks

Maybe you are looking for

  • Flash Game Problem Need Help! Action-Script 2.0

    Im making a flash game its a sniper game btw and i am have a problem with after killing the target for it to go to the next frame. I have tried on(press) on(release) for buttons i hae tried lots of different stuff (1.3 hours of trying) and so i was w

  • Import of RAW (NEF) files from Nikon D 90

    Hi there: > I am new to lightroom and just got a 30 days trial version. I desperately try to import directly RAW (NEF) files into lightroom 2. I have downloaded Adobes latest RAW converter. I also checked all available support areas (hope at least I

  • How Auto starting Physical Standby Database ( when Server Restart)

    Dear All(s) I have configure oracle (10.2.0) dataguard on production database, some time server restart due to power disconnectivity, i want to restard dataguard when server restart. i am using Server 2003 32bit. Guide me how i can run following comm

  • Sound output, comes out headphones AND internal speakers

    I've had my refurbished PBG4 1.33 GHz for a few months and when I plug in headphones, the sound comes out the headphones AND the internal speakers of the laptop. I've tried messing w/ the System Prefs/Output with no luck whatsoever. Any suggestions,

  • Should it take so long to download a TV show I have on iTunes?

    Just purchased Apple TV and want to watch one of the many TV shows I have on iTunes.  it says it will take 5 hours for it to download before I can watch it on Apple TV. Is That normal. Also, I am have it updating iMatch. I have a large libray. Can th