openbsd fixes

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/branches/BRANCH_1_3_X@8469 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
Jean-Marc Lasgouttes 2004-03-01 14:50:29 +00:00
parent 1d960fe6c1
commit d521bfd735
4 changed files with 20 additions and 5 deletions

View File

@ -1,3 +1,7 @@
2004-03-01 Zvezdan Petkovic <zvezdan@cs.wm.edu>
* boost/config/platform/bsd.hpp: config fix for OpenBSD
2004-02-03 Angus Leeming <leeming@lyx.org>
* boost/detail/limits.hpp: add support for Itanium machines.

View File

@ -44,7 +44,9 @@
//
// The BSD <ctype.h> has macros only, no functions:
//
#define BOOST_NO_CTYPE_FUNCTIONS
#if !defined(__OpenBSD__)
# define BOOST_NO_CTYPE_FUNCTIONS
#endif
//
// thread API's not auto detected:

View File

@ -1,3 +1,8 @@
2004-03-01 Zvezdan Petkovic <zvezdan@cs.wm.edu>
* qt.m4 (QT_DO_IT_ALL): if the variables MOC or UIC are set, honor
their value
2004-02-19 Jean-Marc Lasgouttes <lasgouttes@lyx.org>
* configure.in (VERSION):

View File

@ -199,11 +199,15 @@ AC_DEFUN(QT_DO_IT_ALL,
AC_SUBST(QT_INCLUDES)
AC_SUBST(QT_LDFLAGS)
if test -z "$MOC"; then
QT_FIND_MOC
MOC=$ac_moc
fi
AC_SUBST(MOC)
if test -z "$UIC"; then
QT_FIND_UIC
UIC=$ac_uic
fi
AC_SUBST(UIC)
QT_CHECK_COMPILE