[SOLVED] Makepkg option FORTIFY_SOURCE causes build fail

I have a pkg in the AUR, dcc, which fails to build with the current GCC toolchain (4.8.2.8). It does, however, build on a system with GCC 4.6.3. The problem has been identified as being caused by the FORTIFY_SOURCE=2 option in /etc/makepkg.conf.
CPPFLAGS="-D_FORTIFY_SOURCE=2"
I can fix the package build by unsetting CPPFLAGS in the PKGBUILD's build() function.
build() {
cd $srcdir/$pkgname-$pkgver
unset CPPFLAGS
./configure --with-installroot=${pkgdir} \
--mandir=/usr/share/man --homedir=/opt/dcc \
--bindir=/usr/bin --libexecdir=/usr/lib/dcc
make
Before I upload an amended package, I'd like to clarify whether fixing it in this way is the right thing to do.
Or, is this a problem with makepkg (I've seen a few similar mentions, like this one). Or is it the fault of something else... gcc, perhaps ?
I'd appreciate advice on how to approach this one.
(I also asked the DCC people about this via their mailing list and the response I got is below.)
The package build tool on Archlinux uses the CPP flag:
CPPFLAGS="-D_FORTIFY_SOURCE=2"
by default. Commenting this line out
in /etc/makepkg.conf results in a successful build using the makepkg
tool. (For the record, FORTIFY_SOURCE=1 fails as well).
From what I can tell, during configure the conflict in sa_family_t
definitions causes the test to fail when using the FORTIFY_SOURCE flag,
making configure believe that the system has no definition of
sa_family_t (or any other INET related definitions).
Last edited by starfry (2014-06-15 08:59:58)

I read that one, there's a couple of suggestions there and it's where I got the idea described above from. Other solutions that could be used include
CFLAGS="$CFLAGS $CPPFLAGS"
unset CPPFLAGS
and
CPPFLAGS="$CPPFLAGS -O2"
Not sure which is best though...

Similar Messages

  • [SOLVED] Mysterious gcc flag -02 causes build fail

    Hi,
    I've run into a problem with 3 different AUR packages relating to a strange gcc flag, -02 (that's a zero), that appears for no apparent reason. The packages are sxiv-git, isync-git, and hhpc-git. I've tried all three the manual way, and with packer. Here's what the error messages look like using packer (they are essentially the same the manual way):
    sxiv-git
    ==> Starting build()...
    cp config.def.h config.h
    gcc -march=native -02 -pipe -fstack-protector --param=ssp-buffer-size=4 -D_FORTIFY_SOURCE=2 -D_FORTIFY_SOURCE=2 -std=c99 -Wall -pedantic -O2 -I/usr/include -DHAVE_GIFLIB -DVERSION=\"git-20140218\" -c -o commands.o commands.c
    gcc: error: unrecognized command line option ‘-02’
    Makefile:19: recipe for target 'commands.o' failed
    make: *** [commands.o] Error 1
    ==> ERROR: A failure occurred in build().
    Aborting...
    The build failed.
    hhpc-git
    ==> Starting build()...
    cc -c hhpc.c -march=native -02 -pipe -fstack-protector --param=ssp-buffer-size=4 -D_FORTIFY_SOURCE=2 -s -O2 -DNDEBUG
    cc: error: unrecognized command line option ‘-02’
    Makefile:79: recipe for target 'hhpc.o' failed
    make: *** [hhpc.o] Error 1
    ==> ERROR: A failure occurred in build().
    Aborting...
    The build failed.
    isync-git; here I was referred to config.log. The following is from there.
    configure:3111: $? = 0
    configure:3100: gcc -v >&5
    Using built-in specs.
    COLLECT_GCC=gcc
    COLLECT_LTO_WRAPPER=/usr/lib/gcc/x86_64-unknown-linux-gnu/4.8.2/lto-wrapper
    Target: x86_64-unknown-linux-gnu
    Configured with: /build/gcc/src/gcc-4.8-20140206/configure --prefix=/usr --libdir=/usr/lib --libexecdir=/usr/lib --mandir=/usr/share/man --infodir$
    Thread model: posix
    gcc version 4.8.2 20140206 (prerelease) (GCC)
    configure:3111: $? = 0
    configure:3100: gcc -V >&5
    gcc: error: unrecognized command line option '-V'
    gcc: fatal error: no input files
    compilation terminated.
    configure:3111: $? = 1
    configure:3100: gcc -qversion >&5
    gcc: error: unrecognized command line option '-qversion'
    gcc: fatal error: no input files
    compilation terminated.
    configure:3111: $? = 1
    configure:3131: checking whether the C compiler works
    configure:3153: gcc -march=native -02 -pipe -fstack-protector --param=ssp-buffer-size=4 -D_FORTIFY_SOURCE=2 -D_FORTIFY_SOURCE=2 -Wl,-O1,--sort-com$
    gcc: error: unrecognized command line option '-02'
    configure:3157: $? = 1
    configure:3195: result: no
    configure: failed program was:
    | /* confdefs.h */
    | #define PACKAGE_NAME "isync"
    | #define PACKAGE_TARNAME "isync"
    | #define PACKAGE_VERSION "1.1.1"
    | #define PACKAGE_STRING "isync 1.1.1"
    | #define PACKAGE_BUGREPORT ""
    | #define PACKAGE_URL ""
    | #define PACKAGE "isync"
    | #define VERSION "1.1.1"
    | /* end confdefs.h. */
    |
    | int
    | main ()
    | {
    |
    | ;
    | return 0;
    | }
    configure:3200: error: in `/tmp/packerbuild-1000/isync-git/isync-git/src/isync':
    configure:3202: error: C compiler cannot create executables
    See `config.log' for more details
    ## Cache variables. ##
    ac_cv_env_CC_set=
    ac_cv_env_CC_value=
    ac_cv_env_CFLAGS_set=set
    ac_cv_env_CFLAGS_value='-march=native -02 -pipe -fstack-protector --param=ssp-buffer-size=4 -D_FORTIFY_SOURCE=2'
    ac_cv_env_CPPFLAGS_set=set
    And voila---here is the flag. I checked sxiv's and hhpc's makefiles, and neither show this flag. Since there appear to be environmental variables, I guess these are set elsewhere on my system. Yet I've installed other packages successfully; not sure if any of these required gcc. Anyone have an idea what's going on? Thanks in advance!
    Last edited by monodromy (2014-02-20 07:13:22)

    Nothing for the first grep, but jackpot for the second:
    CFLAGS="-march=native -02 -pipe -fstack-protector --param=ssp-buffer-size=4 -D_FORTIFY_SOURCE=2"
    Should I comment out the whole thing? Just delete the -02? Or change the 0 to O?

  • [SOLVED] Makepkg was unable to build lib32-portaudio.

    Okay so i dusted off my old PS2 the other day and decided i wanted to play some old games for nostalgic sake when i came to realize it is still broken. So i looked for a decent emulator and found PCSX2. Now, i had some missing dependencies that needed to be installed and i worked on it for a few hours and got every dependency to install except lib32-portaudio. And don't get me wrong, Iv'e looked both at the PCSX2 website and the Arch wiki and forums and iv'e googled and looked at Ubuntu forums and whatnot. I looked everywhere i could think of, and i can't find anything at all on this issue so i'm hoping someone will be able to help me here. I guess the relevant part of the error message that i get is this:
    /usr/bin/ld: skipping incompatible /usr/lib/gcc/x86_64-unknown-linux-gnu/4.5.2/../../../libjack.so when searching for -ljack
    /usr/bin/ld: skipping incompatible /usr/lib/libjack.so when searching for -ljack
    /usr/bin/ld: cannot find -ljack
    collect2: ld returned 1 exit status
    make: *** [lib/libportaudio.la] Error 1
        Aborting...
    ==> ERROR: Makepkg was unable to build lib32-portaudio.
    And Iv'e re-installed portaudio at least 3 times since i figured the error had something to do with it. Through pacman, downloading the package from the dev website, and even trying the Ubuntu repos and it seems to be successfully installed each time. I'm fairly new to Linux but i'm a very persistent person and i wouldn't give up without at least a days worth of pulling out my hair in frustration, and through trial and error, so as far as my knowledge reaches, iv'e tried my best to solve it on my own. Oh, and i'm building/installing from the AUR if that would make a difference. Appreciate any help.
    edit
    Been a long time, with no help, but i finally gave it another go. This time successfull! I just recently re-installed Arch, this time running openbox, and without any issues whatsoever, it installed on the first try. I think i had a shitload of conflicting and missing dependencies on my last install and that's what caused it.. I don't know if this will help anyone if you ever run in to this problem, there isn't much to add, Only thing is that I'm running a clean install and i use the nvidia driver and nvidia-utils, and all the ALSA sound drivers and utilities. Oh and i'm running openbox as a stand-alone WM. That's all the relevant info i think. Now i'm looking forward to configuration hell for the games i'm gonna run, haha!
    Last edited by waspy (2011-05-26 18:42:23)

    ChoK wrote:It seems like you need lib32-jack and the maintainer of lib32-portaudio forgot to add it to makedepends/depends
    Iv'e got lib32-jack already installed. And by reading the comments of the AUR link to the package ( lib32-portaudio ) they supposedly fixed the PKGBUILD too.

  • [SOLVED]Amarok 2.0.2 Build Fails..Help

    Hello all
    I am trying to compile amarok 2.0.2 but it fails at 8%. I tried to install it from aur and manually but the same error:
    [  4%] Building CXX object src/scriptengine/generator/generator/CMakeFiles/generator.dir/moc_shellimplgenerator.o                                                                       
    [  4%] Building CXX object src/scriptengine/generator/generator/CMakeFiles/generator.dir/moc_shellheadergenerator.o                                                                     
    [  4%] Building CXX object src/scriptengine/generator/generator/CMakeFiles/generator.dir/moc_setupgenerator.o                                                                           
    [  4%] Building CXX object src/scriptengine/generator/generator/CMakeFiles/generator.dir/qrc_generator.o                                                                               
    Linking CXX executable generator                                                           
    Please wait while source files are being generated...                                       
    ** WARNING unknown directive '#warning' at /usr/include/QtCore/qglobal.h:313               
    ** WARNING unknown directive '#warning' at /usr/include/QtCore/qglobal.h:313               
    ** WARNING unknown directive '#warning' at /usr/include/QtCore/qglobal.h:313               
    ** WARNING unknown directive '#warning' at /usr/include/QtCore/qglobal.h:313               
    ** WARNING unknown directive '#warning' at /usr/include/QtCore/qglobal.h:313               
    ** WARNING unknown directive '#warning' at /usr/include/QtCore/qglobal.h:313               
    ** WARNING unknown directive '#warning' at /usr/include/QtCore/qglobal.h:313               
    ** WARNING unknown directive '#warning' at /usr/include/QtCore/qglobal.h:313               
    ** WARNING unknown directive '#warning' at /usr/include/QtCore/qglobal.h:313               
    ** WARNING unknown directive '#warning' at /usr/include/QtCore/qglobal.h:313               
    ** WARNING unknown directive '#warning' at /usr/include/QtCore/qglobal.h:313               
    ** WARNING unknown directive '#warning' at /usr/include/QtCore/qglobal.h:313               
    ** WARNING unknown directive '#warning' at /usr/include/QtCore/qglobal.h:313               
    ** WARNING unknown directive '#warning' at /usr/include/QtCore/qglobal.h:313               
    ** WARNING unknown directive '#warning' at /usr/include/QtCore/qglobal.h:313               
    ** WARNING unknown directive '#warning' at /usr/include/QtCore/qglobal.h:313               
    ** WARNING unknown directive '#warning' at /usr/include/QtCore/qglobal.h:313               
    ** WARNING unknown directive '#warning' at /usr/include/QtCore/qglobal.h:313               
    ** WARNING unknown directive '#warning' at /usr/include/QtCore/qglobal.h:313               
    ** WARNING unknown directive '#warning' at /usr/include/QtCore/qglobal.h:313               
    ** WARNING unknown directive '#warning' at /usr/include/QtCore/qglobal.h:313               
    ** WARNING unknown directive '#warning' at /usr/include/QtCore/qglobal.h:313               
    ** WARNING unknown directive '#warning' at /usr/include/QtCore/qglobal.h:313               
    ** WARNING unknown directive '#warning' at /usr/include/QtCore/qglobal.h:313               
    ** WARNING unknown directive '#warning' at /usr/include/QtCore/qglobal.h:313               
    ** WARNING unknown directive '#warning' at /usr/include/QtCore/qglobal.h:313               
    ** WARNING unknown directive '#warning' at /usr/include/QtCore/qglobal.h:313               
    ** WARNING unknown directive '#warning' at /usr/include/QtCore/qglobal.h:313               
    ** WARNING unknown directive '#warning' at /usr/include/QtCore/qglobal.h:313               
    ** WARNING unknown directive '#warning' at /usr/include/QtCore/qglobal.h:313               
    ** WARNING unknown directive '#warning' at /usr/include/QtCore/qglobal.h:313               
    ** WARNING unknown directive '#warning' at /usr/include/QtCore/qglobal.h:313               
    ** WARNING unknown directive '#warning' at /usr/include/QtCore/qglobal.h:313               
    ** WARNING unknown directive '#warning' at /usr/include/QtCore/qglobal.h:313               
    ** WARNING unknown directive '#warning' at /usr/include/QtCore/qglobal.h:313               
    ** WARNING unknown directive '#warning' at /usr/include/QtCore/qglobal.h:313               
    ** WARNING unknown directive '#warning' at /usr/include/QtCore/qglobal.h:313               
    ** WARNING unknown directive '#warning' at /usr/include/QtCore/qglobal.h:313               
    ** WARNING unknown directive '#warning' at /usr/include/QtCore/qglobal.h:313               
    ** WARNING unknown directive '#warning' at /usr/include/QtCore/qglobal.h:313               
    ** WARNING unknown directive '#warning' at /usr/include/QtCore/qglobal.h:313               
    ** WARNING unknown directive '#warning' at /usr/include/QtCore/qglobal.h:313               
    ** WARNING unknown directive '#warning' at /usr/include/QtCore/qglobal.h:313               
    ** WARNING unknown directive '#warning' at /usr/include/QtCore/qglobal.h:313               
    ** WARNING unknown directive '#warning' at /usr/include/QtCore/qglobal.h:313               
    ** WARNING unknown directive '#warning' at /usr/include/QtCore/qglobal.h:313               
    ** WARNING unknown directive '#warning' at /usr/include/QtCore/qglobal.h:313               
    ** WARNING unknown directive '#warning' at /usr/include/QtCore/qglobal.h:313               
    ** WARNING unknown directive '#warning' at /usr/include/QtCore/qglobal.h:313               
    ** WARNING unknown directive '#warning' at /usr/include/QtCore/qglobal.h:313               
    ** WARNING unknown directive '#warning' at /usr/include/QtCore/qglobal.h:313               
    ** WARNING unknown directive '#warning' at /usr/include/QtCore/qglobal.h:313               
    ** WARNING unknown directive '#warning' at /usr/include/QtCore/qglobal.h:313               
    ** WARNING unknown directive '#warning' at /usr/include/QtCore/qglobal.h:313               
    ** WARNING unknown directive '#warning' at /usr/include/QtCore/qglobal.h:313               
    ** WARNING unknown directive '#warning' at /usr/include/QtCore/qglobal.h:313               
    ** WARNING unknown directive '#warning' at /usr/include/QtCore/qglobal.h:313               
    WARNING(MetaJavaBuilder) :: enum 'QGradient::InterpolationMode' does not have a type entry or is not an enum                                                                           
    WARNING(MetaJavaBuilder) :: enum '__codecvt_result' does not have a type entry or is not an enum                                                                                       
    WARNING(MetaJavaBuilder) :: enum 'enum_2' does not have a type entry or is not an enum     
    Classes in typesystem: 506                                                                 
    Generated:                                                                                 
      - classes...: 487 (487)                                                                   
      - header....: 329 (329)                                                                   
      - impl......: 329 (329)                                                                   
      - modules...: 9 (9)                                                                       
      - pri.......: 9 (9)                                                                       
    Done, 3 warnings (844 known issues)
    [  4%] Built target generator     
    Scanning dependencies of target qtscript_core
    [  4%] Building CXX object src/scriptengine/generator/generator/CMakeFiles/qtscript_core.dir/generated_cpp/com_trolltech_qt_core/main.o                                                 
    [  4%] Building CXX object src/scriptengine/generator/generator/CMakeFiles/qtscript_core.dir/generated_cpp/com_trolltech_qt_core/qtscript_QBasicTimer.o                                 
    [  4%] Building CXX object src/scriptengine/generator/generator/CMakeFiles/qtscript_core.dir/generated_cpp/com_trolltech_qt_core/qtscript_QBitArray.o                                   
    [  4%] Building CXX object src/scriptengine/generator/generator/CMakeFiles/qtscript_core.dir/generated_cpp/com_trolltech_qt_core/qtscript_QBuffer.o                                     
    [  4%] Building CXX object src/scriptengine/generator/generator/CMakeFiles/qtscript_core.dir/generated_cpp/com_trolltech_qt_core/qtscript_QByteArray.o                                 
    [  4%] Building CXX object src/scriptengine/generator/generator/CMakeFiles/qtscript_core.dir/generated_cpp/com_trolltech_qt_core/qtscript_QByteArrayMatcher.o                           
    [  4%] Building CXX object src/scriptengine/generator/generator/CMakeFiles/qtscript_core.dir/generated_cpp/com_trolltech_qt_core/qtscript_QChildEvent.o                                 
    [  4%] Building CXX object src/scriptengine/generator/generator/CMakeFiles/qtscript_core.dir/generated_cpp/com_trolltech_qt_core/qtscript_QCoreApplication.o                           
    [  4%] Building CXX object src/scriptengine/generator/generator/CMakeFiles/qtscript_core.dir/generated_cpp/com_trolltech_qt_core/qtscript_QCryptographicHash.o                         
    [  4%] Building CXX object src/scriptengine/generator/generator/CMakeFiles/qtscript_core.dir/generated_cpp/com_trolltech_qt_core/qtscript_QDataStream.o                                 
    [  4%] Building CXX object src/scriptengine/generator/generator/CMakeFiles/qtscript_core.dir/generated_cpp/com_trolltech_qt_core/qtscript_QDir.o                                       
    [  5%] Building CXX object src/scriptengine/generator/generator/CMakeFiles/qtscript_core.dir/generated_cpp/com_trolltech_qt_core/qtscript_QDirIterator.o                               
    [  5%] Building CXX object src/scriptengine/generator/generator/CMakeFiles/qtscript_core.dir/generated_cpp/com_trolltech_qt_core/qtscript_QDynamicPropertyChangeEvent.o                 
    [  5%] Building CXX object src/scriptengine/generator/generator/CMakeFiles/qtscript_core.dir/generated_cpp/com_trolltech_qt_core/qtscript_QEvent.o                                     
    [  5%] Building CXX object src/scriptengine/generator/generator/CMakeFiles/qtscript_core.dir/generated_cpp/com_trolltech_qt_core/qtscript_QEventLoop.o                                 
    [  5%] Building CXX object src/scriptengine/generator/generator/CMakeFiles/qtscript_core.dir/generated_cpp/com_trolltech_qt_core/qtscript_QFile.o                                       
    [  5%] Building CXX object src/scriptengine/generator/generator/CMakeFiles/qtscript_core.dir/generated_cpp/com_trolltech_qt_core/qtscript_QFileInfo.o                                   
    [  5%] Building CXX object src/scriptengine/generator/generator/CMakeFiles/qtscript_core.dir/generated_cpp/com_trolltech_qt_core/qtscript_QFileSystemWatcher.o                         
    [  5%] Building CXX object src/scriptengine/generator/generator/CMakeFiles/qtscript_core.dir/generated_cpp/com_trolltech_qt_core/qtscript_QFuture.o                                     
    [  5%] Building CXX object src/scriptengine/generator/generator/CMakeFiles/qtscript_core.dir/generated_cpp/com_trolltech_qt_core/qtscript_QFutureIterator.o                             
    [  5%] Building CXX object src/scriptengine/generator/generator/CMakeFiles/qtscript_core.dir/generated_cpp/com_trolltech_qt_core/qtscript_QFutureSynchronizer.o                         
    /tmp/yaourt-tmp-root/aur-amarok2/amarok2/src/amarok-2.0.2/src/scriptengine/generator/generator/generated_cpp/com_trolltech_qt_core/qtscript_QFutureSynchronizer.cpp:45: warning: 'QScriptValue qtscript_QFutureSynchronizer_prototype_call(QScriptContext*, QScriptEngine*)' defined but not used                                                                               
    [  5%] Building CXX object src/scriptengine/generator/generator/CMakeFiles/qtscript_core.dir/generated_cpp/com_trolltech_qt_core/qtscript_QFutureSynchronizerVoid.o                     
    /tmp/yaourt-tmp-root/aur-amarok2/amarok2/src/amarok-2.0.2/src/scriptengine/generator/generator/generated_cpp/com_trolltech_qt_core/qtscript_QFutureSynchronizerVoid.cpp:45: warning: 'QScriptValue qtscript_QFutureSynchronizerVoid_prototype_call(QScriptContext*, QScriptEngine*)' defined but not used                                                                       
    [  5%] Building CXX object src/scriptengine/generator/generator/CMakeFiles/qtscript_core.dir/generated_cpp/com_trolltech_qt_core/qtscript_QFutureVoid.o                                 
    [  5%] Building CXX object src/scriptengine/generator/generator/CMakeFiles/qtscript_core.dir/generated_cpp/com_trolltech_qt_core/qtscript_QFutureWatcher.o                             
    [  5%] Building CXX object src/scriptengine/generator/generator/CMakeFiles/qtscript_core.dir/generated_cpp/com_trolltech_qt_core/qtscript_QFutureWatcherVoid.o                         
    [  5%] Building CXX object src/scriptengine/generator/generator/CMakeFiles/qtscript_core.dir/generated_cpp/com_trolltech_qt_core/qtscript_QIODevice.o                                   
    [  6%] Building CXX object src/scriptengine/generator/generator/CMakeFiles/qtscript_core.dir/generated_cpp/com_trolltech_qt_core/qtscript_QLibraryInfo.o                               
    /tmp/yaourt-tmp-root/aur-amarok2/amarok2/src/amarok-2.0.2/src/scriptengine/generator/generator/generated_cpp/com_trolltech_qt_core/qtscript_QLibraryInfo.cpp:150: warning: 'QScriptValue qtscript_QLibraryInfo_prototype_call(QScriptContext*, QScriptEngine*)' defined but not used
    [  6%] Building CXX object src/scriptengine/generator/generator/CMakeFiles/qtscript_core.dir/generated_cpp/com_trolltech_qt_core/qtscript_QLocale.o                                     
    [  6%] Building CXX object src/scriptengine/generator/generator/CMakeFiles/qtscript_core.dir/generated_cpp/com_trolltech_qt_core/qtscript_QMutex.o                                     
    [  6%] Building CXX object src/scriptengine/generator/generator/CMakeFiles/qtscript_core.dir/generated_cpp/com_trolltech_qt_core/qtscript_QObject.o                                     
    [  6%] Building CXX object src/scriptengine/generator/generator/CMakeFiles/qtscript_core.dir/generated_cpp/com_trolltech_qt_core/qtscript_QPoint.o                                     
    [  6%] Building CXX object src/scriptengine/generator/generator/CMakeFiles/qtscript_core.dir/generated_cpp/com_trolltech_qt_core/qtscript_QPointF.o                                     
    [  6%] Building CXX object src/scriptengine/generator/generator/CMakeFiles/qtscript_core.dir/generated_cpp/com_trolltech_qt_core/qtscript_QProcess.o                                   
    [  6%] Building CXX object src/scriptengine/generator/generator/CMakeFiles/qtscript_core.dir/generated_cpp/com_trolltech_qt_core/qtscript_QRect.o                                       
    [  6%] Building CXX object src/scriptengine/generator/generator/CMakeFiles/qtscript_core.dir/generated_cpp/com_trolltech_qt_core/qtscript_QRectF.o                                     
    [  6%] Building CXX object src/scriptengine/generator/generator/CMakeFiles/qtscript_core.dir/generated_cpp/com_trolltech_qt_core/qtscript_QRunnable.o                                   
    [  6%] Building CXX object src/scriptengine/generator/generator/CMakeFiles/qtscript_core.dir/generated_cpp/com_trolltech_qt_core/qtscript_QSemaphore.o                                 
    [  6%] Building CXX object src/scriptengine/generator/generator/CMakeFiles/qtscript_core.dir/generated_cpp/com_trolltech_qt_core/qtscript_QSettings.o                                   
    [  6%] Building CXX object src/scriptengine/generator/generator/CMakeFiles/qtscript_core.dir/generated_cpp/com_trolltech_qt_core/qtscript_QSignalMapper.o                               
    [  6%] Building CXX object src/scriptengine/generator/generator/CMakeFiles/qtscript_core.dir/generated_cpp/com_trolltech_qt_core/qtscript_QSize.o                                       
    [  6%] Building CXX object src/scriptengine/generator/generator/CMakeFiles/qtscript_core.dir/generated_cpp/com_trolltech_qt_core/qtscript_QSizeF.o                                     
    [  7%] Building CXX object src/scriptengine/generator/generator/CMakeFiles/qtscript_core.dir/generated_cpp/com_trolltech_qt_core/qtscript_QSocketNotifier.o                             
    [  7%] Building CXX object src/scriptengine/generator/generator/CMakeFiles/qtscript_core.dir/generated_cpp/com_trolltech_qt_core/qtscript_QStringMatcher.o                             
    [  7%] Building CXX object src/scriptengine/generator/generator/CMakeFiles/qtscript_core.dir/generated_cpp/com_trolltech_qt_core/qtscript_QSystemSemaphore.o                           
    [  7%] Building CXX object src/scriptengine/generator/generator/CMakeFiles/qtscript_core.dir/generated_cpp/com_trolltech_qt_core/qtscript_QTemporaryFile.o                             
    [  7%] Building CXX object src/scriptengine/generator/generator/CMakeFiles/qtscript_core.dir/generated_cpp/com_trolltech_qt_core/qtscript_QTextBoundaryFinder.o                         
    [  7%] Building CXX object src/scriptengine/generator/generator/CMakeFiles/qtscript_core.dir/generated_cpp/com_trolltech_qt_core/qtscript_QTextCodec.o                                 
    /tmp/yaourt-tmp-root/aur-amarok2/amarok2/src/amarok-2.0.2/src/scriptengine/generator/generator/generated_cpp/com_trolltech_qt_core/qtscript_QTextCodec.cpp: In function 'QScriptValue qtscript_construct_QTextCodec_ConversionFlag(QScriptContext*, QScriptEngine*)':               
    /tmp/yaourt-tmp-root/aur-amarok2/amarok2/src/amarok-2.0.2/src/scriptengine/generator/generator/generated_cpp/com_trolltech_qt_core/qtscript_QTextCodec.cpp:161: warning: comparison between signed and unsigned integer expressions                                                 
    /tmp/yaourt-tmp-root/aur-amarok2/amarok2/src/amarok-2.0.2/src/scriptengine/generator/generator/generated_cpp/com_trolltech_qt_core/qtscript_QTextCodec.cpp: In function 'QScriptValue qtscript_QTextCodec_ConversionFlags_toString(QScriptContext*, QScriptEngine*)':               
    /tmp/yaourt-tmp-root/aur-amarok2/amarok2/src/amarok-2.0.2/src/scriptengine/generator/generator/generated_cpp/com_trolltech_qt_core/qtscript_QTextCodec.cpp:243: warning: comparison between signed and unsigned integer expressions                                                 
    [  7%] Building CXX object src/scriptengine/generator/generator/CMakeFiles/qtscript_core.dir/generated_cpp/com_trolltech_qt_core/qtscript_QTextDecoder.o                               
    [  7%] Building CXX object src/scriptengine/generator/generator/CMakeFiles/qtscript_core.dir/generated_cpp/com_trolltech_qt_core/qtscript_QTextEncoder.o                               
    [  7%] Building CXX object src/scriptengine/generator/generator/CMakeFiles/qtscript_core.dir/generated_cpp/com_trolltech_qt_core/qtscript_QTextStream.o                                 
    [  7%] Building CXX object src/scriptengine/generator/generator/CMakeFiles/qtscript_core.dir/generated_cpp/com_trolltech_qt_core/qtscript_QThreadPool.o                                 
    [  7%] Building CXX object src/scriptengine/generator/generator/CMakeFiles/qtscript_core.dir/generated_cpp/com_trolltech_qt_core/qtscript_QTime.o                                       
    [  7%] Building CXX object src/scriptengine/generator/generator/CMakeFiles/qtscript_core.dir/generated_cpp/com_trolltech_qt_core/qtscript_QTimeLine.o                                   
    [  7%] Building CXX object src/scriptengine/generator/generator/CMakeFiles/qtscript_core.dir/generated_cpp/com_trolltech_qt_core/qtscript_QTimer.o                                     
    [  7%] Building CXX object src/scriptengine/generator/generator/CMakeFiles/qtscript_core.dir/generated_cpp/com_trolltech_qt_core/qtscript_QTimerEvent.o                                 
    [  8%] Building CXX object src/scriptengine/generator/generator/CMakeFiles/qtscript_core.dir/generated_cpp/com_trolltech_qt_core/qtscript_QTranslator.o                                 
    [  8%] Building CXX object src/scriptengine/generator/generator/CMakeFiles/qtscript_core.dir/generated_cpp/com_trolltech_qt_core/qtscript_QUrl.o                                       
    [  8%] Building CXX object src/scriptengine/generator/generator/CMakeFiles/qtscript_core.dir/generated_cpp/com_trolltech_qt_core/qtscript_QUuid.o                                       
    [  8%] Building CXX object src/scriptengine/generator/generator/CMakeFiles/qtscript_core.dir/generated_cpp/com_trolltech_qt_core/qtscript_QWaitCondition.o                             
    [  8%] Building CXX object src/scriptengine/generator/generator/CMakeFiles/qtscript_core.dir/generated_cpp/com_trolltech_qt_core/qtscript_QXmlStreamAttribute.o                         
    [  8%] Building CXX object src/scriptengine/generator/generator/CMakeFiles/qtscript_core.dir/generated_cpp/com_trolltech_qt_core/qtscript_QXmlStreamAttributes.o                       
    [  8%] Building CXX object src/scriptengine/generator/generator/CMakeFiles/qtscript_core.dir/generated_cpp/com_trolltech_qt_core/qtscript_QXmlStreamEntityDeclaration.o                 
    [  8%] Building CXX object src/scriptengine/generator/generator/CMakeFiles/qtscript_core.dir/generated_cpp/com_trolltech_qt_core/qtscript_QXmlStreamEntityResolver.o                   
    [  8%] Building CXX object src/scriptengine/generator/generator/CMakeFiles/qtscript_core.dir/generated_cpp/com_trolltech_qt_core/qtscript_QXmlStreamNamespaceDeclaration.o             
    [  8%] Building CXX object src/scriptengine/generator/generator/CMakeFiles/qtscript_core.dir/generated_cpp/com_trolltech_qt_core/qtscript_QXmlStreamNotationDeclaration.o               
    [  8%] Building CXX object src/scriptengine/generator/generator/CMakeFiles/qtscript_core.dir/generated_cpp/com_trolltech_qt_core/qtscript_QXmlStreamReader.o                           
    [  8%] Building CXX object src/scriptengine/generator/generator/CMakeFiles/qtscript_core.dir/generated_cpp/com_trolltech_qt_core/qtscript_QXmlStreamWriter.o                           
    [  8%] Building CXX object src/scriptengine/generator/generator/CMakeFiles/qtscript_core.dir/generated_cpp/com_trolltech_qt_core/qtscript_Qt.o                                         
    /tmp/yaourt-tmp-root/aur-amarok2/amarok2/src/amarok-2.0.2/src/scriptengine/generator/generator/generated_cpp/com_trolltech_qt_core/qtscript_Qt.cpp: In function 'QScriptValue qtscript_construct_Qt_KeyboardModifier(QScriptContext*, QScriptEngine*)':                             
    /tmp/yaourt-tmp-root/aur-amarok2/amarok2/src/amarok-2.0.2/src/scriptengine/generator/generator/generated_cpp/com_trolltech_qt_core/qtscript_Qt.cpp:2113: warning: comparison between signed and unsigned integer expressions                                                       
    /tmp/yaourt-tmp-root/aur-amarok2/amarok2/src/amarok-2.0.2/src/scriptengine/generator/generator/generated_cpp/com_trolltech_qt_core/qtscript_Qt.cpp: In function 'QScriptValue qtscript_Qt_KeyboardModifiers_toString(QScriptContext*, QScriptEngine*)':                             
    /tmp/yaourt-tmp-root/aur-amarok2/amarok2/src/amarok-2.0.2/src/scriptengine/generator/generator/generated_cpp/com_trolltech_qt_core/qtscript_Qt.cpp:2195: warning: comparison between signed and unsigned integer expressions
    /tmp/yaourt-tmp-root/aur-amarok2/amarok2/src/amarok-2.0.2/src/scriptengine/generator/generator/generated_cpp/com_trolltech_qt_core/qtscript_Qt.cpp: In function 'QScriptValue qtscript_construct_Qt_Modifier(QScriptContext*, QScriptEngine*)':
    /tmp/yaourt-tmp-root/aur-amarok2/amarok2/src/amarok-2.0.2/src/scriptengine/generator/generator/generated_cpp/com_trolltech_qt_core/qtscript_Qt.cpp:5854: warning: comparison between signed and unsigned integer expressions
    [  8%] Building CXX object src/scriptengine/generator/generator/CMakeFiles/qtscript_core.dir/generated_cpp/com_trolltech_qt_core/qtscript_QtConcurrent.o
    In file included from /tmp/yaourt-tmp-root/aur-amarok2/amarok2/src/amarok-2.0.2/src/scriptengine/generator/generator/generated_cpp/com_trolltech_qt_core/qtscript_QtConcurrent.cpp:10:
    /usr/include/QtCore/qtconcurrentreducekernel.h: In member function 'bool QtConcurrent::ReduceKernel<ReduceFunctor, ReduceResultType, T>::shouldThrottle()':
    /usr/include/QtCore/qtconcurrentreducekernel.h:214: error: 'QThreadPool' has not been declared
    /usr/include/QtCore/qtconcurrentreducekernel.h: In member function 'bool QtConcurrent::ReduceKernel<ReduceFunctor, ReduceResultType, T>::shouldStartThread()':
    /usr/include/QtCore/qtconcurrentreducekernel.h:220: error: 'QThreadPool' has not been declared
    make[2]: *** [src/scriptengine/generator/generator/CMakeFiles/qtscript_core.dir/generated_cpp/com_trolltech_qt_core/qtscript_QtConcurrent.o] Error 1
    make[1]: *** [src/scriptengine/generator/generator/CMakeFiles/qtscript_core.dir/all] Error 2
    make: *** [all] Error 2
    ==> ERROR: Build Failed.
        Aborting...
    Error: Makepkg was unable to build amarok2 package.
    bash-3.2#
    P.S: I am a noob, so was not sure which part of code to put up here so I pasted the entire comments instead.
    Last edited by kapz (2009-05-09 19:37:58)

    You must edit /usr/include/QtCore/qtconcurrentreducekernel.h and add
    #include <QtCore/qthreadpool.h>
    along with the other "#include" lines at the beginning of the file.
    You will also need patches for the current libgpod version. Grab the updated PKGBUILD and sources here : http://jm.ambrosino.free.fr/archlinux/_ … s/amarok2/
    Or the i686 binary : http://jm.ambrosino.free.fr/archlinux/i … pkg.tar.gz

  • [SOLVED]makepkg was unable to build conkyforecast-bzr

    $yaourt conkyforecast
    then i enter n of package (1-3)
    after succes installing conkyforecast-2.20.1 then installing conkyforecast-bzr i allways get error messages
    sory for my bad english
    i hope u get my point
    ==> Starting build()...
    ==> Connecting to the server....
    bzr: ERROR: Already a branch: "conkyforecast".
    ==> ERROR: A failure occurred in build().
    Aborting...
    ==> ERROR: Makepkg was unable to build conkyforecast-bzr.
    ==> Restart building conkyforecast-bzr ? [y/N]
    ==> ------------------------------------------
    ==>
    oke solved it
    i reinstall the conky, and it works
    Last edited by maput (2012-05-03 07:30:58)

    ChoK wrote:It seems like you need lib32-jack and the maintainer of lib32-portaudio forgot to add it to makedepends/depends
    Iv'e got lib32-jack already installed. And by reading the comments of the AUR link to the package ( lib32-portaudio ) they supposedly fixed the PKGBUILD too.

  • [Solved] Makepkg fails on all Mercurial (*-hg) packages

    Hello,
    I'm not sure if this is a result of recent updates, but I noticed that makepkg now fails on all mercurial packages. I attempted to install both the dillo browser and pytyle, and received the following messages (this is for pytyle2-hg, but the messages were basically identical):
    ==> Determining latest hg revision...
    warning: pytyle.googlecode.com certificate with fingerprint e9:f0:26:b1:ff:27:28:33:81:8e:51:7b:fd:a7:de:df:4c:1e:ee:14 not verified (check hostfingerprints or web.cacerts config setting)
    real URL is https://pytyle.googlecode.com/hg/
    requesting all changes
    adding changesets
    adding manifests
    adding file changes
    added 39 changesets with 303 changes to 115 files
    updating to branch default
    36 files updated, 0 files merged, 0 files removed, 0 files unresolved
    -> Version found: 38
    ==> Making package: pytyle2-hg 38-1 (Tue Feb 7 22:02:49 EST 2012)
    ==> Checking runtime dependencies...
    ==> Checking buildtime dependencies...
    ==> Retrieving Sources...
    ==> Extracting Sources...
    ==> Entering fakeroot environment...
    ==> Starting build()...
    ==> Connecting to Mercurial server...
    warning: pytyle.googlecode.com certificate with fingerprint e9:f0:26:b1:ff:27:28:33:81:8e:51:7b:fd:a7:de:df:4c:1e:ee:14 not verified (check hostfingerprints or web.cacerts config setting)
    real URL is https://pytyle.googlecode.com/hg/
    pulling from https://pytyle.googlecode.com/hg//pytyle
    searching for changes
    no changes found
    ==> ERROR: A failure occurred in build().
    Aborting...
    Rerunning makepkg in the same directory fails to get through the version check phase:
    ==> Determining latest hg revision...
    warning: pytyle.googlecode.com certificate with fingerprint e9:f0:26:b1:ff:27:28:33:81:8e:51:7b:fd:a7:de:df:4c:1e:ee:14 not verified (check hostfingerprints or web.cacerts config setting)
    real URL is https://pytyle.googlecode.com/hg/
    pulling from https://pytyle.googlecode.com/hg//pytyle
    searching for changes
    no changes found
    ==> ERROR: An unknown error has occurred. Exiting...
    The mercurial portion of both packages seems to match the VCS template exactly. Executing "hg clone [hgroot] [hgrepo]" works, as does performing a pull from the cloned directory.
    Any help would be greatly appreciated.
    Regards,
    szim90
    Last edited by szim90 (2012-02-08 10:00:50)

    That does appear to be the cause of this problem. Thanks karol - marking as solved.
    Last edited by szim90 (2012-02-08 10:00:34)

  • [solved] vim build failed

    Hi
    I am trying to build vim because the version in the repo lacks a couple of options I need (x11...). The build fails without a clear error message, below are the last lines before the makepkg -s fails:
    patching file src/cleanlint.vim
    Reversed (or previously applied) patch detected! Skipping patch.
    1 out of 1 hunk ignored -- saving rejects to file src/cleanlint.vim.rej
    patching file src/diff.c
    patching file src/edit.c
    patching file src/ex_cmds.c
    patching file src/ex_cmds2.c
    patching file src/ex_docmd.c
    patching file src/proto/ex_cmds.pro
    patching file src/proto/spell.pro
    patching file src/quickfix.c
    patching file src/spell.c
    patching file src/structs.h
    patching file src/term.h
    patching file src/vim.h
    patching file src/version.c
    ==> ERROR: Build Failed.
    Aborting...
    If the reason is the failed patch is there a way to correct things manually?
    This it the (slightly modified) PKGBUILD I am using:
    # $Id: PKGBUILD 53395 2009-09-30 20:20:00Z francois $
    # Maintainer: tobias [ tobias at archlinux org ]
    pkgname=vim
    _srcver=7.2
    _patchlevel=267
    pkgver=${_srcver}.${_patchlevel}
    pkgrel=1
    pkgdesc='Vi Improved, a highly configurable, improved version of the vi text editor'
    arch=(i686 x86_64)
    license=('custom:vim')
    url="http://www.vim.org"
    depends=('gpm' 'coreutils')
    makedepends=('wget' 'sed' 'grep' 'gettext' 'perl')
    optdepends=('perl: the runtime provides a view useful perl scripts')
    backup=(etc/vimrc)
    install=${pkgname}.install
    # we need the extra-stuff to get all patches applied smoothly
    source=(ftp://ftp.vim.org/pub/vim/unix/vim-${_srcver}.tar.bz2 \
    ftp://ftp.vim.org/pub/vim/extra/vim-${_srcver}-extra.tar.gz \
    ftp://ftp.vim.org/pub/vim/extra/vim-${_srcver}-lang.tar.gz \
    fetch_patches.sh fetch_runtime.sh vimrc archlinux.vim)
    md5sums=('f0901284b338e448bfd79ccca0041254' '35e04482f07c57221c9a751aaa3b8dac' \
    'd8884786979e0e520c112faf2e176f05' '6d7e8d7868e8bfaa9a5880cd9c439320' \
    '45c1c3c6aff7de0d8fc2a9d8cd5cec7d' '29125bedc96f2a58c772ee0455a333bc' \
    '10353a61aadc3f276692d0e17db1478e')
    build()
    _versiondir="vim"$(echo ${_srcver} | sed "s/\.//")
    # pull in patches from vim.org (or the src cache alternatively)
    . ${srcdir}/fetch_patches.sh
    . ${srcdir}/fetch_runtime.sh
    get_patches || return 1
    cd ${srcdir}/${_versiondir}
    sed -i 's|^.*\(#define SYS_.*VIMRC_FILE.*"\) .*$|\1|' src/feature.h
    sed -i 's|^.*\(#define VIMRC_FILE.*"\) .*$|\1|' src/feature.h
    # build party
    ./configure --prefix=/usr --localstatedir=/var/lib/vim --mandir=/usr/share/man \
    --with-compiledby=Arian --with-features=huge \
    --enable-gpm --enable-acl --with-x=yes \
    --enable-multibyte --enable-cscope \
    --enable-perlinterp --enable-pythoninterpr \
    --enable-fontset
    #--with-global-runtime=/usr/share/vim --with-vim-name=vim \
    make || return 1
    make VIMRCLOC=/etc DESTDIR=${pkgdir} install
    cd ${pkgdir}/usr/bin
    rm ex view # provided by (n)vi in core
    mv vim vim-normal # we create a vim-symlink on post_install
    ln -sf vim-normal vim
    # ... make g* related symlinks point directly to the actual binary
    ln -sf vim-normal rview
    ln -sf vim-normal rvim
    ln -sf vim-normal vimdiff
    # delete some manpages
    find ${pkgdir}/usr/share/man -type d -name 'man1' 2> /dev/null | \
    while read mandir; do
    cd ${mandir}
    rm -f ex.1 view.1 # provided by (n)vi
    rm -f evim.1 # this does not make sense in the console version
    done
    _runtimedir="${pkgdir}/usr/share/vim/${_versiondir}/"
    update_runtime
    cd ${srcdir}/${_versiondir}
    install -Dm644 ${srcdir}/vimrc ${pkgdir}/etc/vimrc
    install -Dm644 ${srcdir}/archlinux.vim \
    ${pkgdir}/usr/share/vim/vimfiles/archlinux.vim
    install -dm755 ${pkgdir}/usr/share/licenses/vim
    cd ${pkgdir}/usr/share/licenses/vim
    ln -s ../../vim/${_versiondir}/doc/uganda.txt license.txt
    Any help appreciated.
    Last edited by akuschki (2009-10-22 16:43:34)

    thanks, that solved it. Sorry I didn't try that obvious solution myself, I didn't realise that installing gvim would also change the features of the console vim version. I thought those two packages are independent.
    Cheers

  • [SOLVED] conky-lua build fails due to toluapp package issues

    I am trying to install conky-lua from AUR on 64 bit Arch and failing miserably.
    When running the following:
    yaourt -Sy conky-lua
    I get the following error:
    /usr/bin/ld: /usr/lib/gcc/x86_64-unknown-linux-gnu/4.4.2/../../../../lib/libtolua++.a(tolua_is.o): relocation R_X86_64_32S against `.rodata.str1.1' can not be used when making a shared object; recompile with -fPIC
    /usr/lib/gcc/x86_64-unknown-linux-gnu/4.4.2/../../../../lib/libtolua++.a: could not read symbols: Bad value
    collect2: ld returned 1 exit status
    make[1]: *** [libcairo.la] Error 1
    make[1]: Leaving directory `/tmp/yaourt-tmp-mark/aur-conky-lua/conky-lua/src/conky-1.7.2/lua'
    make: *** [all-recursive] Error 1
    ==> ERROR: Build Failed.
    Aborting...
    Error: Makepkg was unable to build conky-lua package.
    I have read through what search results I can find on the topic (both here and via google) and have attempted to remedy the situation by adding build options to the toluapp build to provide for the conky-lua build. I have tried this by adding CCFLAGS = '-fPIC' to the scons call in the PKGBUILD file, I have also tried editing the config_linux.py file, which sits along side the main build file, to include the -fPIC switch also, which doesn't work either. i.e. I have this in the config_linux.py now:
    CCFLAGS = ['-O2', '-ansi', '-Wall', '-fPIC']
    Which doesn't work, it results in:
    ==> Validating source files with md5sums...
    tolua++-1.0.93.tar.bz2 ... Passed
    config_linux.py ... FAILED
    ==> ERROR: One or more files did not pass the validity check!
    Error: Makepkg was unable to build toluapp package.
    Can someone help me through a build as I have never come across scons before and maybe I am providing directives to the toluapp build incorrectly? I am still thinking in "make" terms...
    I NEED lua in conky
    Thanks in advance
    Regards,
    Kaivalagi
    Last edited by kaivalagi (2009-11-11 07:32:04)

    I was asked by email on what exactly I did to get conky-lua installed and working on 64bit Arch, so I thought I would post my reply below in case it is of help to anyone else. Cheers
    Run "yaourt -S conky-lua". Amongst other things this will try to install a dependancy which you need to mess about with, the package you need to edit is "toluapp".
    When the "toluapp" package is downloaded by yaourt answer y to the edit question and provide something like gedit or kate as the editor to use
    You'll now see the PKGBUILD file in the editor, this doesn't need editing just yet. But if you open file from the editor you'll see the directory thie PKGBUILD is in, and you want to edit the config_linux.py file you'll see there.
    You should see this line in the config_linux.py file:
    CCFLAGS = ['-O2', '-ansi', '-Wall']
    Change it so it is like this:
    CCFLAGS = ['-O2', '-ansi', '-Wall', '-fPIC']
    Now, back to the PKGBUILD file, you'll see this line:
    md5sums=('100aa6907b8108582080b37d79c0afd7' 'bab107cdd2d18d3453a2344341b77c45')
    These checksums line up with tarball and config_linux.py files, and this will stop you're edit from working if not amended because the .py file isn't what it should be, we changed it. So run md5sum against the .py file and update the second checksum in the line appropriately.
    Carry on with the package installation and conky should have lua support
    Last edited by kaivalagi (2010-01-14 08:50:55)

  • [SOLVED] 'wordgrinder' package build fails

    I'm trying to build a package out of this program here: http://aur.archlinux.org/packages.php?ID=17015
    I download the tarball, extract it into my builds directory, enter the wordgrinder directory and enter 'makepkg -s'. I've only done this sort of thing once or twice but it worked then. This time, however, it ends with a build error:
    (... lots of patching lines...)
    pm: bootstrapping...
    modemuncher.h:4: warning: cast from pointer to integer of different size
    pm: creating new intermediate file cache in '.pm-cache'
    gcc "-Wall" "-Os" "-I/usr/include/ncursesw" "-I/usr/include/lua" "-D_XOPEN_SOURCE_EXTENDED" "-D_XOPEN_SOURCE" "-DVERSION=\"0.2\"" "-DFILEFORMAT=2" "-DPREFIX=\"/usr\"" "-DNDEBUG" -c -o ".pm-cache/1-utils.o" "src/c/utils.c"
    src/c/utils.c: In function 'readu8_cb':
    src/c/utils.c:93: warning: implicit declaration of function 'lua_tointeger'
    src/c/utils.c: In function 'writeu8_cb':
    src/c/utils.c:107: warning: implicit declaration of function 'luaL_checkinteger'
    src/c/utils.c: In function 'utils_init':
    src/c/utils.c:168: error: expected '=', ',', ';', 'asm' or '__attribute__' before 'funcs'
    src/c/utils.c:168: error: 'funcs' undeclared (first use in this function)
    src/c/utils.c:168: error: (Each undeclared identifier is reported only once
    src/c/utils.c:168: error: for each function it appears in.)
    src/c/utils.c:168: error: expected expression before ']' token
    src/c/utils.c:177: warning: implicit declaration of function 'luaL_register'
    rm -f ".pm-cache/1-utils.o"
    pm: object 'cfile', defined at pmfile:71, failed to build with return code 256
    ==> ERROR: Build Failed.
    Aborting...
    Can anybody tell me what's going wrong?
    Last edited by chochem (2008-08-19 09:40:39)

    Garns wrote:
    chochem wrote:BTW I was beta-testing the new version (0.3) while I was on Ubuntu and it looks quite impressive. Some neat new features, such as being able to navigate the document by headline-structure, easy moving text in between documents - introducing the Scrapbook - and possibly even... wait for it... undo (no promises, though). Sadly it says orphaned in AUR so Iguess it might be a while before it's available on Arch...
    I adopted it . I'll update it to 0.3 as soon as there is a release. As orphaned packages in AUR are free for anyone to adopt, you could have done this as well.
    Cool, thanks Yes, well but ... seeing as today is Day Two of my entire Arch experience, I figured I'd wait a bit before inflicting my workmanship on others. Funny thing is, I found out, I'm already contributing unwittingly: Searching AUR for MPD stuff, I found that somebody had posted a link to some old bash script hacks I've done

  • [solved] vmware-server aur build fails

    I'm trying to install vmware-server from aur.  Downloaded the .tar.gz file from vmware, placed it in the build directory, and let it go.  Build fails with the following:
    (in building vmware-server-modules)
    /tmp/yaourt-tmp-david/aur-vmware-server-modules/vmware-server-modules/src/vmware-server-distrib/lib/modules/source/vmci-only/./include/vm_atomic.h:1536:7: warning: "_MSC_VER" is not defined
    /tmp/yaourt-tmp-david/aur-vmware-server-modules/vmware-server-modules/src/vmware-server-distrib/lib/modules/source/vmci-only/./include/vm_atomic.h:1663:7: warning: "_MSC_VER" is not defined
    /tmp/yaourt-tmp-david/aur-vmware-server-modules/vmware-server-modules/src/vmware-server-distrib/lib/modules/source/vmci-only/./include/vm_atomic.h:1796:7: warning: "_MSC_VER" is not defined
    make[2]: *** [/tmp/yaourt-tmp-david/aur-vmware-server-modules/vmware-server-modules/src/vmware-server-distrib/lib/modules/source/vmci-only/linux/driver.o] Error 1
    make[1]: *** [_module_/tmp/yaourt-tmp-david/aur-vmware-server-modules/vmware-server-modules/src/vmware-server-distrib/lib/modules/source/vmci-only] Error 2
    make[1]: Leaving directory `/usr/src/linux-2.6.33-ARCH'
    make: *** [vmci.ko] Error 2
    make: Leaving directory `/tmp/yaourt-tmp-david/aur-vmware-server-modules/vmware-server-modules/src/vmware-server-distrib/lib/modules/source/vmci-only'
    ==> ERROR: Build Failed.
    Aborting...
    Error: Makepkg was unable to build vmware-server-modules package.
    Does anyone know of a solution?  virtualbox works great, but doesn't support TI's MSP430UIF FET, which is why I'm trying out vmware.
    Last edited by beretta (2010-05-07 17:32:03)

    Trying again... I haven't been able to find a solution.  Is there something else I should be doing to install vmware-server and vmware-server-modules?

  • How to solve the build fail error when the file below mention cant be found

    Hi,
    i got this build fail but i cant find where the error came from and how to solve it. im stucked at this problem for quite a long time.
    BUILD FAILED
    C:\Infrastructure\Infrastructure\Ant\build.xml:52: The following error occurred while executing this line:
    C:\Infrastructure\Infrastructure\DBSchema\build.xml:262: C:\Infrastructure\Infrastructure\Ant\OracleMiddlewarejdeveloper\modules\oracle.adf.share_11.1.1 not found
    Is there any solutions to it??
    Rgds,
    lx

    Below are my codes for the build.properties.
    # Base Directory for library lookup
    jdeveloper.home=C:\Oracle\Middleware\jdeveloper
    src.home=..//..
    # JDBC info used to create Schema
    jdbc.driver=oracle.jdbc.OracleDriver
    jdbc.urlBase=jdbc:oracle:thin:@localhost
    jdbc.port=1521
    jdbc.sid=fypj
    # Information about the default setup for the demo user.
    db.adminUser=system
    db.demoUser=fusion
    db.demoUser.password=oracle
    db.demoUser.tablespace=USERS
    db.demoUser.tempTablespace=TEMP

  • [SOLVED] makepkg fails because of libqt-mt.so.3

    When I attempt to makepkg a pkgbuild or compile (make) from source, it fails.  This is the final error message from my last attempt at a AUR pkgbuild:
    /opt/qt/bin/uic: error while loading shared libraries: libqt-mt.so.3: cannot open shared object file: No such file or directory
    make[3]: *** [Alphacubeconfig.h] Error 127
    make[3]: Leaving directory `/home/pek/builds/kdedecor-alphacube/src/Alphacube-0.3/kwin/config'
    make[2]: *** [all-recursive] Error 1
    make[2]: Leaving directory `/home/pek/builds/kdedecor-alphacube/src/Alphacube-0.3/kwin'
    make[1]: *** [all-recursive] Error 1
    make[1]: Leaving directory `/home/pek/builds/kdedecor-alphacube/src/Alphacube-0.3'
    make: *** [all] Error 2
    ==> ERROR: Build Failed.  Aborting...
    This seems to happen when I try to install older pkgbuilds or source packages.  I have successfully installed google-earth and some other pkgbuild so I know it can work.  I only learned how to use ABS a few days ago so maybe I'm doing something wrong?  I followed the guide and am using fakeroot.  If it matters, I installed Arch from the Arch-Office cd; it is completely updated except I am using the 2.6.19Beyond kernel. 
    Any ideas?  I noticed that in all the failed builds, the following line is always present... *dramatic dunh dunh DUNH sound*
    /opt/qt/bin/uic: error while loading shared libraries: libqt-mt.so.3: cannot open shared object file: No such file or directory
    P.S.  I checked and /opt/qt/bin/uic IS indeed there and libqt-mt.so.3 is in /opt/qt/lib   
    Last edited by forestranger (2007-02-22 05:17:59)

    Snowman wrote:
    After installing qt, di you updated your profiles? You can do that for the current terminal by running:
    bash /etc/profile
    or logout/relogin.
    Also, do you have a:
    /opt/qt/lib
    line in /etc/ld.so.conf ? It should have been done when you installed qt but maybe it didn't installed properly.
    Yes, I did update my profile.  I've logged out and even ran bash /etc/profile for good measure.
    Strangely enough, I did not have "/opt/qt/lib" in my /etc/ld.so.conf.  I added it in manually and rebooted.  It didn't help though.  I get the same errors.  I checked all everything in /var/log and couldn't find any clues there.
    Is there some other config file that defines the path for the qt lib's?

  • [SOLVED] vala-git build fails -- autoconf problems?

    My system is up to date as of today and I have the regular extra/vala 0.16.0-1 installed. When building aur/vala-git with yaourt I get this:
    ==> Starting build...
    Cloning into '/tmp/yaourt-tmp-herman/aur-vala-git/src/vala-build'...
    done.
    autoreconf: Entering directory `.'
    autoreconf: configure.ac: not using Gettext
    autoreconf: running: aclocal -I m4
    autoreconf: configure.ac: tracing
    autoreconf: configure.ac: not using Libtool
    autoreconf: running: /usr/bin/autoconf
    configure.ac:25: error: possibly undefined macro: AC_DISABLE_STATIC
    If this token and others are legitimate, please use m4_pattern_allow.
    See the Autoconf documentation.
    configure.ac:26: error: possibly undefined macro: AC_PROG_LIBTOOL
    autoreconf: /usr/bin/autoconf failed with exit status: 1
    ==> ERROR: A failure occurred in build().
    Aborting...
    ==> ERROR: Makepkg was unable to build vala-git.
    ==> Restart building vala-git ? [y/N]
    ==> ---------------------------------
    ==>
    ==> WARNING: Following packages have not been installed:
    vala-git
    The reason I want to install it is that cario-compmgr is also failing to build. Do I need to tweak some PKGBUILD settings or the .install here? These files seems fine. Appreciate your time.
    Solution: install the WHOLE base-devel package
    Last edited by hesse (2012-06-16 22:32:42)

    Don't panic, I don't. Just did not have time before now.
    EDIT: Done. I am still throwing in the towel, though. I was trying to make a gtkmm-git PKGBUILD, because I need the latest gtkmm for development. However for gtkmm-git I needed gtk-git, for which I needed glib-git and pango-git. I successfully (at least it appears so) managed to install glib-git and pango-git, but now I get a linker error with gtk-git and will not spend another day looking for its source. I will just wait until gtkmm-3.1 is released.
    EDIT 2: Alright, it appears there must have been something wrong with my "successfull" installs as well, as I just started a gtk app (Balsa) and it did not have any font, just rectangles for letters. Replacing glib-git and pango-git with their stable counterparts turned everything right again.
    Last edited by Franek (2011-08-23 20:46:47)

  • Amarok2-svn build fails [SOLVED]

    Is this a common occurance in building amarok2-svn or am I doing something noobishly wrong?
    [ 86%] Built target amarok_collection-ipodcollection
    Generating mtpmeta.moc
    Generating MtpCollectionLocation.moc
    Generating MtpCollection.moc
    Generating moc_MtpHandler.cpp
    Scanning dependencies of target amarok_collection-mtpcollection
    [ 86%] Building CXX object src/collection/mtpcollection/CMakeFiles/amarok_collection-mtpcollection.dir/amarok_collection-mtpcollection_automoc.o
    In file included from /tmp/yaourt-tmp-dave/aur-amarok2-svn/amarok2-svn/src/amarok2-svn/src/collection/mtpcollection/moc_MtpHandler.cpp:10,
                     from /tmp/yaourt-tmp-dave/aur-amarok2-svn/amarok2-svn/src/amarok2-svn/src/collection/mtpcollection/amarok_collection-mtpcollection_automoc.cpp:4:
    /tmp/yaourt-tmp-dave/aur-amarok2-svn/amarok2-svn/src/amarok2-svn/src/collection/mtpcollection/handler/MtpHandler.h:66: error: 'LIBMTP_raw_device_t' has not been declared
    /tmp/yaourt-tmp-dave/aur-amarok2-svn/amarok2-svn/src/amarok2-svn/src/collection/mtpcollection/handler/MtpHandler.h:158: error: 'LIBMTP_raw_device_t' has not been declared
    /tmp/yaourt-tmp-dave/aur-amarok2-svn/amarok2-svn/src/amarok2-svn/src/collection/mtpcollection/handler/MtpHandler.h:169: error: ISO C++ forbids declaration of 'LIBMTP_raw_device_t' with no type
    /tmp/yaourt-tmp-dave/aur-amarok2-svn/amarok2-svn/src/amarok2-svn/src/collection/mtpcollection/handler/MtpHandler.h:169: error: expected ';' before '*'token
    make[2]: *** [src/collection/mtpcollection/CMakeFiles/amarok_collection-mtpcollection.dir/amarok_collection-mtpcollection_automoc.o] Error 1
    make[1]: *** [src/collection/mtpcollection/CMakeFiles/amarok_collection-mtpcollection.dir/all] Error 2
    make: *** [all] Error 2
    ==> ERROR: Build Failed.
        Aborting...
    Error: Makepkg was unable to build amarok2-svn package.
    Last edited by archdave (2008-10-14 06:21:03)

    ok, found earlier posting
    doing this
    youart -R libmtp
    yaourt -S libmtp-devel
    yaourt -S amarok2-svn
    It's restarting compile and continueing at the 86% point

  • [Solved] Cairo-Dock Build Failed

    Im trying to get cairo-dock up and running but keep getting the message that the build has failed. Tried both manual and with yaourt with same results.
    Im still wet behind the ears with this kinda thing so any help would be much appreciated.
    Thanks
    ==> Making package: cairo-dock 1.6.3.1-1 i686 (Wed Jan 21 17:26:27 GMT 2009)
    ==> Checking Runtime Dependencies...
    ==> Checking Buildtime Dependencies...
    ==> Retrieving Sources...
    -> Found cairo-dock-1.6.3.1.tar.bz2 in build dir
    ==> Validating source files with md5sums...
    cairo-dock-1.6.3.1.tar.bz2 ... Passed
    ==> Extracting Sources...
    -> bsdtar -x -f cairo-dock-1.6.3.1.tar.bz2
    ==> Removing existing pkg/ directory...
    ==> Entering fakeroot environment...
    ==> Starting build()...
    autoreconf: Entering directory `.'
    autoreconf: configure.ac: not using Gettext
    autoreconf: running: aclocal --force
    autoreconf: configure.ac: tracing
    autoreconf: running: libtoolize --force
    libtoolize: putting auxiliary files in `.'.
    libtoolize: linking file `./ltmain.sh'
    libtoolize: Consider adding `AC_CONFIG_MACRO_DIR([m4])' to configure.ac and
    libtoolize: rerunning libtoolize, to keep the correct libtool macros in-tree.
    libtoolize: Consider adding `-I m4' to ACLOCAL_AMFLAGS in Makefile.am.
    autoreconf: running: /usr/bin/autoconf --force
    autoreconf: running: /usr/bin/autoheader --force
    autoreconf: running: automake --add-missing --force-missing
    autoreconf: Leaving directory `.'
    checking for a BSD-compatible install... /bin/install -c
    checking whether build environment is sane... yes
    checking for a thread-safe mkdir -p... /bin/mkdir -p
    checking for gawk... gawk
    checking whether make sets $(MAKE)... yes
    checking build system type... i686-pc-linux-gnu
    checking host system type... i686-pc-linux-gnu
    checking for style of include used by make... GNU
    checking for gcc... gcc
    checking for C compiler default output file name... a.out
    checking whether the C compiler works... yes
    checking whether we are cross compiling... no
    checking for suffix of executables...
    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 a sed that does not truncate output... /bin/sed
    checking for grep that handles long lines and -e... /bin/grep
    checking for egrep... /bin/grep -E
    checking for fgrep... /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 for /usr/bin/ld option to reload object files... -r
    checking for objdump... objdump
    checking how to recognize dependent libraries... pass_all
    checking for ar... ar
    checking for strip... strip
    checking for ranlib... ranlib
    checking command to parse /usr/bin/nm -B output from gcc object... ok
    checking how to run the C preprocessor... gcc -E
    checking for ANSI C header files... yes
    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) 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 NLS is requested... yes
    checking for intltool >= 0.35.0... 0.40.5 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 XML::Parser... ok
    checking locale.h usability... yes
    checking locale.h presence... yes
    checking for locale.h... yes
    checking for LC_MESSAGES... yes
    checking libintl.h usability... yes
    checking libintl.h presence... yes
    checking for libintl.h... yes
    checking for ngettext in libc... yes
    checking for dgettext in libc... yes
    checking for bind_textdomain_codeset... yes
    checking for msgfmt... (cached) /usr/bin/msgfmt
    checking for dcgettext... yes
    checking if msgfmt accepts -c... yes
    checking for gmsgfmt... (cached) /usr/bin/msgfmt
    checking for xgettext... (cached) /usr/bin/xgettext
    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 for ANSI C header files... (cached) yes
    checking math.h usability... yes
    checking math.h presence... yes
    checking for math.h... yes
    checking for stdlib.h... (cached) yes
    checking for pkg-config... /usr/bin/pkg-config
    checking pkg-config is at least version 0.9.0... yes
    checking for PACKAGE... yes
    checking for XEXTEND... yes
    checking for GLITZ... yes
    configure: creating ./config.status
    config.status: creating Makefile
    config.status: creating cairo-dock.pc
    config.status: WARNING: 'cairo-dock.pc.in' seems to ignore the --datarootdir setting
    config.status: creating src/Makefile
    config.status: creating po/Makefile.in
    config.status: creating data/Makefile
    config.status: creating data/cairo-dock.conf
    config.status: creating data/main-dock.conf
    config.status: creating data/default-theme/Makefile
    config.status: creating data/default-theme/launchers/Makefile
    config.status: creating data/default-theme/icons/Makefile
    config.status: creating data/gauges/Makefile
    config.status: creating data/gauges/radium/Makefile
    config.status: creating data/gauges/radium-fuel/Makefile
    config.status: creating data/gauges/battery/Makefile
    config.status: creating data/gauges/old-square/Makefile
    config.status: creating data/gauges/turbo-night/Makefile
    config.status: creating data/gauges/turbo-night-fuel/Makefile
    config.status: creating data/gauges/turbo-night-dual/Makefile
    config.status: creating data/gauges/rainbow/Makefile
    config.status: creating data/gauges/tomato/Makefile
    config.status: creating data/gauges/Circle/Makefile
    config.status: creating data/emblems/Makefile
    config.status: creating data/explosion/Makefile
    config.status: creating config.h
    config.status: config.h is unchanged
    config.status: executing depfiles commands
    config.status: executing libtool commands
    config.status: executing default-1 commands
    config.status: executing po/stamp-it commands
    # INTLTOOL_MAKEFILE
    Cairo-Dock will be compiled with the following options :
    * Use X Extensions : yes
    * Hardware Acceleration : yes
    make all-recursive
    make[1]: Entering directory `/home/andy/cairo-dock/src/cairo-dock-1.6.3.1'
    Making all in .
    make[2]: Entering directory `/home/andy/cairo-dock/src/cairo-dock-1.6.3.1'
    make[2]: Leaving directory `/home/andy/cairo-dock/src/cairo-dock-1.6.3.1'
    Making all in src
    make[2]: Entering directory `/home/andy/cairo-dock/src/cairo-dock-1.6.3.1/src'
    Making all in .
    make[3]: Entering directory `/home/andy/cairo-dock/src/cairo-dock-1.6.3.1/src'
    gcc -DHAVE_CONFIG_H -I. -I.. -pthread -I/usr/include/gtk-2.0 -I/usr/lib/gtk-2.0/include -I/usr/include/atk-1.0 -I/usr/include/cairo -I/usr/include/pango-1.0 -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/pixman-1 -I/usr/include/freetype2 -I/usr/include/libpng12 -I/usr/include/librsvg-2 -I/usr/include/dbus-1.0 -I/usr/lib/dbus-1.0/include -I/usr/include/libxml2 -DHAVE_GLITZ="1" -DHAVE_XEXTEND="1" -DCAIRO_DOCK_SHARE_DATA_DIR=\""/usr/share/cairo-dock"\" -DCAIRO_DOCK_SHARE_THEMES_DIR=\""/usr/share/cairo-dock/themes"\" -DCAIRO_DOCK_MODULES_DIR=\""/usr/lib/cairo-dock"\" -DCAIRO_DOCK_CONF_FILE=\""cairo-dock.conf"\" -DCAIRO_DOCK_EASY_CONF_FILE=\""cairo-dock_easy.conf"\" -DCAIRO_DOCK_LAUNCHER_CONF_FILE=\""launcher.conf"\" -DCAIRO_DOCK_CONTAINER_CONF_FILE=\""container.conf"\" -DCAIRO_DOCK_SEPARATOR_CONF_FILE=\""separator.conf"\" -DCAIRO_DOCK_THEME_CONF_FILE=\""themes.conf"\" -DCAIRO_DOCK_MAIN_DOCK_CONF_FILE=\""main-dock.conf"\" -DCAIRO_DOCK_DEFAULT_ICON_NAME=\""default-icon.svg"\" -DCAIRO_DOCK_DEFAULT_INDICATOR_NAME=\""default-indicator.png"\" -DCAIRO_DOCK_DEFAULT_DROP_INDICATOR_NAME=\""default-drop-indicator.svg"\" -DCAIRO_DOCK_VERSION=\""1.6.3.1"\" -DCAIRO_DOCK_LOCALE_DIR=\""/usr/share/locale"\" -DCAIRO_DOCK_GETTEXT_PACKAGE=\""cairo-dock"\" -DCAIRO_DOCK_ICON=\""cairo-dock.svg"\" -DCAIRO_DOCK_LOGO=\""cairo-dock-logo.png"\" -std=c99 -O3 -g -ggdb -Wno-unused-parameter -march=i686 -mtune=generic -O2 -pipe -MT cairo_dock-cairo-dock-callbacks.o -MD -MP -MF .deps/cairo_dock-cairo-dock-callbacks.Tpo -c -o cairo_dock-cairo-dock-callbacks.o `test -f 'cairo-dock-callbacks.c' || echo './'`cairo-dock-callbacks.c
    cairo-dock-callbacks.c:24:25: error: cairo-glitz.h: No such file or directory
    cairo-dock-icons.h:335: warning: inline function 'cairo_dock_update_removing_inserting_icon' declared but never defined
    make[3]: *** [cairo_dock-cairo-dock-callbacks.o] Error 1
    make[3]: Leaving directory `/home/andy/cairo-dock/src/cairo-dock-1.6.3.1/src'
    make[2]: *** [all-recursive] Error 1
    make[2]: Leaving directory `/home/andy/cairo-dock/src/cairo-dock-1.6.3.1/src'
    make[1]: *** [all-recursive] Error 1
    make[1]: Leaving directory `/home/andy/cairo-dock/src/cairo-dock-1.6.3.1'
    make: *** [all] Error 2
    ==> ERROR: Build Failed.
    Aborting...
    Last edited by Andy Mack (2009-01-21 20:21:01)

    When I yaourt cairo-dock it comes with the wglitz package, but from what I understand you have to get cairo-dock and cairo-dock-plugins, but when I build cairo-dock-plugins it fails while building it
    applet-mixer.c:286: error: too many arguments to function 'cairo_dock_build_dialog'
    and it stops right after that, any thoughs?
    Last edited by SiegeMachine (2009-03-26 01:42:38)

Maybe you are looking for

  • Returning to the parameter form in a report after closing the report page

    hi all, tell me a way to get the following solution how can we return back to the parameter form of a "parameterised report" after closing to the report window. i ve tried a little bit with "srw_run_report" reply me as quick as possible prabhakaran

  • My ipod nano 3rd G is not working

    I have an ipod nano 3rd generation that does not funtion. When i turn it on it show the apple for 1 or 3 seconds and then a red circle with a red X in the middle appears. I have tried putting it in disk mode and restoring it but fail. The ipod does n

  • Naming of folders in /Volumes

    How does OS X decide what to name the folder in the /volumes folder for a mounted file share? We have two machines connecting to the same share the exact same way to a share named company - one machine will name it "company" while the other will name

  • Airport Extreme (New) - Is it possible to turn off 2.4ghz broadcast?

    I've got a new Airport Extreme (MC340b/a) and I can't figure out a way to turn off the 2.4 ghz signal, so it's *only* broadcasting on 5ghz.  I've held the option key down when selecting radio mode but none of the options appear to allow me to do this

  • 9i Installation Guidance request

    Hi All, I have installed the 9i Database on an external disk connected to my laptop running Windows XP. i had difficulty logging into the database and the enterprise manager for the database. Can anyone help with a document on how to install 9i Datab