Skip to main content

Questions tagged [autoconf]

1 vote
1 answer
317 views

Is this the correct forum? I am running ./bootstrap for a program called Qucs and it complains about VERSION Running aclocal... Running automake... Running autoconf... bootstrapping /home/lasse/...
Lasse Karagiannis's user avatar
1 vote
1 answer
1k views

I'm trying to compile a complex numerical simulation software. After running autoconf and then ./configure ... (with some other flags), I see the following in the output: checking for malloc in -...
adigitoleo's user avatar
4 votes
2 answers
2k views

I am trying to build using ./configure. I have Three include directories -I/path1/include -I/path2/include -I/path3/include Two link directories -L/path1/lib -L/path2/lib Two -l flag options -...
Sap BH's user avatar
  • 45
0 votes
1 answer
78 views

The autoconf AX_CHECK_X86_FEATURES will test for -mavx, -mavx2, etc and add it to CFLAGS. What is the right way to propagate it to CXXFLAGS too? Is it "clean" to always add CFLAGS to ...
MappaM's user avatar
  • 175
3 votes
2 answers
9k views

I'm trying to build xf86-input-libinput from source to apply a patch. When I follow the recipe given here at the step autoreconf -vif I get an error saying: configure.ac:41: error: must install xorg-...
Cornelius Roemer's user avatar
1 vote
0 answers
676 views

I have tool version managers in the Ruby and react-native worlds that (underneath the layers of abstraction) end up building software like Ruby from source using a fairly mundane: ./configure ./make ./...
iftheshoefritz's user avatar
0 votes
1 answer
88 views

Is it possible to get autoconf based build systems to show the libraries it found and will link against, before building the software? As-is my current workflow is: $ cd tps-source-dir $ ./configure --...
pavon's user avatar
  • 255
1 vote
1 answer
500 views

Running macOS Catalina 10.15.6. My question is more related to compilation with GNU tools, so it may be more suited for a different SE site — I'll be happy to close and ask somewhere else if that's ...
Adam Ronald's user avatar
-1 votes
2 answers
2k views

I am trying to install avro-keyboard on Kali Linux but I am getting this error message on folowing this step from the tutorials: root@al-ajal:~# apt-get install git ibus libibus-1.0-dev automake ...
Raiyan Ahmad Saadi's user avatar
1 vote
1 answer
2k views

My ISP's DHCPv6 is broken. As a work around I figured I'd try IPv6 SLAAC since I do see router advertisements coming in on my WAN interface. I believe I've configured accept_ra, accept_ra_pinfo, and ...
Huckle's user avatar
  • 1,097
0 votes
1 answer
281 views

In my configure.ac script, I have a basic check for X11: PKG_CHECK_MODULES(X11, x11 > 1.6.4, [AC_DEFINE(HAVE_X11)], []) If this fails, I still want to continue. I thought since I added a blank ...
user8908459's user avatar
0 votes
1 answer
128 views

./configure script outputs checking if and checking whether on execution how the two results are different for checking conditions?
guest's user avatar
  • 7
4 votes
1 answer
807 views

I am trying to understand the following code snippet. host_cpu='i386' case "$host_cpu" in i[[3456]]86) echo "host_cpu=i386" ;; x86_64) echo "host_cpu=x86_64" ;; *) ...
supmethods's user avatar
1 vote
2 answers
505 views

A great deal of time is lost at the time of ./configure; especially when dependencies are missing and the subsequent calling thereof. I've read many topics on this subject citing that caching the ...
Zhro's user avatar
  • 2,861
3 votes
1 answer
873 views

When I run sudo make install on a compiled package from the GNU archive, it uses mkdir -p to create the destination directories. I'd prefer it to use mkdir -p -m 0755 or install -d -m 0755 instead in ...
EnzoR's user avatar
  • 1,023

15 30 50 per page