Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
T
Tor
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
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
Benjamin J. Thompson
Tor
Commits
b1ad6057
Commit
b1ad6057
authored
18 years ago
by
Nick Mathewson
Browse files
Options
Downloads
Patches
Plain Diff
Build correctly for use on OS X platforms with case-sensitive filesystems
svn:r8487
parent
bda13750
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
ChangeLog
+2
-0
2 additions, 0 deletions
ChangeLog
Makefile.am
+3
-0
3 additions, 0 deletions
Makefile.am
configure.in
+3
-3
3 additions, 3 deletions
configure.in
with
8 additions
and
3 deletions
ChangeLog
+
2
−
0
View file @
b1ad6057
...
...
@@ -39,6 +39,8 @@ Changes in version 0.1.2.2-alpha - 2006-??-??
instead of "X resolved to X".
- Prevent the 'exitlist' script from printing the same result more
than once.
- Build correctly for use on OS X platforms with case-sensitive
filesystems.
o Documentation
- Documented (and renamed) ServerDNSSearchDomains and
...
...
This diff is collapsed.
Click to expand it.
Makefile.am
+
3
−
0
View file @
b1ad6057
...
...
@@ -46,6 +46,9 @@ dist-osx:
if
[
"x
$(
sysconfdir
)
"
!=
'x/Library'
]
;
then
\
echo
"Configure with --sysconfdir=/Library, please"
;
\
exit
1
;
\
fi
;
\
if
[
"x
$(
CONFDIR
)
"
!=
'x/Library/Tor'
]
;
then
\
echo
"Configure with CONFDIR=/Library/Tor, please"
;
\
fi
$(
MAKE
)
all
VERSION
=
$(
VERSION
)
sh ./contrib/osx/package.sh
...
...
This diff is collapsed.
Click to expand it.
configure.in
+
3
−
3
View file @
b1ad6057
...
...
@@ -716,7 +716,9 @@ if test "x$exec_prefix" = "xNONE"; then
exec_prefix=$prefix
fi
CONFDIR=`eval echo $sysconfdir/tor`
if test "x$CONFDIR" = "x"; then
CONFDIR=`eval echo $sysconfdir/tor`
fi
AC_SUBST(CONFDIR)
AH_TEMPLATE([CONFDIR],[tor's configuration directory])
AC_DEFINE_UNQUOTED(CONFDIR,"$CONFDIR")
...
...
@@ -742,8 +744,6 @@ fi
# Add these in when you feel like fun.
#CFLAGS="$CFLAGS -Wbad-function-cast -Werror -Wdeclaration-after-statement -Wold-style-definition"
echo "confdir: $CONFDIR"
AC_OUTPUT(Makefile tor.spec contrib/tor.sh contrib/torctl contrib/torify contrib/tor.logrotate contrib/Makefile contrib/osx/Makefile contrib/osx/TorBundleDesc.plist contrib/osx/TorBundleInfo.plist contrib/osx/TorDesc.plist contrib/osx/TorInfo.plist contrib/osx/TorStartupDesc.plist src/config/torrc.sample doc/tor.1 src/Makefile doc/Makefile doc/design-paper/Makefile src/config/Makefile src/common/Makefile src/or/Makefile src/win32/Makefile src/tools/Makefile contrib/suse/Makefile contrib/suse/tor.sh)
if test -x /usr/bin/perl && test -x ./contrib/updateVersions.pl ; then
...
...
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