Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
Mullvad Browser
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
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
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
The Tor Project
Applications
Mullvad Browser
Commits
09326ed2
Commit
09326ed2
authored
26 years ago
by
mcafee%netscape.com
Browse files
Options
Downloads
Patches
Plain Diff
new configure target, NSPR_INSTALL_DIR usage changed slightly
parent
83c3330a
Loading
Loading
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
client.mk
+10
-14
10 additions, 14 deletions
client.mk
with
10 additions
and
14 deletions
client.mk
+
10
−
14
View file @
09326ed2
...
...
@@ -54,10 +54,11 @@ endif
ifndef
NSPR_INSTALL_DIR
NSPR_INSTALL_DIR
=
/usr/local/nspr
NSPR_CONFIG_FLAG
=
--with-nspr
=
$(
NSPR_INSTALL_DIR
)
else
NSPR_CONFIG_FLAG
=
endif
-include
$(DEPTH)/config/config.mk
all
:
checkout
.PHONY
:
checkout
...
...
@@ -75,25 +76,20 @@ checkout:
# Build with autoconf
build
:
pwd
=
`
pwd
`
;
\
echo pwd
=
$$
pwd
;
\
configure
:
mozilla/configure.in
autoobjdir
=
obj-
$(
shell mozilla/build/autoconf/config.guess
);
\
echo
autoobjdir
=
$$
autoobjdir
;
\
(
cd
mozilla
;
$(
AUTOCONF
)
)
;
\
if
test
!
-d
mozilla/
$$
autoobjdir
;
then
$(
MKDIR
)
mozilla/
$$
autoobjdir
;
fi
;
\
(
cd
mozilla/
$$
autoobjdir
;
../configure
--with-nspr
=
$(
NSPR_INSTALL_DIR
)
--enable-toolkit
=
$(
MOZ_TOOLKIT
)
)
(
cd
mozilla/
$$
autoobjdir
;
gmake depend
)
(
cd
mozilla/
$$
autoobjdir
;
gmake
)
# Do an autoconf build, this isn't working yet. -mcafee
#
# if test ! -d mozilla/$(FOO); then (cd mozilla; $(MKDIR) $(AUTODIR)); fi
# @echo cd mozilla/obj-`build/autoconf/config.guess`; ../configure --with-nspr=$(PWD)/$(DIST)
(
cd
mozilla/
$$
autoobjdir
;
../configure
$(
NSPR_CONFIG_FLAG
)
--enable-toolkit
=
$(
MOZ_TOOLKIT
)
)
;
\
build
:
configure
(
cd
mozilla/
$$
autoobjdir
;
gmake
)
;
\
#
(
cd
mozilla/
$$
autoobjdir
;
gmake depend
)
;
\
# Build & install nspr. Classic build, no autoconf.
# Linux/RPM available.
nspr
:
nspr
:
$(NSPR_INSTALL_DIR)/lib/libnspr21.so
$(NSPR_INSTALL_DIR)/lib/libnspr21.so
:
(
$(
MAKE
)
-C
mozilla/nsprpub
DIST
=
$(
NSPR_INSTALL_DIR
)
NSDISTMODE
=
copy
NS_USE_GCC
=
1
MOZILLA_CLIENT
=
1
NO_MDUPDATE
=
1
NS_USE_NATIVE
=
)
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment