mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-09 18:31:04 +00:00
make BOOST_POSIX be defined for cygwin
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@9598 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
parent
9e4aa06d9c
commit
32449e97b4
@ -1,3 +1,7 @@
|
|||||||
|
2005-02-07 Lars Gullik Bjonnes <larsbj@gullik.net>
|
||||||
|
|
||||||
|
* configure.ac (AH_BOTTOM): make BOOST_POSIX be defined for cygwin
|
||||||
|
|
||||||
2005-02-02 Jean-Marc Lasgouttes <lasgouttes@lyx.org>
|
2005-02-02 Jean-Marc Lasgouttes <lasgouttes@lyx.org>
|
||||||
|
|
||||||
* configure.ac: if the prefix contains space, replace it with
|
* configure.ac: if the prefix contains space, replace it with
|
||||||
@ -7,7 +11,7 @@
|
|||||||
|
|
||||||
2005-01-27 Lars Gullik Bjonnes <larsbj@gullik.net>
|
2005-01-27 Lars Gullik Bjonnes <larsbj@gullik.net>
|
||||||
|
|
||||||
* configure.ac: add src/support/tests/Makefile
|
* configure.ac: add src/support/tests/Makefile
|
||||||
|
|
||||||
2005-01-21 Jean-Marc Lasgouttes <lasgouttes@lyx.org>
|
2005-01-21 Jean-Marc Lasgouttes <lasgouttes@lyx.org>
|
||||||
|
|
||||||
|
@ -231,7 +231,7 @@ test "x$prefix" = xNONE && prefix=$default_prefix
|
|||||||
test "x$exec_prefix" = xNONE && exec_prefix='${prefix}'
|
test "x$exec_prefix" = xNONE && exec_prefix='${prefix}'
|
||||||
if echo $prefix |grep ' ' >/dev/null 2>/dev/null ; then
|
if echo $prefix |grep ' ' >/dev/null 2>/dev/null ; then
|
||||||
LYX_WARNING([The installation prefix \"${prefix}\" contains a space, which
|
LYX_WARNING([The installation prefix \"${prefix}\" contains a space, which
|
||||||
causes problems with the Makefiles. The installation will be done in
|
causes problems with the Makefiles. The installation will be done in
|
||||||
directory \"`pwd`/installprefix\" instead. Please move its contents to
|
directory \"`pwd`/installprefix\" instead. Please move its contents to
|
||||||
the right place after installation.])
|
the right place after installation.])
|
||||||
prefix=`pwd`/installprefix
|
prefix=`pwd`/installprefix
|
||||||
@ -389,6 +389,10 @@ int mkstemp(char*);
|
|||||||
#define BOOST_NO_WREGEX 1
|
#define BOOST_NO_WREGEX 1
|
||||||
#define BOOST_NO_WSTRING 1
|
#define BOOST_NO_WSTRING 1
|
||||||
|
|
||||||
|
#ifdef __CYGWIN__
|
||||||
|
#define BOOST_POSIX 1
|
||||||
|
#endif
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
])
|
])
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user