mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-05 13:26:21 +00:00
Cygwin compilation fix.
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@8309 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
parent
653ef9a012
commit
839ee41559
@ -1,3 +1,7 @@
|
||||
2004-01-06 Angus Leeming <leeming@lyx.org>
|
||||
|
||||
* globbing.C (glob): compilation fix for cygwin.
|
||||
|
||||
2004-01-06 Lars Gullik Bjonnes <larsbj@gullik.net>
|
||||
|
||||
* Makefile.am (libsupport_la_SOURCES): remove BoostFormat.h and
|
||||
|
@ -67,7 +67,8 @@ string const convert_brace_glob(string const & glob)
|
||||
|
||||
vector<string> const glob(string const & pattern, int flags)
|
||||
{
|
||||
glob_t glob_buffer = {0, 0, 0, 0, 0, 0, 0, 0, 0};
|
||||
glob_t glob_buffer;
|
||||
glob_buffer.gl_offs = 0;
|
||||
glob(pattern.c_str(), flags, 0, &glob_buffer);
|
||||
vector<string> const matches(glob_buffer.gl_pathv,
|
||||
glob_buffer.gl_pathv +
|
||||
|
Loading…
Reference in New Issue
Block a user