Sponsored Content
Operating Systems BSD You have another version of autoconf... Post 302335037 by userunx on Friday 17th of July 2009 05:58:09 AM
Old 07-17-2009
You have another version of autoconf...

Hi gurus,

I'm a FreeBSD noob who has generated an error, searched everywhere for solutions, and has just joined this forum (and searched it) hoping you can help.

I really need to get mysql server installed again ASAP, and preferably with Sphinx as a storage engine, or my web app in dev is delayed.

The error, is:

aclocal.m4:16: warning: this file was generated for autoconf 2.63.
You have another version of autoconf... use the procedure documented by the package, typically 'autoreconf'.

This is Automake 1.9.6, but the definition used by this AM_INIT_AUTOMAKE comes from Automake 1.10.2.
You should recreate aclocal.m4 with aclocal and run automake again. client/Makefile.am: required file './compile' not found.
Error code 63

I get this when trying to reinstall mysql50- server (or 51) after applying a patch to enable Sphinx as a storage engine in mysql server, as per the instructions on this page:

Enabling the Sphinx Storage Engine in MySQL via FreeBSD Ports


Specifically, here's what I did to get the error.

1. 'make deinstall clean' in the /usr/ports/databases/mysql50-server to wipe the previously installed version.
2. applied the patch, as per the instructions on the above page, which was successful.
3. 'make install clean' mysql50-server.

If it helps at all, FreeBSD is version 6.1 and I had previously done a portsnap fetch/update/extract.

I have found an online book on autotools -http://sources.redhat.com/autobook/ , and some unanswered posts on related topics on this forum, but nothing that hints at how I would fix this problem. The book is probably great - but I don't have long enough to learn it.

I hope I have provided enough information, but please post any and all necessary questions.

Thanks
 

4 More Discussions You Might Find Interesting

1. Programming

automake/autoconf problem

hi, i'm fairly new with automake and i ran into a problem that i have found no solution for. so i have a setup where i don't want all the output files generated by the compiler and alike in my src directory, instead i created a build/unix folder and i have build/unix/config set for... (0 Replies)
Discussion started by: Akimaki
0 Replies

2. Shell Programming and Scripting

using automake and autoconf with C++

hi, I have written the Makefile.am and autoconf.ac files and am looking to build my project by providing the following commands: $autoreconf -f -i -m $./configure both of the above work fine, but when I give the make command, I get the following error: make all-am make: Entering directory... (0 Replies)
Discussion started by: bacpp
0 Replies

3. Programming

Using autoconf and automake. aclocal-1.11: command not found

Hi, I'm trying to make my source "buildable". autoconf and automake tools are used. configure and Makefile.in files are created successfully. configure.ac: AC_INIT() AC_CONFIG_SRCDIR() AC_PROG_CXX AM_INIT_AUTOMAKE(main, 0.1) AC_CHECK_HEADERS()... (0 Replies)
Discussion started by: Vourhey
0 Replies

4. UNIX for Advanced & Expert Users

AutoConf,-Make

Heyas I'm trying to rewrite the install procedure of TUI, applying the standards of the Autotools. Inofficial: unix - Why always ./configure; make; make install; as 3 seperate steps? - Stack Overflow autoconf automake tutorial Official: ... (4 Replies)
Discussion started by: sea
4 Replies
MYSQL_TZINFO_TO_S(1)					       MySQL Database System					      MYSQL_TZINFO_TO_S(1)

NAME
mysql_tzinfo_to_sql - load the time zone tables SYNOPSIS
mysql_tzinfo_to_sql arguments DESCRIPTION
The mysql_tzinfo_to_sql program loads the time zone tables in the mysql database. It is used on systems that have a zoneinfo database (the set of files describing time zones). Examples of such systems are Linux, FreeBSD, Solaris, and Mac OS X. One likely location for these files is the /usr/share/zoneinfo directory (/usr/share/lib/zoneinfo on Solaris). If your system does not have a zoneinfo database, you can use the downloadable package described in Section 9.6, "MySQL Server Time Zone Support". mysql_tzinfo_to_sql can be invoked several ways: shell> mysql_tzinfo_to_sql tz_dir shell> mysql_tzinfo_to_sql tz_file tz_name shell> mysql_tzinfo_to_sql --leap tz_file For the first invocation syntax, pass the zoneinfo directory path name to mysql_tzinfo_to_sql and send the output into the mysql program. For example: shell> mysql_tzinfo_to_sql /usr/share/zoneinfo | mysql -u root mysql mysql_tzinfo_to_sql reads your system's time zone files and generates SQL statements from them. mysql processes those statements to load the time zone tables. The second syntax causes mysql_tzinfo_to_sql to load a single time zone file tz_file that corresponds to a time zone name tz_name: shell> mysql_tzinfo_to_sql tz_file tz_name | mysql -u root mysql If your time zone needs to account for leap seconds, invoke mysql_tzinfo_to_sql using the third syntax, which initializes the leap second information. tz_file is the name of your time zone file: shell> mysql_tzinfo_to_sql --leap tz_file | mysql -u root mysql After running mysql_tzinfo_to_sql, it is best to restart the server so that it does not continue to use any previously cached time zone data. COPYRIGHT
Copyright 2007-2008 MySQL AB, 2008-2010 Sun Microsystems, Inc. This documentation is free software; you can redistribute it and/or modify it only under the terms of the GNU General Public License as published by the Free Software Foundation; version 2 of the License. This documentation is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with the program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA or see http://www.gnu.org/licenses/. SEE ALSO
For more information, please refer to the MySQL Reference Manual, which may already be installed locally and which is also available online at http://dev.mysql.com/doc/. AUTHOR
Sun Microsystems, Inc. (http://www.mysql.com/). MySQL 5.1 04/06/2010 MYSQL_TZINFO_TO_S(1)
All times are GMT -4. The time now is 09:26 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy