-
Notifications
You must be signed in to change notification settings - Fork 26
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Installation fails on Ubuntu 14.04 #19
Comments
Possible workaround: It is looking for an If you reach successful configuration this way, you can (and should) remove the symlink ( |
Good idea, this helped. It didn't work right away, but it was easy enough to figure out where to go from here. |
I was also facing this issue. This is how I fixed it. I think the problem is related to running ./configure without sudo. The EASIEST solution then is to delete all the old files and start over like so: wget https://github.com/mysqludf/lib_mysqludf_preg/archive/testing.zip |
I'm still not sure what causes this, but it can be corrected by running "aclocal; automake;" from the same directory 'configure' is run in. |
No, running "aclocal; automake;" does not fix anything: root@dev:~/source/lib_mysqludf_preg# ./configure root@dev:~/source/lib_mysqludf_preg# aclocal; automake; root@dev:~/source/lib_mysqludf_preg# make install |
This gets things further along: ln -s /usr/bin/automake-1.14 /usr/bin/automake-1.13 root@dev:~/source/lib_mysqludf_preg# make install root@dev:~/source/lib_mysqludf_preg# automake --add-missing root@dev:~/source/lib_mysqludf_preg# make install |
The following procedure seemed to solve the problem for me
|
@proditis Thanks it worked. This was the entire procedure (after first installing MySQL): sudo apt-get install libmysqlclient-dev libpcre3-dev
sudo apt-get install libtool automake autoconf autogen
sudo git clone https://github.com/mysqludf/lib_mysqludf_preg.git
cd lib_mysqludf_preg
sudo aclocal
sudo automake --add-missing
sudo ./configure
sudo make
sudo make install
sudo make MYSQL="mysql -p" installdb
sudo make test |
@CMCDragonkai glad it worked out for you. Out of curiosity, why did you perform all the commands with |
I have some complicated permissions. So I couldn't be bothered figuring out the minimum, and just sudoed everything. |
great, thanks a lot. I'm making a docs/INSTALL.debian with all those details from the issues to contribute to the project and wanted to make sure the steps are ok. |
Use this answer: http://stackoverflow.com/a/3205400/1556249 |
I'm getting an error
after Any clue? |
This one did the trick only partially as |
Here is what worked fine for me. A
|
I can confirm that the above (jogaco, proditis, ...) works on Ubuntu 15.10 (and it should be installed as root). On a Gentoo dist (Apr 2016) I had to run an
|
I'm trying to install this on Ubuntu 14.04 and keep getting the message
WARNING: 'aclocal-1.13' is missing on your system.
It looks like I have 1.14 installed, and there are no available packages to install 1.13. Any ideas?The text was updated successfully, but these errors were encountered: