mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-17 03:39:28 +02:00
* fix gdbint for mingw libgdb 7.2 we provide in the contribs dir
git-svn-id: trunk@22870 -
This commit is contained in:
parent
99fbb83247
commit
6d055e71b9
@ -138,6 +138,9 @@ interface
|
||||
{$define GDB_BP_LOCATION_HAS_REFCOUNT}
|
||||
{$define GDB_BP_LOCATION_HAS_OPS}
|
||||
{$define GDB_UI_FILE_HAS_WRITE_ASYNC}
|
||||
{$ifdef win32}
|
||||
{$define GDB_USES_LIBADVAPI32}
|
||||
{$endif win32}
|
||||
{$endif def GDB_V704}
|
||||
|
||||
{ 7.3.x }
|
||||
@ -479,7 +482,9 @@ interface
|
||||
{$LINKLIB libintl.a}
|
||||
{$LINKLIB imagehlp}
|
||||
{$endif not USE_MINGW_GDB}
|
||||
{$LINKLIB advapi32}
|
||||
{$ifdef GDB_USES_LIBADVAPI32}
|
||||
{$LINKLIB advapi32}
|
||||
{$endif GDB_USES_LIBADVAPI32}
|
||||
{$LINKLIB user32}
|
||||
{$LINKLIB kernel32}
|
||||
{$endif win32}
|
||||
|
Loading…
Reference in New Issue
Block a user