mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-12-12 16:50:39 +00:00
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:
parent
1d960fe6c1
commit
d521bfd735
@ -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>
|
2004-02-03 Angus Leeming <leeming@lyx.org>
|
||||||
|
|
||||||
* boost/detail/limits.hpp: add support for Itanium machines.
|
* boost/detail/limits.hpp: add support for Itanium machines.
|
||||||
|
@ -44,7 +44,9 @@
|
|||||||
//
|
//
|
||||||
// The BSD <ctype.h> has macros only, no functions:
|
// 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:
|
// thread API's not auto detected:
|
||||||
|
@ -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>
|
2004-02-19 Jean-Marc Lasgouttes <lasgouttes@lyx.org>
|
||||||
|
|
||||||
* configure.in (VERSION):
|
* configure.in (VERSION):
|
||||||
|
12
config/qt.m4
12
config/qt.m4
@ -199,11 +199,15 @@ AC_DEFUN(QT_DO_IT_ALL,
|
|||||||
AC_SUBST(QT_INCLUDES)
|
AC_SUBST(QT_INCLUDES)
|
||||||
AC_SUBST(QT_LDFLAGS)
|
AC_SUBST(QT_LDFLAGS)
|
||||||
|
|
||||||
QT_FIND_MOC
|
if test -z "$MOC"; then
|
||||||
MOC=$ac_moc
|
QT_FIND_MOC
|
||||||
|
MOC=$ac_moc
|
||||||
|
fi
|
||||||
AC_SUBST(MOC)
|
AC_SUBST(MOC)
|
||||||
QT_FIND_UIC
|
if test -z "$UIC"; then
|
||||||
UIC=$ac_uic
|
QT_FIND_UIC
|
||||||
|
UIC=$ac_uic
|
||||||
|
fi
|
||||||
AC_SUBST(UIC)
|
AC_SUBST(UIC)
|
||||||
|
|
||||||
QT_CHECK_COMPILE
|
QT_CHECK_COMPILE
|
||||||
|
Loading…
Reference in New Issue
Block a user