summaryrefslogtreecommitdiff
path: root/autogen.sh
Commit message (Collapse)AuthorAgeFilesLines
* Build Autotools CI tests out of source tree (VPATH)Nick Wellnhofer2022-04-211-4/+3
|
* Fix check for libtool in autogen.shNick Wellnhofer2022-01-161-1/+2
| | | | libtoolize is named glibtoolize on some macOS systems.
* Change dir to $THEDIR after ACLOCAL_PATH checkVitaly Buka2018-08-231-2/+2
| | | autoreconf creates aclocal.m4 in $srcdir
* Improve error message if pkg.m4 couldn't be foundNick Wellnhofer2018-08-191-0/+9
| | | | | | | | | Check whether aclocal.m4 contains the pkg.m4 macro package after running autoreconf and print a more helpful error message. Thanks to 林博仁 (Buo-ren Lin) for the initial patch. Closes: #21
* Don't instruct user to run make when autogen.sh failed林博仁(Buo-ren Lin)2018-08-191-2/+7
| | | | | | | Currently the autogen script will always tell user to run make even when the configure script failed, this patch changes the behavior to only show this message when the configure script terminates without error.
* More updates and cleanups on autotools and MakefilesDaniel Richard G2012-08-171-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Makefile.am, example/Makefile.am: * Replaced the obsolete INCLUDES variable with AM_CPPFLAGS/AM_CFLAGS acinclude.m4: * autoupdate replaced AC_FD_CC with AS_MESSAGE_LOG_FD autogen.sh: * Added -Wall to the autoreconf invocation, which turned up a whole slew of warnings that are fixed by this patch configure.in: * Most of the changes are due to autoupdate, with subsequent manual tidying * Note that autoupdate bumped the AC_PREREQ version from 2.59 to 2.68. If you normally use an older version of Autoconf, and everything works fine if you comment out that directive, feel free to bump down the version accordingly. * Ensure that #include directives in C fragments always have no whitespace to the left of the '#' mark, as some preprocessors need that to be in the first column example/Makefile.am: * Don't need DEPS * Use plain LDADD instead of LDADDS; if all programs in this file need to link against the same set of libraries, then this is all you need
* autogen.sh: Fix typoJavier Jardón2012-04-021-1/+1
|
* Add --system support to autogen.shDaniel Veillard2012-02-291-10/+19
|
* autogen: Only check for libtoolizeColin Walters2012-01-271-1/+1
| | | | The system /usr/bin/libtool may not be in all installations.
* autogen.sh: Honor NOCONFIGURE environment variableColin Walters2012-01-051-4/+6
| | | | See http://people.gnome.org/~walters/docs/build-api.txt
* Autogen.sh needs to create m4 directoryRob Richards2010-04-261-0/+4
| | | | * autogen.sh: create m4 directory if not already existing
* use autoreconf in autogen.shDaniel Veillard2010-03-101-4/+6
| | | | | | | * autogen.sh: use autoreconf instead of the direct set of calls for auto* updates * INSTALL INSTALL.libxml2: migrate the INSTALL to INSTALL.libxml2 since autoreconf copies a new INSTALL
* Upgrade some of the configure and autogenDaniel Veillard2010-03-091-1/+1
| | | | Based on Roumen Petrov suggestions
* took away the requirement for automake-1.4, changed the messages forWilliam M. Brack2003-08-131-14/+9
| | | | | | | | | | | | * autogen.sh: took away the requirement for automake-1.4, changed the messages for getting auto* tools to current gnu pages. * configure.in, configure: added check for Linux Dec alpha requiring -ieee flag, fixed test for ipv6 * trionan.c: fixed problem for compiling on Linux Dec alpha using native compiler * doc/Makefile.am: implemented regeneration of win32/libxml2.def.src whenever libxml2-api.xml is changed.
* update error message for missing automakeHavoc Pennington2002-08-221-3/+8
| | | | | | 2002-08-22 Havoc Pennington <hp@pobox.com> * autogen.sh: update error message for missing automake
* hardcode aclocal-1.4/automake-1.4 so that users with both automake 1.6 andHavoc Pennington2002-08-181-3/+3
| | | | | | | | | | 2002-08-18 Havoc Pennington <hp@pobox.com> * autogen.sh: hardcode aclocal-1.4/automake-1.4 so that users with both automake 1.6 and 1.4 installed get the right automake. Means compilation from CVS will now require the latest automake 1.4 release, or manually creating symlinks called "automake-1.4" and "aclocal-1.4"
* should finish the migration of exported includes into a realDaniel Veillard2001-06-231-1/+1
| | | | | | | | * configure.in: should finish the migration of exported includes into a real include/libxml in CVS, at least for CVS users. * removed the exported headers, added in include/libxml (as well as xmlversion.h.in). Daniel
* Revert directory structure changesOwen Taylor2001-02-231-1/+1
|
* moved to libxml directory - this allow simplify automake/autoconf. NowCET 2001 Tomasz Koczko2001-02-231-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | Thu Feb 23 02:03:56 CET 2001 Tomasz Koczko <kloczek@pld.org.pl> * *.c *.h libxml files: moved to libxml directory - this allow simplify automake/autoconf. Now isn't neccessary hack on am/ac level for make and remove libxml symlink (modified for this also configure.in and main Makefile.am). Now automake abilities are used in best way (like in many other projects with libraries). * include/win32config.h: moved to libxml directory (now include directory isn't neccessary). * Makefile.am, examples/Makefile.am, libxml/Makefile.am: added empty DEFS and in INCLUDES rest only -I$(top_builddir) - this allow minimize parameters count passed to libtool script (now compilation is also slyghtly more quiet). * configure.in: simplifies libzdetestion - prepare separated variables for keep libz name and path to libz header files isn't realy neccessary (if someone have libz installed in non standard prefix path to header files ald library can be passed as: $ CFALGS="-I</libz.h/path>" LDFLAGS="-L</libz/path>" ./configure * autogen.sh: check now for libxml/entities.h. After above building libxml pass correctly and also pass "make install DESTDIR=</install/prefix>" from tar ball generated by "make dist". Seems ac/am reorganization is finished. This changes not touches any other things on *.{c,h} files level.
* Work done on the plane, ready to release libxml2-2.0.0, DanielDaniel Veillard2000-04-031-5/+5
|
* *** empty log message ***Daniel Veillard1999-02-061-2/+2
|
* Fix Sopwith's autogen.sh hack. Dunno exactly what he was trying to do here ↵Arturo Espinosa1998-12-281-2/+6
| | | | though
* allow srcdir != builddir, or somesuch.FOR_GNOME_0_99_1Elliot Lee1998-12-231-7/+10
| | | | allow srcdir != builddir, or somesuch.
* allow setting $OBJ_DIR to specify building in a subdirElliot Lee1998-11-201-1/+7
|
* Patched autogen.sh to to autoupdate libtool and automake config files, Daniel.Daniel Veillard1998-10-011-2/+3
|
* Release 0.2, 80% rewrite, nothing left intact ... DanielDaniel Veillard1998-08-131-5/+5
|
* )Christopher Blizzard1998-07-241-1/+1
| | | | * We're compiling gnome-xml, not GLIB. :)
* Added the XML code developped at W3C, Daniel.Daniel Veillard1998-07-241-0/+50