Fedora :: Compiling Programs - No Package Libnotify Found

Jul 26, 2011

I want to compile program. "./configure" giving :

Code:
[kuba@Kuba-fedora uget-1.8.0]$ ./configure
checking for a BSD-compatible install... /usr/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 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 executable .....

Configure: error: Package requirements (libnotify) were not met:
No package 'libnotify' found
Consider adjusting the PKG_CONFIG_PATH environment variable if you installed software in a non-standard prefix. Alternatively, you may set the environment variables LIBNOTIFY_CFLAGS
and LIBNOTIFY_LIBS to avoid the need to call pkg-config. See the pkg-config man page for more details. But I have the newest version of libnotify.

View 2 Replies


ADVERTISEMENT

Fedora :: Compiling Rtorrent - No Package 'openssl' Found

Jul 12, 2010

i ve been trying to compile rtorrent from source and while configuring i run to this: Code: checking for OPENSSL. configure: error: Package requirements (openssl) were not met: No package 'openssl' found Consider adjusting the PKG_CONFIG_PATH environment variable if you installed software in a non-standard prefix. Alternatively, you may set the environment variables OPENSSL_CFLAGS and OPENSSL_LIBS to avoid the need to call pkg-config. See the pkg-config man page for more details. i tried to install openssl and than i came up to this:

[Code]....

View 3 Replies View Related

Ubuntu Installation :: Found A Bunch Of RPM Package-management Stuff Such As Rpm, Alien, Compiling Tools?

Feb 20, 2010

Pretty much self explanatory:This morning I went into the update manager, and found a bunch of RPM package-management stuff such as rpm, alien, compiling tools, etc. What is up with this?I suspect they are setting the scenery for some big press release saying they now support RPM packages in Ubuntu too. Any ideas? (or better, inside info from someone who knows)

View 3 Replies View Related

Fedora :: Programs Not Working (Version GCC_4.2.0 Not Found)

Oct 15, 2009

New to fedora and a bit stuck atm. I got Fedora 11 installed ok and working fine. I then installed Oracle, Adobe Reader and Opera. All seemed to go ok. On booting the machine today, it booted fine, but when I click on places->computer or places-network or firefox or the file browser all I get is the arrow with the ring spinning around it for a bit and then nothing.

So, I tried to start up Firefox from a terminal and I get:
/lib/libgcc_s.so.1 : version 'GCC_4.2.0' not found (required by /usr/lib/libstdcc+.so.6)

I get a few errors when I try and start opera, but one of them is the same as above. I tried nautilus - same thing. I'd be willing to bet it's the same for places->computer and places->network but I don't know how to start those up from the terminal. Part of the install instructions I followed have almost certainly caused it, but I don't know how to reverse them, this is what I did:

"unzip Oracle_Access_Manager10_1_4_0_1_linux_GCClib.zip

This gives you 2 files:
libgcc_s.so.1
libstdc++.so.5

Now move the libgcc_s.so.1 file to /lib/libgcc_s.oracle.so.1
sudo mv libgcc_s.so.1 /lib/libgcc_s.oracle.so.1

And the most important one:
sudo ln -sf /lib/libgcc_s.oracle.so.1 /lib/libgcc_s.so

(Even after the ldconfig command is given in the reboot fase, the link for /lib/libgcc_s.so remains!)

Then you have to rename the /usr/lib/gcc/i586-redhat-linux/4.4.1/libgcc_s.so to /usr/lib/gcc/i586-redhat-linux/4.4.1/libgcc_s_so
Otherwise /lib/libgcc_s.so.1 will be used in link and not /lib/libgcc_s.so, therefore the link will fail

Now you can start the installer by
./runInstaller.sh
And the linking will succeed."

View 6 Replies View Related

Fedora :: Error: Package Requirements (cairo >= 1.6.0) Were Not Met: No Package 'cairo' Found

May 24, 2010

Today I was using Gchempaint (part of Gnome Chemistry Tools) and found that the F12 version fails miserably to correctly export H to xyz. So I decided to install the latest version I found (0.11). There are, however, some problems I must sort out during compilation.

Apparently it does not see my 'cairo' installation and so I get the following error message:

Code:

checking for cairo... configure: error: Package requirements (cairo >= 1.6.0) were not met: No package 'cairo' found

Consider adjusting the PKG_CONFIG_PATH environment variable if you installed software in a non-standard prefix.Alternatively, you may set the environment variables cairo_CFLAGS and cairo_LIBS to avoid the need to call pkg-config. See the pkg-config man page for more details.

View 2 Replies View Related

General :: Compiling And Running C Programs

Aug 19, 2010

I am new to C programming and I need a way to compile and run my code. I've made a little research and I found that eclipse is a nice IDE. But I don't know how to configure it and generally. What do I need to download and install to make it work. I've also tried downloading easy eclipse that doesn't need any configuration or extra files but the link on the site was broken. Is there any other C IDE like easy eclipse available?

View 5 Replies View Related

General :: Compiling And Running GTK Programs

Jun 24, 2010

I am trying to study gtk programming and get stucked before some errors in compiling them. Iam using ubuntu 9.10 and i didnt installed any additional libraries or packages for running these gtk programs assuming gtk is already installed in ubuntu. I am newbie to gtk I tried compiling some example programs from my tutorial and it ended up in errors. So do I need any additional packages to run these programs.when compiling it shows package config cannot find any gtk+-2.0 packages and to try specifying .pc in environment path. I don't know how to set these path stuff.

View 1 Replies View Related

Ubuntu :: Compiling And Running Some C++ Programs (with G++ From The Terminal)?

Jun 7, 2011

so i've just been sitting here, compiling and running some c++ programs (with g++ from the terminal), I looked away for one minute to open a file that had just been written out (opened it with gedit if that makes a difference), now my terminal says:kbuildsyscoca4 running...so I'm wondering if anyone knows what this is about?hy it suddenly started running and why it has appeared on my terminal. I'm basically just curious as I though bash shells were entirely separate virtualizations of shells, and unrepresentative of other processes. i'm also wondering what kbuildsyscoca4 is/does (i've got gnome going on and generally gnome varieties of programs). I found a post from about a year ago mentioning the same thing, though no replies.

View 1 Replies View Related

Software :: Typing CC Command While Compiling Programs?

Feb 24, 2010

I am doing my project which detects and displays the error message along line number when compiling c programs under Linux. Using gcc command..cc command which we generally use. For which my program must act as a compiler and generate error messages when user program is written and compiled. My idea was to develop a shell script program using name suppose ncc that would be..

$ vi ncc.sh
echo "compiling program $1"
$cc MyPgm.c
$.a/.out
<esc>
:wq
Now user program pgm1.c can be compiled using
$ sh ncc.sh pgm1.c

This will invoke my compiler program. But the thing is how to pass user program pgm1.c as input to my compiler program...

View 2 Replies View Related

General :: Compiling And Installing Programs As Non-root In Home-dir ?

May 31, 2011

I'm trying to compile programs under Solaris in my Home directory.

Ive had experience with simple installs which work with just

But with more involved programs, with dependencies on special libraries, how do I have the system look into my home directory for these? and how would I compile them into my home dir?

View 2 Replies View Related

Ubuntu Security :: Compiling Programs Using OpenSSL Libraries

Mar 30, 2010

I tried to compile C program that uses Openssl libraries on shell but got this error. I guess libraries are not linked properly.
undefined reference to SSL_library_init()

View 1 Replies View Related

General :: Compiling 32bit Programs - How To Set Arch Variable

May 21, 2011

I am new to Slackware and I am wondering how you set the ARCH variable. On the multilib wiki page it says:

"Rather than editing the script and change/remove CFLAGS definitions, you can set the ARCH to 'x86_64' and save yourself some time."

So from this I understand that they advise against editing the Slackbuild script. How do I set the ARCH variable on the command line or is it a configuration file I need to edit? I am running Slackware 13.1 64.

View 2 Replies View Related

General :: Compiling Programs - Understanding Concept Of Makefile2

Jan 13, 2011

# Filename: makefile2
# Usage: make-f makefile2
# Description: Maintains all the dependencies between modules using the
# Agenda1.

CC=g++
CFLAGS=-c -Wall
LDFLAGS=
SOURCE_MODULES=main.cpp factorial.cpp hello.cpp
OBJECT_MODULES=$(SOURCE_MODULES:.cpp=.o)
EXECUTABLE=programa1
all: $(OBJECT_MODULES) $(EXECUTABLE)
$(EXECUTABLE): $(OBJECT_MODULES)
$(CC) $(LDFLAGS) $^ -o $@
.o: .cpp
$(CC) $(CFLAGS) $< -o $@

I am suppose to explain the dependencies that exist and each of the following lines of makefile. Lists orders to be executed as a result of running the make utility on it.

View 3 Replies View Related

General :: Compiling Programs - Steps For Producing Executable

Oct 19, 2010

I'm trying to get my head around compiling programs, and need some things clarified. Can anyone confirm or deny my understanding so far:

1) Program is written in high level language, such as C. File(s) of the program are the 'source code'.
2) Program is then 'compiled' to turn it into low-level code that is both hardware - i.e. Intel/AMD/ARM processor specific, and also Linux distribution specific. This resulting files are called the binaries.
3) I can go from source code to installed and usable program by doing these steps:
./configure
make
make install

View 6 Replies View Related

General :: Compiling Modular Programs - Not Present Directory

Jul 6, 2010

I am trying to write modular program but when I try to compile I come to know I don't have any files in /usr/src/linux. I have installed fedora 12 which has 2.6.31.5-127.fc12.i686.PAE. I am including in my code:

linux/kernel.h
linux/module.h

Those are not present directory in /usr/src/linux is not present. My goal is to compile modular programs.

View 10 Replies View Related

Fedora Networking :: Install Ndiswrapper In 10 But The Package Is Not Found

Jun 23, 2009

I'm trying to install ndiswrapper in Fedora 10, but the package is not found:

[Code]...

View 1 Replies View Related

Fedora :: Rpm --resign A Package Get File Not Found Error?

May 31, 2011

When I try to rpm --resign a package I get file not found error. Its not misstyping its not doing any gpg stuff and it does not ask for passphrase.I then rpmbuild -ba --sign X.specIt makes all the files and dies right where it signs the filesWhy i know its the .rpmmacros it never asks for a passphrase!If I build without --sign it builds 100% and exits normally.

.rpmmacros
%_signature gpg
%_gpg_name myname <myemail>

[code]....

View 4 Replies View Related

Red Hat / Fedora :: Adjusting PKG_CONFIG_PATH - No Package 'cairo' Found

Jun 20, 2010

I am facing problems when trying to install gtk+, I have downloaded all the required libraries, but the following output?

checking for BASE_DEPENDENCIES... configure: error: Package requirements (glib-2.0 >= 2.21.3 atk >= 1.13.0 pango >= 1.20 cairo >= 1.6) were not met:

Requested 'glib-2.0 >= 2.21.3' but version of GLib is 2.12.3

No package 'atk' found
No package 'pango' found
No package 'cairo' found

Consider adjusting the PKG_CONFIG_PATH environment variable if you installed software in a non-standard prefix. you may set the environment variables BASE_DEPENDENCIES_CFLAGS and BASE_DEPENDENCIES_LIBS to avoid the need to call pkg-config.See the pkg-config man page for more details.

View 6 Replies View Related

Fedora :: PHP PECL Package - Gmagick Config File Not Found

Dec 29, 2009

I've been trying to install the gmagick extension for days now without success. I always end up with the same error message:

checking GraphicsMagick configuration program... configure: error: not found. Please provide a path to GraphicsMagick-config program.
ERROR: '/tmp/pear/temp/gmagick/configure --with-gmagick' failed

It's no wonder why I get this message as the location simply does not exists, its being unpacked to 'gmagick-1.0.3b2' and not 'gmagick'. I've tried to copy/paste the configuration file (config.m4?) to my manually created 'gmagick' directory within the temp folder but that didn't solve anything.

Command when installing:
Code:
pecl install gmagick-1.0.3b2
I'm running Fedora 12.

View 3 Replies View Related

Fedora :: Empathy Recompile - Configure Error (No Package Found)

Aug 28, 2010

Anyone recompiled Empathy on Fedora? I have problem of configure and make as following:

checking for LIBEMPATHY... configure: error: Package requirements (
glib-2.0 >= 2.16.0
gobject-2.0
gio-2.0 >= 2.16.0
gio-unix-2.0 >= 2.16.0
libxml-2.0
telepathy-glib >= 0.7.31
libmissioncontrol >= 4.61
telepathy-farsight
farsight2-0.10
gstreamer-0.10
) were not met:
No package 'telepathy-glib' found
No package 'libmissioncontrol' found
No package 'telepathy-farsight' found
No package 'farsight2-0.10' found
No package 'gstreamer-0.10' found

Consider adjusting the PKG_CONFIG_PATH environment variable if you installed software in a non-standard prefix. Alternatively, you may set the environment variables LIBEMPATHY_CFLAGS and LIBEMPATHY_LIBS to avoid the need to call pkg-config. See the pkg-config man page for more details.

View 14 Replies View Related

Fedora Installation :: Qt Package Configure Error - Headers And Libraries Not Found

Dec 11, 2009

I am trying to install kcachegrind and during the ./configure phase I got the following error:
Checking for Qt... configure: error: Qt (>= Qt 3.0) (headers and libraries) not found. Please check your installation!

Now I guess I have QT installed and I tried to do the following:
./configure --with-qt-includes=/usr/lib64/qt4/include
but that did not work either.. actually checking further I found that the folder include is missing in usr/lib64/qt4/ !!!!

So what should I do... for you info I am listing below the output of:
yum list *-devel | grep -i qt
qt-devel.x86_64 1:4.5.3-9.fc10 @updates
qwtplot3d-qt4-devel.x86_64 0.2.7-6.fc9 @fedora
PackageKit-qt-devel.i386 0.3.16-1.fc10 updates
PackageKit-qt-devel.x86_64 0.3.16-1.fc10 updates
PyQt-devel.i386 3.18.1-5.fc10 updates
PyQt-devel.x86_64 3.18.1-5.fc10 updates
PyQt4-devel.i386 4.6.2-3.fc10 updates
PyQt4-devel.x86_64 4.6.2-3.fc10 updates
QtRuby-devel.i386 4.3.3-4.fc10 updates
QtRuby-devel.x86_64 4.3.3-4.fc10 updates
SoQt-devel.i386 1.4.1-9.fc9 fedora
SoQt-devel.x86_64 1.4.1-9.fc9 fedora
avahi-qt3-devel.i386 0.6.22-12.fc10 updates
avahi-qt3-devel.x86_64 0.6.22-12.fc10 updates
avahi-qt4-devel.i386 0.6.22-12.fc10 updates
avahi-qt4-devel.x86_64 0.6.22-12.fc10 updates
dbus-qt-devel.i386 0.70-4.fc9 fedora
dbus-qt-devel.x86_64 0.70-4.fc9 fedora
dbus-qt3-devel.i386 0.9-1.fc10 fedora
dbus-qt3-devel.x86_64 0.9-1.fc10 fedora
libprojectM-qt-devel.i386 1.2.0-3.fc10 updates
libprojectM-qt-devel.x86_64 1.2.0-3.fc10 updates
php-qt-devel.i386 4.3.3-4.fc10 updates
php-qt-devel.x86_64 4.3.3-4.fc10 updates
polkit-qt-devel.i386 0.9.2-1.fc10 updates
polkit-qt-devel.x86_64 0.9.2-1.fc10 updates
poppler-qt-devel.i386 0.8.7-7.fc10 updates
poppler-qt-devel.x86_64 0.8.7-7.fc10 updates
poppler-qt4-devel.i386 0.8.7-7.fc10 updates
poppler-qt4-devel.x86_64 0.8.7-7.fc10 updates
qt-devel.i386 1:4.5.3-9.fc10 updates
qt-qsa-devel.i386 1.1.5-5.fc9 fedora
qt-qsa-devel.x86_64 1.1.5-5.fc9 fedora
qt3-devel.i386 3.3.8b-17.fc10 fedora
qt3-devel.x86_64 3.3.8b-17.fc10 fedora
qwtplot3d-qt4-devel.i386 0.2.7-6.fc9 fedora
zbar-qt-devel.i386 0.8-5.fc10 updates
zbar-qt-devel.x86_64 0.8-5.fc10 updates

View 4 Replies View Related

Fedora Installation :: Find Packages Needed To Install - Package Gthread-2.0 Not Found

Jan 22, 2011

Fedora 14 I recently went to install some software using the source files.When I ran the command

Code:

./configure

I got a message saying that

Code:

package gthread-2.0 not found

After searching the internet some one had the same problem. I needed to install a package called

Code:

glib2-devel

However, rather that searching the internet.

View 1 Replies View Related

Fedora Installation :: Programs By "add/remove Software" Getting Group Not Found Error?

Nov 30, 2010

my error is : the groop was not found..i am trying to install openoffice , but its doing it in any software..

View 9 Replies View Related

Software :: Compiling Cheese 2.28.1 - Libebook Not Found

Apr 6, 2010

Linux- openSuse 11.1
Am I trying to make a few modifications to 'Cheese.' When I run the ./configure command the only program that I am having a problem installing is libebook-1.2. The Yast function has found everything but libebook. I went out to find a RPM, got one from [URL] and [URL]. Every install I try has only led to errors. I have had multiple errors. Now when I download a file, it will not do an auto-install. I have also tried rpm -i package. no such luck there either.

View 1 Replies View Related

Slackware :: Compiling Conky: Tolua_errors Not Found?

Mar 13, 2010

I've trying to compile conky 1.7.2 in slack 13 with lua-cairo and lua-imlib2 bindings, have lua 5.1.4 installed and also installed tolua++-1.0.93 from der site installed it through scons..
here's my config_linux.py

Code:
## This is the linux configuration file
# This file was adapted to be used with ArchLinux
# Use 'scons -h' to see the list of command line options available
# Compiler flags (based on ArchLinux's installation of lua)
#LINKFLAGS = ['-g']
CCFLAGS = ['-O2', '-ansi', '-Wall' ]

[Code]...

View 9 Replies View Related

General :: Install All Files Of Package When Compiling?

Jun 19, 2010

Where is the best path to install all files of package when compiling?

For example - I want to install ProFTPd, so there's an option

--prefix=/usr/local/proftpd

, which means, that all files after compilation (including binary and configuration files) will be stored here. As you know, all packages, which are installed via package system (like zypper on SuSE or apt on Ubuntu) usually stores its configuration files in /etc/ and binary files in /sbin/ and also stores a link in my $PATH, so i can run in just by typing proftpd (without /sbin).

The huge advantage of packages installed via package system, i think, is easy uninstall process. I'd like to be able to uninstall compiled packages also easy.

I think i could be able to create some batch file, which I'll be able to use like this:

uninstall --package=proftpd

And my script will find all proftpd files in usuall paths (/etc, /sbin) and remove it using rm.

Is there any best practices, where to store all these files, or are there any (dis)advantages of my first example (--prefix=/usr/local/proftpd)?

I really don't think, that it's nice to have 2 paths with configuration files and binary files, but maybe I'm misunderstanding the basic principals of Linux... :-)

View 4 Replies View Related

General :: Error While Compiling Binutils 2.15.92 Package?

Feb 11, 2011

I am trying to compile binutils 2.15.92 package on RHEL 5.4, which is required with gcc 3.4.6 version. I have already installed gcc 3.4.6 on /opt/gcc.

I have given the --prefix as /opt/binutils during compilation. I have all flex, bison and m4 packages installed.

I am getting following error during compilation..

Code:
root/binutils/binutils-2.15.92.0.2/binutils/bucomm.c:425: warning: the use of `mktemp' is dangerous, better use `mkstemp'
ar.o: In function `mri_emul':
ar.c:(.text+0x9f2): undefined reference to `yyparse'

[Code]....

View 7 Replies View Related

General :: File Pk11func.h Not Found While Compiling ECryptfs On Slackware 13.1

Apr 26, 2011

I'm trying to install eCryptfs in my new Slackware system. ./configure runs pretty well, without errors, but when a try to run `make` i got this:

[...]
main.c:25:22: error: pk11func.h: No such file or directory
main.c: In function 'do_hash':
main.c:77: error: 'SECStatus' undeclared (first use in this function)

[code]....

But i do have 3 copies of pk11func.h under:

/usr/include/seamonkey-2.0.4/pk11func.h
/usr/include/seamonkey-2.0.4/nss/pk11func.h
/usr/include/nss/pk11func.h

What's going wrong?, why the compiler can't find the header if it's installed? I don't have too much experience compiling package, and it's the first time i try to it in Slackware.

View 1 Replies View Related

Ubuntu :: Uninstall Package That Install From Compiling Tar Gz File

Sep 16, 2010

1. How to uninstall package that install from compiling tar gz file

2. how to stop some service ?

View 4 Replies View Related

Debian :: Alsa - No Mixer Elems Found - Get No Sound After Compiling Kernel

Oct 18, 2010

After compileing my kernel i get no sound. I tried : alsaconf - choose my sound card - everything is all right, but when i try alsamixer i get : No mixer elems found

[Code]....

View 3 Replies View Related







Copyrights 2005-15 www.BigResource.com, All rights reserved