Questions tagged [make]

make is an old Unix utility to build projects. The basic principle it uses is to track dependencies between targets (which are often files).

85 questions
2
votes
1 answer

/usr/bin/ld: cannot find -lc

[root@localhost chkrootkit-0.49]# make sense gcc -DHAVE_LASTLOG_H -o chklastlog chklastlog.c gcc -DHAVE_LASTLOG_H -o chkwtmp chkwtmp.c chkwtmp.c: In function âmainâ: chkwtmp.c:95: warning: incompatible implicit declaration of built-in function…
2
votes
6 answers

Can't get Apache 2.2.21 to compile with OpenSSL support

Alright -- having a bad couple days here compiling Apache 2.2.21 on CentOS 5.7 with the following configure commands: ./configure --enable-ssl=shared --with-ssl=/usr/local/openssl I've compiled from source OpenSSL 1.0.0e from source: ./config…
angstwad
  • 31
  • 1
  • 1
  • 4
2
votes
2 answers

How to install RVM for single user in Ubuntu without hosing permissions?

I'm trying to setup RVM to execute in single user mode on Ubuntu, but can't without opening up permissions make, configure etc. Any suggestions? RVM installed via bash < <(curl -s https://rvm.beginrescueend.com/install/rvm), all apt repository…
Allyl Isocyanate
  • 299
  • 1
  • 4
  • 9
2
votes
3 answers

Best hardware/software solution for parallel makes?

We've got a Linux-based build system in which a build consists of many different embedded targets (with correspondingly different drivers and featuresets enabled), each one built with another single main source tree. Rather than try to convert our…
Allan Anderson
  • 181
  • 1
  • 5
2
votes
1 answer

Error when make "make install" PHP WebDav

I'm having issues install PHP WebDAV onto Fedora8 - after downloading and running make install I get the following errors: [root@ip-18-192-114-35 dav]# make install /bin/sh /tmp/dav/libtool --mode=compile gcc -I. -I/tmp/dav -DPHP_ATOM_INC…
kron
  • 725
  • 2
  • 6
  • 7
2
votes
1 answer

How to easily Install "make" utility on Sun 5.10 server?

I have this machine, which doesn't have installed "make" utility, and I need it in order to install other utilities, have you folks done this before on a Solaris 10 machine? This is the output I got with "uname -a" command: SunOS qsunx02 5.10…
Edgar Catalán
2
votes
3 answers

Building Emacs.app (OS X) – make bootstrap or not?

BACKGROUND: I've downloaded Emacs from Github's Emacs mirror (commit f92c4be63204ed0bd914). Using Mac OS X 10.6.4, I'm now about to compile and install Emacs.app. MY QUESTION: The nextstep/INSTALLATION doc states nothing about make boostrap.…
Henrik
  • 167
  • 1
  • 1
  • 7
1
vote
1 answer

OpenSSL error when compiling Apache HTTPD - undefined reference to `SSL_in_init'

We run Apache HTTPD as a production load balancer using mod_ssl with OpenSSL. I'm trying to recompile Apache HTTPD on the latest version (2.4.41) and am encountering the following error when running make. I'll include the error, but if more of the…
DGoodman
  • 33
  • 1
  • 5
1
vote
2 answers

RHEL 7 Server Network not working after Install Python3.6 from Source

I have a RHEL server which by default was running Python2.7 and Python3.4 I needed to use Python3.6 so I downloaded it and built it from source. However, now I seemed to have broken my network connectivity. I can still ssh into the box but none of…
Joe
  • 151
  • 10
1
vote
1 answer

How to configure Heimdal Kerberos to use OpenLDAP?

From http://www.h5l.org/manual/HEAD/info/heimdal/Using-LDAP-to-store-the-database.html#Using-LDAP-to-store-the-database A current release of Heimdal, configured with --with-openldap=/usr/local The OpenBSD package of Heimdal is not configured with…
Neil McGuigan
  • 204
  • 4
  • 14
1
vote
2 answers

Cannot install nginx from source

I'm trying to install nginx 1.13.1 from source on Ubuntu 16.04. My configure command is the following: ./configure --with-cc-opt='-g -O2 -fPIE -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2'…
Florian
  • 33
  • 4
1
vote
1 answer

Solaris: Make fails for Apache 2.4.23 mod_jk.so, for ColdFusion 10

So a bit of history, skip the following section if you want to get to the current problem. We're upgrading from Apache 2.2.20 to Apache 2.4.23 on a SPARC Solaris 10 environment. This server is meant as a webhosting server, and it hosts several…
J. Doe
  • 11
  • 1
1
vote
1 answer

Installing locally python3 on AIX

I'm trying to locally install python3 (3.5.2) interpreter on AIX 7.1 I used this to configure, which runs ok CC=gcc OPT="-O2" ./configure --enable-shared --prefix=$HOME/usr/local but I get error while doing make…
J91321
  • 156
  • 6
1
vote
1 answer

Trouble Installing PEAR from Source, can't find libclntsh.dylib.10.1

I was asked to look over a laptop (OS X, 10.5) that was setup for a new developer, and I discovered that the pear executable was missing. This shop sets PHP up from source, so I navigated to the source tree where they'd compiled things and tried a…
Alan Storm
  • 448
  • 5
  • 15
1
vote
1 answer

Compiling in linux to specific directory and then package the software

I need to compile a software from the sources. ./config && make && make install On that, it does install a bunch of stuff everywhere(Libraries, etc) But the thing is, that I also need to copy that software after to another set of machines that I…
yield
  • 731
  • 1
  • 8
  • 24