Andrew's git
/
gitweb.git
/ diff
summary
|
log
|
commit
| diff |
tree
commit
grep
author
committer
pickaxe
?
re
Disable USE_SYMLINK_HEAD by default
author
Pavel Roskin
<proski@gnu.org>
Tue, 15 Nov 2005 05:59:50 +0000
(
00:59
-0500)
committer
Junio C Hamano
<junkio@cox.net>
Fri, 20 Jan 2006 07:14:31 +0000
(23:14 -0800)
Disable USE_SYMLINK_HEAD by default. Recommend using it only for
compatibility with older software.
Treat USE_SYMLINK_HEAD like other optional defines - check whether it's
defined, not its value.
Signed-off-by: Pavel Roskin <proski@gnu.org>
Signed-off-by: Junio C Hamano <junkio@cox.net>
Makefile
patch
|
blob
|
history
refs.c
patch
|
blob
|
history
raw
|
patch
|
inline
| side by side (parent:
949964c
)
diff --git
a/Makefile
b/Makefile
index f6d9e0aa7e2515b1e6ab68a23a22092eaa404da8..a291bb157ec9eb14037bcc2a2f7b238527dc7adb 100644
(file)
--- a/
Makefile
+++ b/
Makefile
@@
-23,6
+23,9
@@
all:
#
# Define NO_SETENV if you don't have setenv in the C library.
#
#
# Define NO_SETENV if you don't have setenv in the C library.
#
+# Define USE_SYMLINK_HEAD if you want .git/HEAD to be a symbolic link.
+# Don't enable it on Windows.
+#
# Define PPC_SHA1 environment variable when running make to make use of
# a bundled SHA1 routine optimized for PowerPC.
#
# Define PPC_SHA1 environment variable when running make to make use of
# a bundled SHA1 routine optimized for PowerPC.
#
@@
-236,7
+239,6
@@
ifeq ($(uname_O),Cygwin)
# NO_MMAP = YesPlease
NO_IPV6 = YesPlease
X = .exe
# NO_MMAP = YesPlease
NO_IPV6 = YesPlease
X = .exe
- ALL_CFLAGS += -DUSE_SYMLINK_HEAD=0
endif
ifeq ($(uname_S),OpenBSD)
NO_STRCASESTR = YesPlease
endif
ifeq ($(uname_S),OpenBSD)
NO_STRCASESTR = YesPlease
diff --git
a/refs.c
b/refs.c
index c33729c54a001423fb682cc920b72e5b1d03f8ea..d01fc3984a56e288e175f8201783f18dfe978c10 100644
(file)
--- a/
refs.c
+++ b/
refs.c
@@
-6,10
+6,6
@@
/* We allow "recursive" symbolic refs. Only within reason, though */
#define MAXDEPTH 5
/* We allow "recursive" symbolic refs. Only within reason, though */
#define MAXDEPTH 5
-#ifndef USE_SYMLINK_HEAD
-#define USE_SYMLINK_HEAD 1
-#endif
-
const char *resolve_ref(const char *path, unsigned char *sha1, int reading)
{
int depth = MAXDEPTH, len;
const char *resolve_ref(const char *path, unsigned char *sha1, int reading)
{
int depth = MAXDEPTH, len;
@@
-80,7
+76,7
@@
int create_symref(const char *git_HEAD, const char *refs_heads_master)
char ref[1000];
int fd, len, written;
char ref[1000];
int fd, len, written;
-#if USE_SYMLINK_HEAD
+#if
def
USE_SYMLINK_HEAD
if (!only_use_symrefs) {
unlink(git_HEAD);
if (!symlink(refs_heads_master, git_HEAD))
if (!only_use_symrefs) {
unlink(git_HEAD);
if (!symlink(refs_heads_master, git_HEAD))