Questions tagged [autoconf]

23 questions
4
votes
1 answer

How do I fix these M4 macro errors?

I am trying to compile mate-desktop but when I run ./autogen.sh the script terminates with these errors Checking for required M4 macros... libtool.m4 not found glib-gettext.m4 not found intltool.m4 not found pkg.m4 not found gtk-doc.m4 not…
j0h
  • 14,548
  • 28
  • 104
  • 178
4
votes
1 answer

does "make" recompile all of the files or just changed ones

suppose that you have a program which you installed that from source by make command . That program include files a.cc, b.cc, c.cc, d.cc and ... . Now I changed a.cc a bit. In order to enable the changes I should compile the program again by make…
Mohammad Reza Rezwani
  • 10,076
  • 35
  • 91
  • 127
3
votes
1 answer

IPv6 SLAAC (ICMPv6 Router Advertisments) are ignored by wlan1 interface

I installed 15.04 on my Thinkpad W520. However, I'm not able to get IPv6 working on wlan1 interface: ifconfig wlan1 wlan1 Link encap:Ethernet HWaddr 8c:70:5a:d2:65:bc inet addr:10.0.1.61 Bcast:10.0.1.255 Mask:255.255.255.0 …
Yuri
  • 33
  • 1
  • 3
3
votes
1 answer

Autoreconf error: failed with exit status: 1

I try to install mp4fpsmod on Linux 4.19.104+ x86_64 Ubuntu 18.04.3 LTS in Colab. To reproduse please copypaste these three lines into a Colab cell and hit shift+enter: !git clone -qqq https://github.com/nu774/mp4fpsmod.git > /dev/null !sudo apt-get…
F. Vosnim
  • 131
  • 1
  • 1
  • 3
2
votes
1 answer

checkinstall / make does not work for the program razercfg that I wish to install

My goal is to change my mouse DPI. So any less frustrating solution is also welcome. I've already searched and read through the other topics about razercfg & many others trying to figure out how to not get these errors but I'm new to Linux and even…
user3776022
  • 175
  • 1
  • 2
  • 7
2
votes
1 answer

Error in configure.ac file while running aclocal

I am following https://robots.thoughtbot.com/the-magic-behind-configure-make-make-install to learn how to use autoconf and automake to create the configure script and Makefile. Below is the content of configure.ac file: AC_INIT ([helloworld], [0.1],…
sps
  • 437
  • 3
  • 9
  • 17
2
votes
1 answer

How to convert Makefile.am to Makefile.in?

I'm trying to install gnuplot 5.3 from github. I'm running aclocal autoheader autoconf automake inside the package location. This gives an error because automake is looking for Makefile.in and I have a bunch of Makefile.am files, supposedly…
Juan David
  • 35
  • 6
1
vote
1 answer

'autoconf' 2.50 not found when compiling 'mate-common' 1.15.0

I wanted to compile mate 1.15 on Ubuntu 16.04, but when I run ./autogen.sh in mate-common-1.15.0 it outputs this : checking for autoconf >= 2.53... testing autoconf2.50... not found. testing autoconf... found 2.69 The rest works well. So I searched…
EliottNo
  • 11
  • 2
1
vote
1 answer

autoconf: error: no input file

I am trying to install a program I downloaded, linpac. I opened the README, and it claimed all I have to do is ./confugure;make;make install but I am stuck on the ./configure because there is no configure file. There is a configure.ac file, so I…
Skyler 440
  • 253
  • 1
  • 5
  • 14
1
vote
1 answer

Trying to Build and Install apinger

I am running 14.04 server (minimal install) and I am trying to build apinger (https://github.com/Jajcus/apinger). Here is a log of what I get when I run ./autogen.sh: The first couple of lines point to some autoconf lib that seems to not exist on my…
LaikaN57
  • 11
  • 5
1
vote
0 answers

Unable to get both RA and DHCP6 address on a particular nic

My host is connected to a network that is connected to Router and DHCP6 server. radvd.conf setting on the router is given below: interface eth1 { AdvSendAdvert on; AdvManagedFlag on; AdvOtherConfigFlag off; prefix fc00:192:168:30::/64 …
Shruti Basu
  • 111
  • 1
1
vote
1 answer

Configure requires a working autoconf/pkg-config

I need to update libdmtx and dmtx-utils on Ubuntu 18.04. Both these packages aren't installed through apt. I compiled and installed libdmtx with prefix /usr/local/stow/libdmtx-0.7.7 and created all the required symlinks inside /usr/local using stow…
Claudio
  • 111
  • 1
1
vote
1 answer

How to install Celestia on 19.10

Celestia still doesn't have binaries for 19.10 The other option is to build from source. I've downloaded the source of 1.6.2-beta2 from github. Installed needed packages written here. plus gettext said here. so the needed packages was: sudo apt…
Mohammad Etemaddar
  • 1,366
  • 4
  • 18
  • 31
0
votes
0 answers

Problem with autoreconf

I'm having a problem when trying to build the library libmatheval (problem is reoccurring regardless of version chosen). The documentation says that before building and installing it I should run autoreconf -fi, which is causing an issue. The…
0
votes
4 answers

./configure doesn't work

In order to install programs on Ubuntu, I keep seeing these instructions: tar -xzf archive-name.tar.gz cd archive-name ./configure make sudo make install However, this is always the result (terminal and the folder on my screen): Obviously, I did…
1
2