mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-09 18:31:04 +00:00
Changes to make distcheck work, slight cleanup of autoconf/make initialization
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@10680 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
parent
7a71c7bda0
commit
a5b1022b9f
@ -1,3 +1,11 @@
|
||||
2005-12-23 Lars Gullik Bjonnes <larsbj@lyx.org>
|
||||
|
||||
* autogen.sh (AUTOMAKE): add --force-missing to args.
|
||||
|
||||
* configure.ac: add am args to AM_INIT_AUTOMAKE, modify AC_INIT to
|
||||
contain tar name as well, use AC_CONFIG_HEADERS instead of
|
||||
AM_CONFIG_HEADER, remove unused variable VERSION
|
||||
|
||||
2005-12-07 Jean-Marc Lasgouttes <lasgouttes@lyx.org>
|
||||
|
||||
* configure.ac: add to SOCKET_LIBS the libraries required by
|
||||
|
@ -2,7 +2,7 @@
|
||||
|
||||
ACLOCAL="aclocal -I ${PWD}/m4"
|
||||
AUTOHEADER="autoheader"
|
||||
AUTOMAKE="automake -a -c --foreign"
|
||||
AUTOMAKE="automake --add-missing --copy --force-missing --foreign"
|
||||
AUTOCONF="autoconf"
|
||||
ACINCLUDE_FILES="lyxinclude.m4 libtool.m4 xforms.m4 qt.m4 gtk--.m4 gnome--.m4 gnome.m4 spell.m4 cygwin.m4 pkg.m4"
|
||||
|
||||
|
@ -1,3 +1,11 @@
|
||||
2005-12-23 Lars Gullik Bjonnes <larsbj@lyx.org>
|
||||
|
||||
* common.am (AUTOMAKE_OPTIONS): deleted, we now setupt am args
|
||||
from configure.ac
|
||||
|
||||
* lyxinclude.m4: use AC_PACKAGE_VERSION instead of VERSION, use
|
||||
AC_PROGLIB_TOOL instead of AM_PROG_LIBTOOL
|
||||
|
||||
2005-10-12 Jean-Marc Lasgouttes <lasgouttes@lyx.org>
|
||||
|
||||
* lyxinclude.m4 (LYX_USE_PACKAGING): set PACKAGE depending on
|
||||
|
@ -1,5 +1,3 @@
|
||||
AUTOMAKE_OPTIONS = foreign dist-bzip2
|
||||
|
||||
CLEANFILES = pch.h.gch
|
||||
|
||||
DISTCLEANFILES= pch.h.gch.dep *.orig *.rej *~ *.bak core
|
||||
|
@ -8,14 +8,14 @@ dnl Usage LYX_CHECK_VERSION Displays version of LyX being built and
|
||||
dnl sets variables "lyx_devel_version" and "lyx_prerelease"
|
||||
AC_DEFUN([LYX_CHECK_VERSION],[
|
||||
echo "configuring LyX version $VERSION"
|
||||
if echo "$VERSION" | grep 'cvs' >/dev/null ; then
|
||||
if echo AC_PACKAGE_VERSION | grep 'cvs' >/dev/null ; then
|
||||
lyx_devel_version=yes
|
||||
AC_DEFINE(DEVEL_VERSION, 1, [Define if you are building a development version of LyX])
|
||||
echo "WARNING: This is a development version. Expect bugs."
|
||||
else
|
||||
lyx_devel_version=no
|
||||
fi
|
||||
if echo "$VERSION" | grep 'pre' > /dev/null ; then
|
||||
if echo AC_PACKAGE_VERSION | grep 'pre' > /dev/null ; then
|
||||
lyx_prerelease=yes
|
||||
echo "WARNING: This is a prerelease. Be careful and backup your documents."
|
||||
else
|
||||
@ -637,7 +637,7 @@ ac_save_cc=$CC
|
||||
ac_save_cflags="$CFLAGS"
|
||||
CC=$CXX
|
||||
CFLAGS="$CXXFLAGS"
|
||||
AM_PROG_LIBTOOL dnl for libraries
|
||||
AC_PROG_LIBTOOL dnl for libraries
|
||||
CC=$ac_save_cc
|
||||
CFLAGS="$ac_save_cflags"
|
||||
])
|
||||
|
10
configure.ac
10
configure.ac
@ -1,16 +1,16 @@
|
||||
dnl Process with autoconf to generate configure script -*- sh -*-
|
||||
|
||||
AC_INIT(lyx,1.4.0cvs,lyx-devel@lists.lyx.org)
|
||||
AC_INIT(LyX,1.4.0cvs,[lyx-devel@lists.lyx.org],[lyx])
|
||||
AC_PREREQ(2.52)
|
||||
AC_CONFIG_SRCDIR(src/main.C)
|
||||
AM_CONFIG_HEADER([src/config.h])
|
||||
AC_CONFIG_HEADERS([src/config.h])
|
||||
|
||||
AC_CONFIG_AUX_DIR(config)
|
||||
|
||||
# first the version
|
||||
VERSION="1.4.0cvs"
|
||||
# First check the version
|
||||
LYX_CHECK_VERSION
|
||||
AC_CANONICAL_TARGET
|
||||
|
||||
# Check how the files should be packaged
|
||||
LYX_USE_PACKAGING
|
||||
LYX_VERSION_SUFFIX
|
||||
@ -21,7 +21,7 @@ if test "${enable_maintainer_mode+set}" != set; then
|
||||
fi
|
||||
AM_MAINTAINER_MODE
|
||||
|
||||
AM_INIT_AUTOMAKE($PACKAGE, $VERSION)
|
||||
AM_INIT_AUTOMAKE([foreign dist-bzip2 tar-ustar])
|
||||
|
||||
### Set the execute permissions of the various scripts correctly
|
||||
for file in config/install-sh config/mkinstalldirs lib/configure ; do
|
||||
|
Loading…
Reference in New Issue
Block a user