Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
Synchronet
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Main
Synchronet
Merge requests
!455
Update branch with changes from master
Code
Review changes
Check out branch
Download
Patches
Plain diff
Closed
Update branch with changes from master
master
into
ree/mastermind
Overview
0
Commits
1811
Pipelines
0
Changes
232+
Closed
Rick Parrish
requested to merge
master
into
ree/mastermind
8 months ago
Overview
0
Commits
1811
Pipelines
0
Changes
232
Expand
0
0
Merge request reports
Compare
ree/mastermind
ree/mastermind (base)
and
latest version
latest version
d232ecdc
1811 commits,
8 months ago
232+ files
+
65162
−
1050
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
232+
Search (e.g. *.vue) (Ctrl+P)
Some changes are not shown.
For a faster browsing experience, only
232 of 232+
files are shown. Download one of the files below to see all changes.
Plain diff
Patches
3rdp/build/Common.gmake
+
29
−
21
Options
@@ -2,31 +2,38 @@
# NSPR Stuff #
##############
ifeq ($(
shell nspr-config --version > /dev/null 2>&1 && echo YES),YES
)
NSPRDIR ?= $(
shell nspr-config --libdir)
NSPRINCLUDE ?= $(
shell nspr-config --
include
dir)
NSPR_CFLAGS ?=
$(shell nspr-config --cflags)
NSPR_LIBS ?=
$(shell nspr-config --libs)
ifeq ($(
os),win32
)
NSPRDIR ?= $(
3RDP_ROOT)/win32.release/nspr/lib
NSPRINCLUDE ?= $(
3RDP_ROOT)/win32.release/nspr/
include
/nspr
NSPR_CFLAGS ?=
-I$(3RDP_ROOT)/win32.release/nspr/include/nspr
NSPR_LIBS ?=
-L$(3RDP_ROOT)/win32.release/nspr/lib -lplds4 -lplc4 -lnspr4
else
ifeq ($(os),sunos)
ifeq ($(shell test -f /usr/sfw/lib/mozilla/libnspr4.so && echo "yes"),yes)
NSPRDIR ?= /usr/sfw/lib/mozilla
ifeq ($(shell test -d /usr/sfw/include/mozilla/nspr && echo "yes"),yes)
NSPRINCLUDE ?= /usr/sfw/include/mozilla/nspr
ifeq ($(shell nspr-config --version > /dev/null 2>&1 && echo YES),YES)
NSPRDIR ?= $(shell nspr-config --libdir)
NSPRINCLUDE ?= $(shell nspr-config --includedir)
NSPR_CFLAGS ?= $(shell nspr-config --cflags)
NSPR_LIBS ?= $(shell nspr-config --libs)
else
ifeq ($(os),sunos)
ifeq ($(shell test -f /usr/sfw/lib/mozilla/libnspr4.so && echo "yes"),yes)
NSPRDIR ?= /usr/sfw/lib/mozilla
ifeq ($(shell test -d /usr/sfw/include/mozilla/nspr && echo "yes"),yes)
NSPRINCLUDE ?= /usr/sfw/include/mozilla/nspr
endif
endif
endif
endif
ifndef NSPRDIR
NSPRDIR := $(SRC_ROOT)$(DIRSEP)..$(DIRSEP)lib$(DIRSEP)mozilla$(DIRSEP)nspr$(DIRSEP)$(machine).$(BUILD)
endif
ifndef NSPRDIR
NSPRDIR := $(SRC_ROOT)$(DIRSEP)..$(DIRSEP)lib$(DIRSEP)mozilla$(DIRSEP)nspr$(DIRSEP)$(machine).$(BUILD)
endif
#The following is needed for nspr support on Linux
ifeq ($(os),linux)
NSPR_LIBS += -ldl
endif
#The following is needed for nspr support on Linux
ifeq ($(os),linux)
NSPR_LIBS += -ldl
endif
NSPR_LIBS += -lnspr4
NSPR_LIBS += -lnspr4
endif
endif
NSPR_LDFLAGS += -L/usr/local/lib -L$(NSPRDIR)
@@ -141,6 +148,7 @@ endif
####################
# libarchive stuff #
####################
ifeq ($(os),win32)
LDFLAGS += -L$(3RDP_ROOT)/win32.release/libarchive/bin
ifdef win
LDFLAGS += -L$(3RDP_ROOT)/$(os).release/libarchive/bin
LDFLAGS += -L$(3RDP_ROOT)/$(os).release/libarchive/lib
endif
Loading