Gcc not found

Hello Guru Oracle DBA,
I’m newbie to LINUX and I took ORACLE official training classes.
I installed ORACLE Enterprise LINUX Release 4 Update 7 on my computer.
Then, I wanted to install the ORACLE database 10g. During the ORACLE database 10g installation,
I run into Product –Specific Prerequisite Check error on: gcc-3.2 not found.
• Product – Specific Prerequisites Checks
• 1 warning, 1 requirement to be verified
• Checking for gcc-3.2; found Not Found. Failed <<<<
• Check complete. The overall result this check is: Failed
• Problem: Some Package required for the Oracle Database 10g to function properly are missing (see above)
• Recommendation: Install the required packages before continuing with the installation.
Can anyone help please?
Thanks,
Edwin

Finally, I installed gcc pacakges etc.
However, I run into another problems:
Checking for ip_local_port_range=1024 - 6500; found ip_local_port_range=9000-6500. FAILED <<<<
Check complete. The overall result of this check is: FAILED
Checking for rmem_default = 262144; found rmem_default = 262144. PASSED
Checking for rmem_max = 262144; found rmem_max=4194304 PASSED
Problem: The kernel prameters do not meet the minimum requirement (see above)
Recommendation: Perform operating system specific instructions to update the kernel parameters.
May I ask your help and guide?
Many thanks in advance for your kind help and information :)
Regards,
Edwin

Similar Messages

  • Gcc not found in path

    Hi, whenever i open this project, there's always this error, anybody knows how i can get rid of it? I have MinGw installed and path-ed already.

    Your English is far easier to understand than native speakers who assume a huge amount of knowledge.
    I have followed your steps, but i have the following problems:
    Problem pane:
    Description Resource Path Location Type
    Program "g++" not found in PATH Preferences, C++/Build/Settings/Discovery, [CDT GCC Built-in Compiler Settings] options C/C++ Scanner Discovery Problem
    Program "gcc" not found in PATH Preferences, C++/Build/Settings/Discovery, [CDT GCC Built-in Compiler Settings] options C/C++ Scanner Discovery Problem
    undefined reference to `WinMain' [project name] line 0, external location: C:\MinGW\x86_64-w64-mingw32\lib\libmingw32.a(lib64_libmingw32_a-crt0_c.o):crt0_c.c C/C++ Problem
    A little red X symbol on the project in the Project explorer
    When i choose Run/Run or Run/Debug, I get the error "Launching [project name].exe has encountered a problem., Program file does not exist.
    Indeed the file does not exist at that location, and I have no idea how to put it there. Can anyone help please?
    Thanks

  • Gzip, gcc not found !

    Hello..
    I installed Solaris 7 on Sun sparc server, after the installation I can't find gzip or gcc.. I searched at "/usr/local/bin" and "/usr/ccs/bin" but no luck.
    Pls, advise if I have to install them separetly and where I can download them?
    Thanx
    B/Rgrds
    Rabea

    I don't know about Solaris 7, but I know that Solaris 8 unbelievably doesn't have a C compiler bundled with it. You can download GNUgcc free from www.sunfreeware.com. That's what I did.

  • Gcc-multilib not found

    Hello,
    I want to upgrade my system but it fails for two packages from aur lib32-avahi and lib32-libtasn1 because they need the dependency gcc-multilib which I cannot find.
    $ yaourt -Syu --aur
    :: Synchronising package databases...
    ==> Software upgrade (new version) :
    aur/lib32-avahi 0.6.25-3.1 -> 0.6.30-2
    aur/lib32-libtasn1 2.6-1 -> 2.9-1
    ==> lib32-avahi dependencies:
    - expat (already installed)
    - lib32-glib2 (already installed)
    - lib32-dbus-core (already installed)
    - lib32-libcap (already installed)
    - lib32-libdaemon (building from AUR)
    - lib32-gdbm (building from AUR)
    ==> Continue building lib32-avahi ? [Y/n]
    ==> -------------------------------------
    ==>
    ==> Building and installing package
    ==> Install or build missing dependencies for lib32-avahi:
    ==> lib32-gdbm dependencies:
    - lib32-glibc (already installed)
    - gdbm>=1.8.3 (already installed)
    - gcc-multilib (building from AUR)
    ==> Continue building lib32-gdbm ? [Y/n]
    ==> ------------------------------------
    ==>
    ==> Building and installing package
    ==> Install or build missing dependencies for lib32-gdbm:
    error: target not found: gcc-multilib
    ==> Restart building lib32-gdbm ? [y/N]
    ==> -----------------------------------
    Same for lib32-libtasn
    any idea ?
    Thank you
    By the way, is there a way to know if these two packages are a dependency of another one or something ? Because I don't remember why I installed it...
    Last edited by martvefun (2011-05-22 08:20:11)

    Thank you it seems to work.
    I've lots of conflict like
    :: binutils-multilib and binutils are in conflict. Remove binutils?
    :: gcc-libs-multilib and gcc-libs are in conflict. Remove gcc-libs?
    :: gcc-multilib and gcc are in conflict. Remove gcc?
    Can I do that safely ?
    So if I understand all the packages in multilib repo are to compile 32 packages in 64 bit system. I don't need to do it now so maybe I can just remove these packages...
    Last edited by martvefun (2011-05-22 09:23:33)

  • Gcc 3.3.2 problem:  libgcc_s.so.1 not found

    I am trying to compile a perl module (Math::GMP) on a Solaris 8 platform. We have gcc 3.3.2 installed, and everything appears to go well until I try the following:
    % ldd blib/arch/auto/Math/GMP/GMP.so
        libgmp.so.3 => /usr/local/lib/libgmp.so.3
        libc.so.1 => /usr/lib/libc.so.1
        libgcc_s.so.1 => (file not found)
        libdl.so.1 => /usr/lib/libdl.so.1
        /usr/platform/SUNW,Ultra-5_10/lib/libc_psr.so.1
    I have confirmed that /usr/local/lib/libgcc_s.so.1 exists, so I don't understand what is wrong. Any clues?

    It isn't entierly clear if the libgcc_s.so.1 dependancy comes directly from "GMP.so" or indirectly from
    "libgmp.so.3".
    You can check that with the dump command, looking at the recorded "SONAME" dependencies:
    dump -Lv blib/arch/auto/Math/GMP/GMP.so
    and
    dump -Lv /usr/local/lib/libgmp.so.3
    While your looking at the output from "dump", have a look at the recorded runtime shared library path, too.
    (the "RUNPATH" or "RPATH" entries). Apparently one of "GMP.so" or "libgmp.so.3" depends on libgcc_s.so.1
    but does not have it's runtime shared library path set to include "/usr/local/lib".
    The fix is to link the bad shared library with the option "-R /usr/local/lib" (assuming your gcc is configured to
    use the Sun linker).

  • -bash: gcc: command not found - Mavericks

    I have installed Xcode 5 and Command line tools when I try to use gcc command it says:
    -bash: gcc: command not found
    http://cl.ly/image/3m2U1N0q1B2l
    Can anyone recommend any solutions, please?
    Thanks

    gcc is in /usr/bin so I would start by looking at my path and seeing if /use/bin is in it.
    Also try typing /usr/bin/gcc and see what response you get.

  • Gcc: command not found problem

    Hi,
    i just full installed cygwin 1.5.5-1 'cause i need to comiple and build a dll so i need to use gcc but in response to this command:
    gcc helloworld.cpp
    i get:
    bash: gcc: command not found
    Is that a windows xp problem or do i have to somehow configure cygwin? I read all the manuals i found but couldn't help.
    Best regards
    Nereida

    Depending on the way you install cygwin, the start for setup.exe is different.
    I will explain the way starting from web:
    http://www.cygwin.com/setup.exe
    You have to choose
    1) Install from Internet
    2) your directory for cygwin like: "D:\Programme\cygwin"
    and the install for all or just for you
    3) choose a local package directory like "D:\Programme\cygwin"
    4) choose the settings to access the web like "Use IE5 Settings"
    5) choose the nearest you download server
    !!! and now the interesting Selection starts: !!!
    A tree of packages is listed you have to click at 6. line (+Devel) at the word Default
    +Devel # Default
    Default should changed to:
    +Devel #  Install
    ...this is already your developer-pack within gcc
    but further you have to go to Libs (line 12) and now click to the '+' -sign:
    + Libs # Default
    The lib tree should now opened.
    go up to the 5. last line at the 6. column "Package" you should read w32api: Win32 API header and library ...
    look back to column 3 "New" there stands Skip click on it [as long] that you see the version number (2.5-1) or any better
    It should help but it is not necessary to click on
    + Doc # Default (line 7)
    so that it changes to
    + Doc # Install.
    so now you can finish your installation!
    I hope it helps
    mike

  • Gcc: command not found

    I am trying to compile a simple hello world type command line program.
    When I type gcc hello.c -o hello i get:
    -bash: gcc: command not found
    I am running OS X ver. 10.7.3
    I have Xcode 4.3.2 installed
    And yes, I'm completely new to Mac.
    Any and all advise will be greatly appreciated.
    Newbie signing out....
    Bobby

    Hi Keith, thank you for your quick response.
    I installed Xcode via app store and do not recall
    anything about the command line options. So I'm
    going to guess I didn't install them. Is there a setting
    to apply this in Xcode? Any direction you can give
    is really appreciated.
    Regards
    Bobby

  • "make: not found" error after downloading gcc 3.80

    Greetings,
    I am running Solaris 10. I downloaded GCC 3.80 (off sunfreeware.com) and created a folder for for it, but when I type:" make install" to execute gcc, I get the message: "make: not found" What should I do?
    Thanks,
    alainjoseph

    Thanks, I got it:) I installed the gcc. I needed it to install Nessus 2.2.5. This may be out of the scope of solaris, but when I executed the command to install nessus I get the following error, "Could not compile our suid shell. What should I do?

  • Lib32-gcc-libs not found

    Im triying to install AdobeAir from AUR. When the instalation finish, yaourt prints a dependcy unsolved. THis dependency package is lib32-gcc-libs.
    If i try to install with pacman, i recive this :
    [rabanomen@borneo] [~]  sudo pacman -S lib32-gcc-libs
    paquete lib32-gcc-libs no encontrado, buscando un grupo...
    error: 'lib32-gcc-libs': no fue encontrado en la lista de paquetes
    My system is up'to date  and i have the full official mirrorlist .

    sorry, i forgot translate it .
    It says ' not found , searching group' ' was not found in the package list'
    I'll search it in the community mirrors.
    Thanks

  • Gcc not working with compiled glibc from PKGBUILD

    hello folks, please excuse my english
    i like to compile certain parts of my system, between them are the kernel, glibc , zsh, etc.
    i had noticed that using a compiled version of glibc from abs results in gcc not working at all ( C compiler cannot create executables logs says). this is weird especially because i hadn't had problems before, i have looked for the error mesagges on Google and a lot of people has had this problem but  nobody has a "generic" solution for this
    this is the config.log file from one failed compile of mpg123
    This file contains any messages produced by compilers while
    running configure, to aid debugging if configure makes a mistake.
    It was created by mpg123 configure 1.12.3, which was
    generated by GNU Autoconf 2.65. Invocation command line was
    $ ./configure --prefix=/usr --with-audio=alsa esd sdl
    ## Platform. ##
    hostname = Soul
    uname -m = x86_64
    uname -r = 2.6.34.1
    uname -s = Linux
    uname -v = #1 SMP PREEMPT Tue Jul 6 23:23:17 CLT 2010
    /usr/bin/uname -p = unknown
    /bin/uname -X = unknown
    /bin/arch = x86_64
    /usr/bin/arch -k = unknown
    /usr/convex/getsysinfo = unknown
    /usr/bin/hostinfo = unknown
    /bin/machine = unknown
    /usr/bin/oslevel = unknown
    /bin/universe = unknown
    PATH: /bin
    PATH: /usr/bin
    PATH: /usr/local/bin
    PATH: /sbin
    PATH: /usr/sbin
    PATH: /usr/local/sbin
    PATH: /usr/share/java/apache-ant/bin
    PATH: /usr/lib/perl5/core_perl/bin
    ## Core tests. ##
    configure:2849: checking build system type
    configure:2863: result: x86_64-unknown-linux-gnu
    configure:2883: checking host system type
    configure:2896: result: x86_64-unknown-linux-gnu
    configure:2933: checking for a BSD-compatible install
    configure:3001: result: /bin/install -c
    configure:3012: checking whether build environment is sane
    configure:3062: result: yes
    configure:3203: checking for a thread-safe mkdir -p
    configure:3242: result: /bin/mkdir -p
    configure:3255: checking for gawk
    configure:3271: found /bin/gawk
    configure:3282: result: gawk
    configure:3293: checking whether make sets $(MAKE)
    configure:3315: result: yes
    configure:3402: checking for -Werror in CFLAGS (It breaks tests)
    configure:3412: result: no
    configure:3423: checking if you are up to something totally static with LDFLAGS/CFLAGS
    configure:3443: result: no
    configure:3463: checking for style of include used by make
    configure:3491: result: GNU
    configure:3561: checking for gcc
    configure:3577: found /usr/bin/gcc
    configure:3588: result: gcc
    configure:3817: checking for C compiler version
    configure:3826: gcc --version >&5
    gcc (GCC) 4.5.1
    Copyright (C) 2010 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.
    configure:3837: $? = 0
    configure:3826: gcc -v >&5
    Using built-in specs.
    COLLECT_GCC=gcc
    COLLECT_LTO_WRAPPER=/usr/lib/gcc/x86_64-unknown-linux-gnu/4.5.1/lto-wrapper
    Target: x86_64-unknown-linux-gnu
    Configured with: ../configure --prefix=/usr --enable-languages=c,c++,fortran,objc,obj-c++,ada --enable-shared --enable-threads=posix --enable-__cxa_atexit --enable-clocale=gnu --enable-gnu-unique-object --enable-lto --enable-plugin --disable-multilib --disable-libstdcxx-pch --with-system-zlib --with-ppl --with-cloog --libdir=/usr/lib --libexecdir=/usr/lib --mandir=/usr/share/man --infodir=/usr/share/info
    Thread model: posix
    gcc version 4.5.1 (GCC)
    configure:3837: $? = 0
    configure:3826: gcc -V >&5
    gcc: '-V' option must have argument
    configure:3837: $? = 1
    configure:3826: gcc -qversion >&5
    gcc: unrecognized option '-qversion'
    gcc: no input files
    configure:3837: $? = 1
    configure:3857: checking whether the C compiler works
    configure:3879: gcc -march=amdfam10 -O2 -pipe -Wl,--hash-style=gnu -Wl,--as-needed conftest.c >&5
    /usr/lib/gcc/x86_64-unknown-linux-gnu/4.5.1/../../../../lib/crt1.o: In function `_start':
    (.text+0x12): undefined reference to `__libc_csu_fini'
    /usr/lib/gcc/x86_64-unknown-linux-gnu/4.5.1/../../../../lib/crt1.o: In function `_start':
    (.text+0x19): undefined reference to `__libc_csu_init'
    collect2: ld returned 1 exit status
    configure:3883: $? = 1
    configure:3921: result: no
    configure: failed program was:
    | /* confdefs.h */
    | #define PACKAGE_NAME "mpg123"
    | #define PACKAGE_TARNAME "mpg123"
    | #define PACKAGE_VERSION "1.12.3"
    | #define PACKAGE_STRING "mpg123 1.12.3"
    | #define PACKAGE_BUGREPORT "[email protected]"
    | #define PACKAGE_URL ""
    | #define PACKAGE "mpg123"
    | #define VERSION "1.12.3"
    | /* end confdefs.h. */
    |
    | int
    | main ()
    | {
    |
    | ;
    | return 0;
    | }
    configure:3926: error: in `/var/abs/local/mpg123/src/mpg123-1.12.3':
    configure:3930: error: C compiler cannot create executables
    See `config.log' for more details.
    ## Cache variables. ##
    ac_cv_build=x86_64-unknown-linux-gnu
    ac_cv_env_CCASFLAGS_set=
    ac_cv_env_CCASFLAGS_value=
    ac_cv_env_CCAS_set=
    ac_cv_env_CCAS_value=
    ac_cv_env_CC_set=
    ac_cv_env_CC_value=
    ac_cv_env_CFLAGS_set=set
    ac_cv_env_CFLAGS_value='-march=amdfam10 -O2 -pipe'
    ac_cv_env_CPPFLAGS_set=
    ac_cv_env_CPPFLAGS_value=
    ac_cv_env_CPP_set=
    ac_cv_env_CPP_value=
    ac_cv_env_ESD_CFLAGS_set=
    ac_cv_env_ESD_CFLAGS_value=
    ac_cv_env_ESD_LIBS_set=
    ac_cv_env_ESD_LIBS_value=
    ac_cv_env_JACK_CFLAGS_set=
    ac_cv_env_JACK_CFLAGS_value=
    ac_cv_env_JACK_LIBS_set=
    ac_cv_env_JACK_LIBS_value=
    ac_cv_env_LDFLAGS_set=set
    ac_cv_env_LDFLAGS_value='-Wl,--hash-style=gnu -Wl,--as-needed'
    ac_cv_env_LIBS_set=
    ac_cv_env_LIBS_value=
    ac_cv_env_PKG_CONFIG_set=
    ac_cv_env_PKG_CONFIG_value=
    ac_cv_env_PULSE_CFLAGS_set=
    ac_cv_env_PULSE_CFLAGS_value=
    ac_cv_env_PULSE_LIBS_set=
    ac_cv_env_PULSE_LIBS_value=
    ac_cv_env_SDL_CFLAGS_set=
    ac_cv_env_SDL_CFLAGS_value=
    ac_cv_env_SDL_LIBS_set=
    ac_cv_env_SDL_LIBS_value=
    ac_cv_env_build_alias_set=
    ac_cv_env_build_alias_value=
    ac_cv_env_host_alias_set=
    ac_cv_env_host_alias_value=
    ac_cv_env_target_alias_set=
    ac_cv_env_target_alias_value=
    ac_cv_host=x86_64-unknown-linux-gnu
    ac_cv_path_install='/bin/install -c'
    ac_cv_path_mkdir=/bin/mkdir
    ac_cv_prog_AWK=gawk
    ac_cv_prog_ac_ct_CC=gcc
    ac_cv_prog_make_make_set=yes
    ## Output variables. ##
    ACLOCAL='${SHELL} /var/abs/local/mpg123/src/mpg123-1.12.3/build/missing --run aclocal-1.11'
    AIX_CFLAGS=''
    AIX_LDFLAGS=''
    AIX_LIBS=''
    ALIB_CFLAGS=''
    ALIB_LDFLAGS=''
    ALIB_LIBS=''
    ALSA_CFLAGS=''
    ALSA_LDFLAGS=''
    ALSA_LIBS=''
    AMDEPBACKSLASH='\'
    AMDEP_FALSE='#'
    AMDEP_TRUE=''
    AMTAR='${SHELL} /var/abs/local/mpg123/src/mpg123-1.12.3/build/missing --run tar'
    API_VERSION='25'
    AR=''
    ARTS_CFLAGS=''
    ARTS_LDFLAGS=''
    ARTS_LIBS=''
    AS=''
    AUTOCONF='${SHELL} /var/abs/local/mpg123/src/mpg123-1.12.3/build/missing --run autoconf'
    AUTOHEADER='${SHELL} /var/abs/local/mpg123/src/mpg123-1.12.3/build/missing --run autoheader'
    AUTOMAKE='${SHELL} /var/abs/local/mpg123/src/mpg123-1.12.3/build/missing --run automake-1.11'
    AWK='gawk'
    CC='gcc'
    CCAS=''
    CCASDEPMODE=''
    CCASFLAGS=''
    CCDEPMODE=''
    CFLAGS='-march=amdfam10 -O2 -pipe'
    COREAUDIO_CFLAGS=''
    COREAUDIO_LDFLAGS=''
    COREAUDIO_LIBS=''
    CPP=''
    CPPFLAGS=''
    CYGPATH_W='echo'
    DECODER_LOBJ=''
    DECODER_OBJ=''
    DEFS=''
    DEPDIR='.deps'
    DLLTOOL=''
    DSYMUTIL=''
    DUMMY_CFLAGS=''
    DUMMY_LDFLAGS=''
    DUMMY_LIBS=''
    DUMPBIN=''
    ECHO_C=''
    ECHO_N='-n'
    ECHO_T=''
    EGREP=''
    ESD_CFLAGS=''
    ESD_LDFLAGS=''
    ESD_LIBS=''
    EXEC_LT_LDFLAGS=''
    EXEEXT=''
    FGREP=''
    GREP=''
    HAVE_AIX_FALSE=''
    HAVE_AIX_TRUE=''
    HAVE_ALIB_FALSE=''
    HAVE_ALIB_TRUE=''
    HAVE_ALSA_FALSE=''
    HAVE_ALSA_TRUE=''
    HAVE_ARTS_FALSE=''
    HAVE_ARTS_TRUE=''
    HAVE_COREAUDIO_FALSE=''
    HAVE_COREAUDIO_TRUE=''
    HAVE_DUMMY_FALSE=''
    HAVE_DUMMY_TRUE=''
    HAVE_ESD_FALSE=''
    HAVE_ESD_TRUE=''
    HAVE_HP_FALSE=''
    HAVE_HP_TRUE=''
    HAVE_JACK_FALSE=''
    HAVE_JACK_TRUE=''
    HAVE_MINT_FALSE=''
    HAVE_MINT_TRUE=''
    HAVE_MODULES_FALSE=''
    HAVE_MODULES_TRUE=''
    HAVE_NAS_FALSE=''
    HAVE_NAS_TRUE=''
    HAVE_OPENAL_FALSE=''
    HAVE_OPENAL_TRUE=''
    HAVE_OS2_FALSE=''
    HAVE_OS2_TRUE=''
    HAVE_OSS_FALSE=''
    HAVE_OSS_TRUE=''
    HAVE_PORTAUDIO_FALSE=''
    HAVE_PORTAUDIO_TRUE=''
    HAVE_PULSE_FALSE=''
    HAVE_PULSE_TRUE=''
    HAVE_SDL_FALSE=''
    HAVE_SDL_TRUE=''
    HAVE_SGI_FALSE=''
    HAVE_SGI_TRUE=''
    HAVE_SNDIO_FALSE=''
    HAVE_SNDIO_TRUE=''
    HAVE_SUN_FALSE=''
    HAVE_SUN_TRUE=''
    HAVE_WIN32_FALSE=''
    HAVE_WIN32_TRUE=''
    HP_CFLAGS=''
    HP_LDFLAGS=''
    HP_LIBS=''
    INCLUDE_STDIO_H=''
    INCLUDE_STDLIB_H=''
    INCLUDE_SYS_TYPE_H=''
    INSTALL_DATA='${INSTALL} -m 644'
    INSTALL_PROGRAM='${INSTALL}'
    INSTALL_SCRIPT='${INSTALL}'
    INSTALL_STRIP_PROGRAM='$(install_sh) -c -s'
    JACK_CFLAGS=''
    JACK_LDFLAGS=''
    JACK_LIBS=''
    LD=''
    LDFLAGS='-Wl,--hash-style=gnu -Wl,--as-needed'
    LFS_LOBJ=''
    LIBMPG123_VERSION='25:5:25'
    LIBOBJS=''
    LIBS=''
    LIBTOOL=''
    LIPO=''
    LN_S=''
    LTLIBOBJS=''
    LT_LDFLAGS='-export-dynamic'
    MAKEINFO='${SHELL} /var/abs/local/mpg123/src/mpg123-1.12.3/build/missing --run makeinfo'
    MINT_CFLAGS=''
    MINT_LDFLAGS=''
    MINT_LIBS=''
    MKDIR_P='/bin/mkdir -p'
    MODULE_OBJ=''
    NAS_CFLAGS=''
    NAS_LDFLAGS=''
    NAS_LIBS=''
    NM=''
    NMEDIT=''
    OBJDUMP=''
    OBJEXT=''
    OPENAL_CFLAGS=''
    OPENAL_LDFLAGS=''
    OPENAL_LIBS=''
    OS2_CFLAGS=''
    OS2_LDFLAGS=''
    OS2_LIBS=''
    OSS_CFLAGS=''
    OSS_LDFLAGS=''
    OSS_LIBS=''
    OTOOL64=''
    OTOOL=''
    OUTPUT_CFLAGS=''
    OUTPUT_LDFLAGS=''
    OUTPUT_LIBS=''
    OUTPUT_MOD=''
    OUTPUT_OBJ=''
    PACKAGE='mpg123'
    PACKAGE_BUGREPORT='[email protected]'
    PACKAGE_NAME='mpg123'
    PACKAGE_STRING='mpg123 1.12.3'
    PACKAGE_TARNAME='mpg123'
    PACKAGE_URL=''
    PACKAGE_VERSION='1.12.3'
    PATH_SEPARATOR=':'
    PKG_CONFIG=''
    PORTAUDIO_CFLAGS=''
    PORTAUDIO_LDFLAGS=''
    PORTAUDIO_LIBS=''
    PULSE_CFLAGS=''
    PULSE_LDFLAGS=''
    PULSE_LIBS=''
    RANLIB=''
    SDL_CFLAGS=''
    SDL_LDFLAGS=''
    SDL_LIBS=''
    SED=''
    SET_MAKE=''
    SGI_CFLAGS=''
    SGI_LDFLAGS=''
    SGI_LIBS=''
    SHELL='/bin/sh'
    SNDIO_CFLAGS=''
    SNDIO_LDFLAGS=''
    SNDIO_LIBS=''
    STRIP=''
    SUN_CFLAGS=''
    SUN_LDFLAGS=''
    SUN_LIBS=''
    VERSION='1.12.3'
    WIN32_CFLAGS=''
    WIN32_CODES_FALSE=''
    WIN32_CODES_TRUE=''
    WIN32_LDFLAGS=''
    WIN32_LIBS=''
    ac_ct_CC='gcc'
    ac_ct_DUMPBIN=''
    am__EXEEXT_FALSE=''
    am__EXEEXT_TRUE=''
    am__fastdepCCAS_FALSE=''
    am__fastdepCCAS_TRUE=''
    am__fastdepCC_FALSE=''
    am__fastdepCC_TRUE=''
    am__include='include'
    am__isrc=''
    am__leading_dot='.'
    am__quote=''
    am__tar='${AMTAR} chof - "$$tardir"'
    am__untar='${AMTAR} xf -'
    bindir='${exec_prefix}/bin'
    build='x86_64-unknown-linux-gnu'
    build_alias=''
    build_cpu='x86_64'
    build_os='linux-gnu'
    build_vendor='unknown'
    datadir='${datarootdir}'
    datarootdir='${prefix}/share'
    docdir='${datarootdir}/doc/${PACKAGE_TARNAME}'
    dvidir='${docdir}'
    exec_prefix='NONE'
    host='x86_64-unknown-linux-gnu'
    host_alias=''
    host_cpu='x86_64'
    host_os='linux-gnu'
    host_vendor='unknown'
    htmldir='${docdir}'
    includedir='${prefix}/include'
    infodir='${datarootdir}/info'
    install_sh='${SHELL} /var/abs/local/mpg123/src/mpg123-1.12.3/build/install-sh'
    libdir='${exec_prefix}/lib'
    libexecdir='${exec_prefix}/libexec'
    localedir='${datarootdir}/locale'
    localstatedir='${prefix}/var'
    lt_ECHO='echo'
    mandir='${datarootdir}/man'
    mkdir_p='/bin/mkdir -p'
    oldincludedir='/usr/include'
    pdfdir='${docdir}'
    prefix='/usr'
    program_transform_name='s,x,x,'
    psdir='${docdir}'
    sbindir='${exec_prefix}/sbin'
    sharedstatedir='${prefix}/com'
    sysconfdir='${prefix}/etc'
    target_alias=''
    ## confdefs.h. ##
    /* confdefs.h */
    #define PACKAGE_NAME "mpg123"
    #define PACKAGE_TARNAME "mpg123"
    #define PACKAGE_VERSION "1.12.3"
    #define PACKAGE_STRING "mpg123 1.12.3"
    #define PACKAGE_BUGREPORT "[email protected]"
    #define PACKAGE_URL ""
    #define PACKAGE "mpg123"
    #define VERSION "1.12.3"
    configure: exit 77
    the parts i had searched on google are specificaly the
    "/usr/lib/gcc/x86_64-unknown-linux-gnu/4.5.1/../../../../lib/crt1.o: In function `_start':
    (.text+0x12): undefined reference to `__libc_csu_fini'
    /usr/lib/gcc/x86_64-unknown-linux-gnu/4.5.1/../../../../lib/crt1.o: In function `_start':
    (.text+0x19): undefined reference to `__libc_csu_init'"
    does anyone have an idea of what could it be?
    notice that this doesn't bother me because if i use the glibc from the repositories everything works fine, this is just for curiosity of why it doesn't work
    thanks in advance

    slacknatcher wrote:
    the parts i had searched on google are specificaly the
    "/usr/lib/gcc/x86_64-unknown-linux-gnu/4.5.1/../../../../lib/crt1.o: In function `_start':
    (.text+0x12): undefined reference to `__libc_csu_fini'
    /usr/lib/gcc/x86_64-unknown-linux-gnu/4.5.1/../../../../lib/crt1.o: In function `_start':
    (.text+0x19): undefined reference to `__libc_csu_init'"
    does anyone have an idea of what could it be?
    notice that this doesn't bother me because if i use the glibc from the repositories everything works fine, this is just for curiosity of why it doesn't work
    thanks in advance
    You have stripped glibc too much.  See the Arch PKGBUILD and make sure your makepkg.conf has STRIP_BINARY etc defined.

  • Sqlora11.dll not found when running Pro*C application on 11g server

    Hello,
    Here is my environment:
    Workstation: Windows XP (32bit) with Oracle Client 11g 32bit
    Server: Windows 2003 server 64bit with Oracle 11g 64bit
    I have a Pro*C program that I have been able to pre-compiled, compiled and linked on my workstation using Mingw/gcc compiler and standard include files (sdtio.h...) from MS Visual C++ 2005 Express Edition.
    Precompilation: E:\app\oracle\product\11.1.0\client_1\BIN\proc.exe iname=Fill_Translated.pc oname=Fill_Translated.c userid=xxx/yyy@my11gDB code=ansi_c parse=full mode=oracle dynamic=oracle lines=yes sqlcheck=semantics errors=yes sys_include="C:\Program Files\Microsoft Visual Studio 8\VC\include" include=("E:\app\oracle\product\11.1.0\client_1\precomp\public","E:\app\oracle\product\11.1.0\client_1\oci\include")
    Compilation: c:\mingw\bin\gcc.exe -c Fill_Translated.c -o Fill_Translated.o -Wall -I E:\app\oracle\product\11.1.0\client_1\precomp\public -I E:\app\oracle\product\11.1.0\client_1\oci\include
    Link: c:\mingw\bin\gcc.exe -o Fill_Translated.exe Fill_Translated.o -L E:\app\oracle\product\11.1.0\client_1\precomp\LIB\ -lorasql11
    The result is an executable file that gets connected to an 11g database hosted on a w2003 64-bit server, opens a table with blob fields and expands the blob content into a target table (one blob source record generates thousands of target records). Everything works fine when running from my workstation.
    For some reasons, this executable file must run on the O11g server itself. So I copied and pasted the executable file on the server and tried to run it. I thought it would work...
    But I get the following error message in a popup window: This application has failed to start because orasql11.dll was not found. Re-installing the application may fix this problem.
    At this point, I do not know anymore what to do to solve this problem !
    Does it come from the fact that the complete build have been done on a Windows 32bit platform and the server is a 64-bit platform ?
    Do I have to install a O11g 64bit client on my server to make it work ?
    Do I have to rebuild everything from the server, meaning that I must install a kind of development environment on my server (Mingw/gcc and so on) ?
    Is there something to change in the registry of the server or in the path environment variable so that this dll is found ?
    Any others ideas ??
    Thank you for your answers.

    Actually, I do not have any O11g client installed on my Oracle server. But the DLL exists in my $ORACLE_HOME/lib on my server, more precisely in E:\app\dev_ora\product\11.1.0\db_1\BIN.
    As I built my executable file on a win32 platform with O11g client 32bit installed, I was wondering if the same executable file copied onto the server was not trying to find the relevant 32 bit library on my win64 platform, which of course does not exists as I have only a 64bit version of this library !! Would-it be the cause of the problem ?
    Does an O11g 32bit client installation on my Oracle 11g 64bit server would solve the problem ? Any inconvenient to have on the same server both an O11g 64bit server and an O11g 32bit client if it appears to be the solution ?

  • SOLVED: installing firefox-3.6.28 on 64-bit debian multiarch - "firefox-bin: not found"

    summary: I must run a firefox-3.x to telework, and I run debian at home. I previously had firefox-3.6.28 installed and running on an up-to-date debian, but mistakenly destroyed that install. I have reinstalled the OS, and reinstalled firefox-3.6.28, but it will not run:
    <pre>
    $ /usr/local/share/firefox-3.6.28/firefox -no-remote -ProfileManager &
    > [1] 8297
    > $ /usr/local/share/firefox-3.6.28/run-mozilla.sh: 143: exec: /usr/local/share/firefox-3.6.28/firefox-bin: not found
    </pre>
    details:
    As detailed in a previous question
    https://support.mozilla.org/en-US/questions/931873
    my workplace forces me to run a firefox-3.x in order to install a plugin (F5NAP) that provides remote access. (While the question above suggests that a firefox-8.x would also be an option, the latter is not in fact compatible with my workplace's servers' configuration.) I previously was able to do this first ~2 years ago, as indicated in the question above, on a 64-bit PC with debian=wheezy/sid (distro=LMDE==Linux Mint Debian Edition).
    About a month ago, that older PC developed severe problems, so I began to setup a newer PC, which must also run the VPN, and therefore firefox-3.6.28+F5NAP. The new box is running
    <pre>
    $ uname -a
    Linux box 3.11-2-amd64 #1 SMP Debian 3.11.8-1 (2013-11-13) x86_64 GNU/Linux
    $ lsb_release -a
    No LSB modules are available.
    Distributor ID: LinuxMint
    Description: LMDE Cinnamon Edition
    Release: 1
    Codename: debian
    $ cat /etc/debian_version
    jessie/sid
    </pre>
    Note that the new box is also 64-bit, but (unlike the old box) is running the latest debian with multiarch support
    https://wiki.debian.org/Multiarch
    (whereas the old box used package=ia32-libs). I was able to install firefox-3.6.28+F5NAP on the new box as detailed here
    http://forums.linuxmint.com/viewtopic.php?f=190&t=164522
    Unfortunately I later misconfigured LVM, forcing me to reinstall everything :-( I have LMDE and most applications installed (from APT, with packages currently up-to-date) and everything appears to work (particularly the firefox-28.0 which I am using to ask this question). However this time I'm getting a very different error when I run firefox-3.6.28.
    I'm installing and running firefox-3.6.28 with the following bash scriptlet (which is how I installed it previously):
    <pre>
    FF_VERSION='3.6.28'
    LINUX_VERSION='i686' # since there is no 64-bit build of this version of firefox
    EXEC_FN='firefox'
    LANG='en-US'
    FF_WITH_VERSION="firefox-${FF_VERSION}"
    URI="https://ftp.mozilla.org/pub/mozilla.org/firefox/releases/${FF_VERSION}/linux-${LINUX_VERSION}/${LANG}/${FF_WITH_VERSION}.tar.bz2"
    BUILD_DIR="/tmp/${FF_WITH_VERSION}"
    UNZIP_DIR="${BUILD_DIR}/firefox"
    INSTALL_ROOT='/usr/local/share'
    INSTALL_OWN='root:staff' # like peers on new LMDE, not 'root:root'
    INSTALL_DIR="${INSTALL_ROOT}/${FF_WITH_VERSION}"
    EXEC_FP="${INSTALL_DIR}/${EXEC_FN}"
    EXEC_ARGS='-no-remote -ProfileManager'
    # `tar j` == bzip2
    for CMD in \
    "mkdir -p ${BUILD_DIR}" \
    "sudo mkdir -p ${INSTALL_ROOT}" \
    "pushd ${BUILD_DIR}" \
    "wget -O - ${URI} | tar xfj -" \
    "find | wc -l" \
    "popd" \
    "sudo mv ${UNZIP_DIR} ${INSTALL_DIR}" \
    "sudo chown -R ${INSTALL_OWN} ${INSTALL_DIR}/" \
    "du -hs ${INSTALL_DIR}/" \
    "ls -alh ${EXEC_FP}" \
    "${EXEC_FP} ${EXEC_ARGS} &" \
    ; do
    echo -e "$ ${CMD}"
    eval "${CMD}"
    done
    </pre>
    firefox-3.6.28 appears to install correctly:
    <pre>
    $ lsalh /usr/local/share/firefox-3.6.28/
    total 20M
    drwxr-xr-x 13 root staff 4.0K May 1 18:30 .
    drwxrwsr-x 9 root staff 4.0K May 1 18:04 ..
    -rw-r--r-- 1 root staff 2.1K Mar 6 2012 application.ini
    -rw-r--r-- 1 root staff 0 Mar 6 2012 .autoreg
    -rw-r--r-- 1 root staff 5.1K Mar 6 2012 blocklist.xml
    -rw-r--r-- 1 root staff 232 Mar 6 2012 browserconfig.properties
    drwxr-xr-x 3 root staff 4.0K Mar 6 2012 chrome
    drwxr-xr-x 2 root staff 4.0K Mar 6 2012 components
    -rwxr-xr-x 1 root staff 51K Mar 6 2012 crashreporter
    -rw-r--r-- 1 root staff 3.8K Mar 6 2012 crashreporter.ini
    -rw-r--r-- 1 root staff 583 Mar 6 2012 crashreporter-override.ini
    drwxr-xr-x 5 root staff 4.0K Mar 6 2012 defaults
    -rw-r--r-- 1 root staff 136 Mar 6 2012 dependentlibs.list
    drwxr-xr-x 2 root staff 4.0K Mar 6 2012 dictionaries
    drwxr-xr-x 3 root staff 4.0K Mar 6 2012 extensions
    -rwxr-xr-x 1 root staff 3.9K Mar 6 2012 firefox
    -rwxr-xr-x 1 root staff 44K Mar 6 2012 firefox-bin
    drwxr-xr-x 2 root staff 4.0K Mar 6 2012 greprefs
    drwxr-xr-x 2 root staff 4.0K Mar 6 2012 icons
    -rw-r--r-- 1 root staff 478 Mar 6 2012 libfreebl3.chk
    -rwxr-xr-x 1 root staff 326K Mar 6 2012 libfreebl3.so
    -rwxr-xr-x 1 root staff 1.1M Mar 6 2012 libmozjs.so
    -rwxr-xr-x 1 root staff 201K Mar 6 2012 libnspr4.so
    -rwxr-xr-x 1 root staff 853K Mar 6 2012 libnss3.so
    -rwxr-xr-x 1 root staff 390K Mar 6 2012 libnssckbi.so
    -rw-r--r-- 1 root staff 478 Mar 6 2012 libnssdbm3.chk
    -rwxr-xr-x 1 root staff 121K Mar 6 2012 libnssdbm3.so
    -rwxr-xr-x 1 root staff 81K Mar 6 2012 libnssutil3.so
    -rwxr-xr-x 1 root staff 14K Mar 6 2012 libplc4.so
    -rwxr-xr-x 1 root staff 8.8K Mar 6 2012 libplds4.so
    -rwxr-xr-x 1 root staff 123K Mar 6 2012 libsmime3.so
    -rw-r--r-- 1 root staff 478 Mar 6 2012 libsoftokn3.chk
    -rwxr-xr-x 1 root staff 194K Mar 6 2012 libsoftokn3.so
    -rwxr-xr-x 1 root staff 501K Mar 6 2012 libsqlite3.so
    -rwxr-xr-x 1 root staff 169K Mar 6 2012 libssl3.so
    -rwxr-xr-x 1 root staff 12K Mar 6 2012 libxpcom.so
    -rwxr-xr-x 1 root staff 16M Mar 6 2012 libxul.so
    -rw-r--r-- 1 root staff 31K Mar 6 2012 LICENSE
    drwxr-xr-x 2 root staff 4.0K Mar 6 2012 modules
    -rwxr-xr-x 1 root staff 11K Mar 6 2012 mozilla-xremote-client
    -rw-r--r-- 1 root staff 137 Mar 6 2012 platform.ini
    -rwxr-xr-x 1 root staff 3.7K Mar 6 2012 plugin-container
    drwxr-xr-x 2 root staff 4.0K Mar 6 2012 plugins
    -rw-r--r-- 1 root staff 177 Mar 6 2012 README.txt
    -rw-r--r-- 1 root staff 16K Mar 6 2012 removed-files
    drwxr-xr-x 6 root staff 4.0K Mar 6 2012 res
    -rwxr-xr-x 1 root staff 9.8K Mar 6 2012 run-mozilla.sh
    drwxr-xr-x 2 root staff 4.0K Mar 6 2012 searchplugins
    -rw-r--r-- 1 root staff 825 Mar 6 2012 Throbber-small.gif
    -rw-r--r-- 1 root staff 6 Mar 6 2012 update.locale
    -rwxr-xr-x 1 root staff 71K Mar 6 2012 updater
    -rw-r--r-- 1 root staff 143 Mar 6 2012 updater.ini
    </pre>
    but it does not run:
    <pre>
    $ /usr/local/share/firefox-3.6.28/firefox -no-remote -ProfileManager &
    > [1] 8297
    > $ /usr/local/share/firefox-3.6.28/run-mozilla.sh: 143: exec: /usr/local/share/firefox-3.6.28/firefox-bin: not found
    </pre>
    But as noted above, /usr/local/share/firefox-3.6.28/firefox-bin clearly exists, and is in the same directory as /usr/local/share/firefox-3.6.28/run-mozilla.sh , and both have the same permissions. Am I missing something?
    If not: how to fix, or further debug, this problem?
    Your prompt assistance is appreciated, since I can't telework until I get this fixed :-(

    For the solution's full description, see this post to debian-user
    https://lists.debian.org/debian-user/2014/05/msg00243.html
    (in a quite illuminating thread starting here
    https://lists.debian.org/debian-user/2014/05/msg00126.html
    ) But the solution was mostly
    <pre>
    me@it ~ $ ldd /usr/local/share/firefox-3.6.28/firefox-bin
    not a dynamic executable
    # libc6:i386, dependencies, and recommended from `aptitude -s`
    me@it ~ $ sudo aptitude install libc6:i386 gcc-4.8-base:i386 libc6-i686:i386 libgcc1:i386
    The following NEW packages will be installed:
    gcc-4.8-base:i386 libc6:i386 libc6-i686:i386 libgcc1:i386
    0 packages upgraded, 4 newly installed, 0 to remove and 0 not upgraded.
    Setting up gcc-4.8-base:i386 (4.8.2-1) ...
    Setting up libc6:i386 (2.17-97) ...
    Setting up libgcc1:i386 (1:4.8.2-1) ...
    Setting up libc6-i686:i386 (2.17-97) ...
    Processing triggers for libc-bin ...
    me@it ~ $ ldd /usr/local/share/firefox-3.6.28/firefox-bin
    linux-gate.so.1 (0xf7775000)
    libpthread.so.0 => /lib/i386-linux-gnu/i686/cmov/libpthread.so.0 (0xf7740000)
    libxul.so => not found
    libmozjs.so => not found
    libxpcom.so => not found
    libplds4.so => not found
    libplc4.so => not found
    libnspr4.so => not found
    libdl.so.2 => /lib/i386-linux-gnu/i686/cmov/libdl.so.2 (0xf7739000)
    libgtk-x11-2.0.so.0 => not found
    libatk-1.0.so.0 => not found
    libgdk-x11-2.0.so.0 => not found
    libgdk_pixbuf-2.0.so.0 => not found
    libpangocairo-1.0.so.0 => not found
    libpango-1.0.so.0 => not found
    libcairo.so.2 => not found
    libgobject-2.0.so.0 => not found
    libgmodule-2.0.so.0 => not found
    libglib-2.0.so.0 => not found
    libX11.so.6 => not found
    libasound.so.2 => not found
    libm.so.6 => /lib/i386-linux-gnu/i686/cmov/libm.so.6 (0xf76f4000)
    libstdc++.so.6 => not found
    libgcc_s.so.1 => /lib/i386-linux-gnu/libgcc_s.so.1 (0xf76d7000)
    libc.so.6 => /lib/i386-linux-gnu/i686/cmov/libc.so.6 (0xf7527000)
    /lib/ld-linux.so.2 (0xf7776000)
    </pre>

  • [solved] error: gnome-doc-utils = 0.3.2 not found during configuring

    When configuring libdbusmenu after downloading the PKGBUILD from AUR, I get the following error:
    [tharriso@localhost libdbusmenu]$ makepkg
    ==> Making package: libdbusmenu 12.10.2-1 (Tue Feb 26 21:04:56 CST 2013)
    ==> Checking runtime dependencies...
    ==> Checking buildtime dependencies...
    ==> Retrieving Sources...
    -> Found libdbusmenu-12.10.2.tar.gz
    ==> Validating source files with md5sums...
    libdbusmenu-12.10.2.tar.gz ... Passed
    ==> Extracting Sources...
    -> Extracting libdbusmenu-12.10.2.tar.gz with bsdtar
    ==> Removing existing pkg/ directory...
    ==> Starting build()...
    checking for a BSD-compatible install... /usr/bin/install -c
    checking whether build environment is sane... yes
    checking for a thread-safe mkdir -p... /usr/bin/mkdir -p
    checking for gawk... gawk
    checking whether make sets $(MAKE)... yes
    checking whether to enable maintainer-specific portions of Makefiles... no
    checking whether NLS is requested... yes
    checking for style of include used by make... GNU
    checking for gcc... gcc
    checking whether the C compiler works... yes
    checking for C compiler default output file name... a.out
    checking for suffix of executables...
    checking whether we are cross compiling... no
    checking for suffix of object files... o
    checking whether we are using the GNU C compiler... yes
    checking whether gcc accepts -g... yes
    checking for gcc option to accept ISO C89... none needed
    checking dependency style of gcc... gcc3
    checking for intltool >= 0.35.0... 0.50.2 found
    checking for intltool-update... /usr/bin/intltool-update
    checking for intltool-merge... /usr/bin/intltool-merge
    checking for intltool-extract... /usr/bin/intltool-extract
    checking for xgettext... /usr/bin/xgettext
    checking for msgmerge... /usr/bin/msgmerge
    checking for msgfmt... /usr/bin/msgfmt
    checking for gmsgfmt... /usr/bin/msgfmt
    checking for perl... /usr/bin/perl
    checking for perl >= 5.8.1... 5.16.2
    checking for XML::Parser... ok
    checking for library containing strerror... none required
    checking for gcc... (cached) gcc
    checking whether we are using the GNU C compiler... (cached) yes
    checking whether gcc accepts -g... (cached) yes
    checking for gcc option to accept ISO C89... (cached) none needed
    checking dependency style of gcc... (cached) gcc3
    checking whether gcc and cc understand -c and -o together... yes
    checking how to run the C preprocessor... gcc -E
    checking for grep that handles long lines and -e... /usr/bin/grep
    checking for egrep... /usr/bin/grep -E
    checking for ANSI C header files... yes
    checking build system type... x86_64-unknown-linux-gnu
    checking host system type... x86_64-unknown-linux-gnu
    checking how to print strings... printf
    checking for a sed that does not truncate output... /usr/bin/sed
    checking for fgrep... /usr/bin/grep -F
    checking for ld used by gcc... /usr/bin/ld
    checking if the linker (/usr/bin/ld) is GNU ld... yes
    checking for BSD- or MS-compatible name lister (nm)... /usr/bin/nm -B
    checking the name lister (/usr/bin/nm -B) interface... BSD nm
    checking whether ln -s works... yes
    checking the maximum length of command line arguments... 1572864
    checking whether the shell understands some XSI constructs... yes
    checking whether the shell understands "+="... yes
    checking how to convert x86_64-unknown-linux-gnu file names to x86_64-unknown-linux-gnu format... func_convert_file_noop
    checking how to convert x86_64-unknown-linux-gnu file names to toolchain format... func_convert_file_noop
    checking for /usr/bin/ld option to reload object files... -r
    checking for objdump... objdump
    checking how to recognize dependent libraries... pass_all
    checking for dlltool... no
    checking how to associate runtime and link libraries... printf %s\n
    checking for ar... ar
    checking for archiver @FILE support... @
    checking for strip... strip
    checking for ranlib... ranlib
    checking command to parse /usr/bin/nm -B output from gcc object... ok
    checking for sysroot... no
    checking for mt... no
    checking if : is a manifest tool... no
    checking for sys/types.h... yes
    checking for sys/stat.h... yes
    checking for stdlib.h... yes
    checking for string.h... yes
    checking for memory.h... yes
    checking for strings.h... yes
    checking for inttypes.h... yes
    checking for stdint.h... yes
    checking for unistd.h... yes
    checking for dlfcn.h... yes
    checking for objdir... .libs
    checking if gcc supports -fno-rtti -fno-exceptions... no
    checking for gcc option to produce PIC... -fPIC -DPIC
    checking if gcc PIC flag -fPIC -DPIC works... yes
    checking if gcc static flag -static works... yes
    checking if gcc supports -c -o file.o... yes
    checking if gcc supports -c -o file.o... (cached) yes
    checking whether the gcc linker (/usr/bin/ld -m elf_x86_64) supports shared libraries... yes
    checking whether -lc should be explicitly linked in... no
    checking dynamic linker characteristics... GNU/Linux ld.so
    checking how to hardcode library paths into programs... immediate
    checking whether stripping libraries is possible... yes
    checking if libtool supports shared libraries... yes
    checking whether to build shared libraries... yes
    checking whether to build static libraries... no
    checking whether make supports nested variables... yes
    checking for glib-mkenums... /usr/bin/glib-mkenums
    checking for pkg-config... /home/tharriso/ApeInstalled/External/pkg-config/0.22/bin/pkg-config
    checking pkg-config is at least version 0.9.0... yes
    checking for gtkdoc-check... /usr/bin/gtkdoc-check
    checking for gtkdoc-rebase... /usr/bin/gtkdoc-rebase
    checking for gtkdoc-mkpdf... /usr/bin/gtkdoc-mkpdf
    checking whether to build gtk-doc documentation... no
    checking gnome-doc-utils >= 0.3.2... no
    configure: error: gnome-doc-utils >= 0.3.2 not found
    ==> ERROR: A failure occurred in build().
    Aborting...
    Some things I've tried -
    [tharriso@localhost libdbusmenu]$ pkg-config --modversion gnome-doc-utils
    Package gnome-doc-utils was not found in the pkg-config search path.
    Perhaps you should add the directory containing `gnome-doc-utils.pc'
    to the PKG_CONFIG_PATH environment variable
    No package 'gnome-doc-utils' found
    [tharriso@localhost libdbusmenu]$ pacman -Q gnome-doc-utils
    gnome-doc-utils 0.20.10-1
    Found a few results on Google where people mention the same error with a different package, but haven't found any solutions.
    Last edited by harro112 (2013-02-26 12:37:33)

    checking for pkg-config... /home/tharriso/ApeInstalled/External/pkg-config/0.22/bin/pkg-config
    current pkg-config version in arch is 0.28-1 , and should be found as /usr/bin/pkg-config .

  • Javax packages not found for J2SDK 1.5.0

    Hi,
    I am very new to Java SDK. I just installed J2SDK 1.5.0 beta 2 and installed it on my RedHat 9.0 box with root permission at /usr/local/(java-home)/
    I can compile simple applications which do not import extension packages. However, when I try to compile an application importing javax.swing.* , I get the below error message:
    Craps.java:9: Can't find default package `javax.swing'. Check the CLASSPATH environment variable and the access to the archives
    Craps.java:11: Superclass `JApplet' of class `Craps' not found.
    public class Craps extends JApplet implements ActionListener {
    The code of this application is correct, coz I can compile and execute it in Windows.
    Can anybody help me with this problem?
    Thanks!

    Hi Joni,
    Thank you for the reply!
    I've solved the problem with your inspiration of the ClASSPATH. This is for the reference of those who may encounter the same problem as me.
    I installed Redhat 9.0 with default settings and those bundled packages (could be normal to many Linux newbies like me :) There is a default java compiler installed, I guess, and it's bundled with gcc. So when I tried to compile my .java files, the javac comand from j2sdk was not involked. Instead, it's the default-installed java compiler that correspended to my command. I guess this is why no matter what I changed in the .bash_profile in my home directory, the j2sdk command javac had not executed.
    After I uninstalled this one, and add j2sdk/bin into my CLASSPATH, everything works fine now.
    Btw, I found out this problem by simply typing "javac" in the terminal and read the help suggestions that followed.

Maybe you are looking for

  • Spry Autosuggest

    Hi, I am trying to use spry autosuggest. I have written the below code but I am not sure how to use the "loadfromserver". The adobe documentation says to use {loadFromServer: true, urlParam: "prd"}. What should be my urlParam? Will var dstest remain

  • No live video on bbc iplayer

    for some reason i can't get live video anymore on the bbc iplayer every thing else is fine

  • Why my N8 is not compatible?

    When I was installing symbian belle through OVI Suite in my N8 after back up a error message came up that my phone is not compatible with available software. Why is it so????

  • Exceptions in mapping

    Hi! I have one question... How & where can I INSERT (for log) rows which are EXCEPTIONS in "INSERT MAPPING"? Thanks

  • Informatica Date Format(yyyy-MM-dd'T'HH:mm:ss.SSS)

    What's your target? relational or xml? If relational, then check the column datatype. If it's of date type then, the column won't accept such formats (with T). To adopt it, the field must be of varchar type. If your relationa column is of type varcha