Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-winehq
Commits
b6938952
Commit
b6938952
authored
Jan 13, 2003
by
Alexandre Julliard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Added configure check for regex.h.
parent
9e23cf31
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
17 additions
and
0 deletions
+17
-0
configure
configure
+2
-0
configure.ac
configure.ac
+1
-0
config.h.in
include/config.h.in
+3
-0
hash.c
programs/winedbg/hash.c
+11
-0
No files found.
configure
View file @
b6938952
...
...
@@ -13358,6 +13358,7 @@ done
for
ac_header
in
\
arpa/inet.h
\
arpa/nameser.h
\
...
...
@@ -13386,6 +13387,7 @@ for ac_header in \
netinet/tcp.h
\
pty.h
\
pwd.h
\
regex.h
\
sched.h
\
scsi/sg.h
\
socket.h
\
...
...
configure.ac
View file @
b6938952
...
...
@@ -1017,6 +1017,7 @@ AC_CHECK_HEADERS(\
netinet/tcp.h \
pty.h \
pwd.h \
regex.h \
sched.h \
scsi/sg.h \
socket.h \
...
...
include/config.h.in
View file @
b6938952
...
...
@@ -413,6 +413,9 @@
/* Define to 1 if you have the `pwrite' function. */
#undef HAVE_PWRITE
/* Define to 1 if you have the <regex.h> header file. */
#undef HAVE_REGEX_H
/* Define to 1 if you have the `resizeterm' function. */
#undef HAVE_RESIZETERM
...
...
programs/winedbg/hash.c
View file @
b6938952
...
...
@@ -1335,6 +1335,8 @@ int DEBUG_SetLocalSymbolType(struct wine_locals * sym, struct datatype * type)
return
TRUE
;
}
#ifdef HAVE_REGEX_H
static
int
cmp_sym_by_name
(
const
void
*
p1
,
const
void
*
p2
)
{
struct
name_hash
**
name1
=
(
struct
name_hash
**
)
p1
;
...
...
@@ -1396,3 +1398,12 @@ void DEBUG_InfoSymbols(const char* str)
}
HeapFree
(
GetProcessHeap
(),
0
,
array
);
}
#else
/* HAVE_REGEX_H */
void
DEBUG_InfoSymbols
(
const
char
*
str
)
{
DEBUG_Printf
(
DBG_CHN_MESG
,
"FIXME: needs regex support
\n
"
);
}
#endif
/* HAVE_REGEX_H */
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment