Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Synchronet
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
139
Issues
139
List
Boards
Labels
Service Desk
Milestones
Merge Requests
1
Merge Requests
1
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
Packages & Registries
Packages & Registries
Package Registry
Container Registry
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Main
Synchronet
Compare Revisions
e562d227530c43e4a3e1c1254da502dc77517182...acdd7086b664a36cf3f20db29e5ebebdba6f19fa
Source
acdd7086b664a36cf3f20db29e5ebebdba6f19fa
Select Git revision
...
Target
e562d227530c43e4a3e1c1254da502dc77517182
Select Git revision
Compare
Commits (1)
So the Borland C++ Compiler we currently use has stdint.h
· acdd7086
Rob Swindell
authored
Nov 22, 2020
so define HAS_STDINT_H
acdd7086
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
1 deletion
+2
-1
src/build/Common.bmake
src/build/Common.bmake
+2
-1
No files found.
src/build/Common.bmake
View file @
acdd7086
...
...
@@ -142,8 +142,9 @@ CFLAGS = $(CFLAGS) -Od -D_DEBUG
# Required for Embarcadero C++Builder 2010
!if $(__MAKE__) >= 0x0540
CCPRE = ecc6
CFLAGS = $(CFLAGS) -D
HAS_STDINT_H -D
_WIN32_WINNT=0x502
CFLAGS = $(CFLAGS) -D_WIN32_WINNT=0x502
!endif
CFLAGS = $(CFLAGS) -DHAS_STDINT_H
# Debug or release build?
!ifdef DEBUG
...
...