X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;ds=sidebyside;f=configure.ac;h=c2b335700351b4d1e07a8a4817c8b7b037dd8a0d;hb=2f71fca7df3c7149542cadf577395ecedf82bbf5;hp=ac00b82fb5868f531764b997f2b079843fdd47f9;hpb=60b34bddb8fdd7ab070cce2f6ca44461abef860c;p=lyx.git diff --git a/configure.ac b/configure.ac index ac00b82fb5..c2b3357003 100644 --- a/configure.ac +++ b/configure.ac @@ -1,7 +1,7 @@ -vdnl Process with autoconf to generate configure script -*- sh -*- +dnl Process with autoconf to generate configure script -*- sh -*- AC_INIT(LyX,1.6.0svn,[lyx-devel@lists.lyx.org],[lyx]) -AC_SUBST(LYX_DATE, ["Tue, Jun 3, 2008"]) +AC_SUBST(LYX_DATE, ["Fri, Aug 1, 2008"]) AC_PREREQ(2.52) AC_CONFIG_SRCDIR(src/main.cpp) AC_CONFIG_HEADERS([config.h]) @@ -33,12 +33,9 @@ for file in config/install-sh config/mkinstalldirs ; do chmod 755 ${srcdir}/${file} done -### Provide a dummy POTFILES.in in po in order to mark it as a PO directory -test -f ${srcdir}/po/POTFILES.in || touch ${srcdir}/po/POTFILES.in - ### Check for programs -AC_PROG_MAKE_SET -AC_PROG_INSTALL +dnl AC_PROG_MAKE_SET +dnl AC_PROG_INSTALL # Check for installed python AM_PATH_PYTHON(2.3,, :) @@ -51,11 +48,7 @@ INSTALL_SCRIPT='${INSTALL}' ### we will also need a C compiler to compile GNU gettext AC_PROG_CC -AC_GNU_SOURCE - -### check for special systems -AC_ISC_POSIX -AC_AIX +AC_USE_SYSTEM_EXTENSIONS ### we need to know the byte order for unicode conversions AC_C_BIGENDIAN @@ -227,8 +220,12 @@ fi ### Setup GNU gettext dnl GNU gettext is written in C AC_LANG_PUSH(C) +dnl Dirty trick ahead: disable macro AC_GNU_SOURCE because it triggers a bug with autoconf 2.62. +dnl this can be removed if gettext is been updated to avoid that. +m4_undefine([AC_GNU_SOURCE]) +m4_defun([AC_GNU_SOURCE],[]) AM_GNU_GETTEXT -AM_GNU_GETTEXT_VERSION([0.14.5]) +AM_GNU_GETTEXT_VERSION([0.16.1]) AC_LANG_POP(C) # some standard header files @@ -316,6 +313,7 @@ AC_SUBST(AM_CPPFLAGS) AC_SUBST(AM_CXXFLAGS) AC_SUBST(AM_CFLAGS) AC_SUBST(AM_LDFLAGS) +AC_SUBST(real_pkgdatadir) ## Some config.h stuff @@ -392,11 +390,6 @@ char * strerror(int n); ]) -AC_ARG_WITH(qmake, - AC_HELP_STRING([--with-qmake], - [Use qmake instead of automake to generate Makefiles]),, - [with_qmake=no]) - AC_ARG_ENABLE(monolithic-boost, AC_HELP_STRING([--enable-monolithic-boost], [Use monolithic boost compilations]),, @@ -454,12 +447,15 @@ AC_DEFINE_UNQUOTED([PROGRAM_SUFFIX], AC_DEFINE_UNQUOTED([LYX_DATE],"$LYX_DATE",[Date of release]) AC_DEFINE_UNQUOTED([VERSION_INFO],"$VERSION_INFO",[Full version info]) +AC_DEFINE_UNQUOTED([LYX_DIR_VER],"$lyx_dir_ver",[Versioned env var for system dir]) +AC_DEFINE_UNQUOTED([LYX_USERDIR_VER],"$lyx_userdir_ver",[Versioned env var for user dir]) AC_DEFINE_UNQUOTED([LYX_MAJOR_VERSION],$lyx_major,[Major version number]) AC_DEFINE_UNQUOTED([LYX_MINOR_VERSION],$lyx_minor,[Minor version number]) AC_DEFINE_UNQUOTED([LYX_RELEASE_LEVEL],$lyx_release,[Release version number]) AC_DEFINE_UNQUOTED([LYX_RELEASE_PATCH],$lyx_patch,[Patch version number]) -AC_CONFIG_FILES([Makefile +AC_CONFIG_FILES([Makefile \ + lyx.1:lyx.1in \ boost/Makefile \ config/Makefile \ development/Makefile \ @@ -488,30 +484,6 @@ AC_CONFIG_FILES([Makefile AC_OUTPUT -if test x$with_qmake = xyes ; then - echo "CONFIGURE WITH QMAKE ONLY" - if test x$srcdir = x ; then - echo "ONLY FOR OUT-OF-TREE-BUILDS POSSIBLE" - else - rm boost/Makefile - rm src/client/Makefile - rm src/Makefile - rm src/tex2lyx/Makefile - rm src/support/Makefile - rm src/frontends/Makefile - rm src/frontends/qt4/Makefile - rm -rf boost/.deps - rm -rf src/client/.deps - rm -rf src/.deps - rm -rf src/tex2lyx/.deps - rm -rf src/support/.deps - rm -rf src/frontends/.deps - rm -rf src/frontends/qt4/.deps - ${srcdir}/development/qmake/doit - fi -fi - - # show version information echo printf "$VERSION_INFO"