LinuxQuestions.org

LinuxQuestions.org (/questions/)
-   Programming (https://www.linuxquestions.org/questions/programming-9/)
-   -   Proper syntax for ACLOCAL_FLAGS variable (https://www.linuxquestions.org/questions/programming-9/proper-syntax-for-aclocal_flags-variable-827532/)

Kenny_Strawn 08-20-2010 07:00 PM

Proper syntax for ACLOCAL_FLAGS variable
 
I am trying to build Cluttersmith from source and it's looking for gobject-introspection >= 1.0 for dependencies. No problem; just pull gobject-introspection off of GNOME's git repository. So now I have to build that from source. Just one problem: It depends on gtk-doc! No worries; build that from source. Obviously, gtk-doc built correctly.

Just one problem: When I try to ./configure gobject-introspection, I get an error (see this screenshot of my Ubuntu terminal for details). And when I try to run echo $ACLOCAL_FLAGS I get nothing.

What I need to know is: What is a valid value for the ACLOCAL_FLAGS variable? And do I need to edit my ~/.bashrc or ~/.profile (or their equivalents in /etc) to use it full force? Please help me.

grail 08-21-2010 11:57 AM

Not sure if this helps kenny, but there does seem to be a repository for this:

https://launchpad.net/~bpeeluk/+archive/cluttersmith

gnashley 08-21-2010 12:00 PM

Here's an example:
ACLOCAL_FLAGS "-I /usr/local/share/aclocal/"
While possible to put that in .bashrc or siilar file, it would then always be in effect. I'd just exposrt that before running configuration: export ACLOCAL_FLAGS "-I /usr/local/share/aclocal/"
./configure .....

Kenny_Strawn 08-21-2010 03:12 PM

Quote:

Originally Posted by gnashley (Post 4073402)
Here's an example:
ACLOCAL_FLAGS "-I /usr/local/share/aclocal/"
While possible to put that in .bashrc or siilar file, it would then always be in effect. I'd just exposrt that before running configuration: export ACLOCAL_FLAGS "-I /usr/local/share/aclocal/"
./configure .....

Thank you. I was able to do it using something similar to that:

Code:

export ACLOCAL_FLAGS="-I /usr/local/share/aclocal"
I used '=' instead of a space.

Kenny_Strawn 08-21-2010 03:22 PM

Just one more problem: Now it's looking for a package called 'FFI' and apparently there's no package in the Ubuntu repository by that regex.

Kenny_Strawn 08-22-2010 01:30 AM

Quote:

Originally Posted by Kenny_Strawn (Post 4073543)
Just one more problem: Now it's looking for a package called 'FFI' and apparently there's no package in the Ubuntu repository by that regex.

Anyone?

lmaddox 10-15-2017 06:15 AM

FFI
 
Do you mean libFFI (foreign function interface)?

astrogeek 10-15-2017 01:24 PM

Quote:

Originally Posted by lmaddox (Post 5770184)
Do you mean libFFI (foreign function interface)?

While helpful replies are always appreciated, you have woken a thread which has been quiet for more than seven years.

If you are experiencing a similar problem and would like a continuing discussion you are encouraged to start your own thread in order to get the attention of currently active members.


All times are GMT -5. The time now is 01:34 AM.