(nearly trivial) patch to compile git on cygwin
From: lode leroy <hidden>
Date: 2016-06-15 22:41:54
I wonder if anyone is interested in using git on windows / cygwin. It almost compiles out of the box... just this one little thinggy that's glibc-specific (struct dirent . d_type) ~/pkg $ diff -bruw git-0.6 git-0.6-cyg | grep -v ^Only diff -bruw git-0.6/Makefile git-0.6-cyg/Makefile
--- git-0.6/Makefile 2005-04-21 19:58:47.000000000 +0200
+++ git-0.6-cyg/Makefile 2005-04-22 09:28:54.259531200 +0200@@ -30,7 +30,7 @@$(LIB_FILE): $(LIB_OBJS)
$(AR) rcs $@ $(LIB_OBJS)
-LIBS= $(LIB_FILE) -lssl -lz
+LIBS= $(LIB_FILE) -lssl -lz -lcrypto
init-db: init-db.o
diff -bruw git-0.6/show-files.c git-0.6-cyg/show-files.c--- git-0.6/show-files.c 2005-04-21 19:58:47.000000000 +0200
+++ git-0.6-cyg/show-files.c 2005-04-22 10:03:04.227240000 +0200@@ -61,26 +61,33 @@ continue; len = strlen(de->d_name); memcpy(fullname + baselen, de->d_name, len+1); +#ifdef DT_DIR switch (de->d_type) { +#endif struct stat st; +#ifdef DT_DIR default: continue; case DT_UNKNOWN: +#endif if (lstat(fullname, &st)) continue; if (S_ISREG(st.st_mode)) break; if (!S_ISDIR(st.st_mode)) continue; +#ifdef DT_DIR /* fallthrough */ case DT_DIR: +#endif memcpy(fullname + baselen + len, "/", 2); read_directory(fullname, fullname, baselen +
len + 1);
continue;
+#ifdef DT_DIR
case DT_REG:
break;
}
+#endif
add_name(fullname, baselen + len);
}
closedir(dir);
~/pkg $
_________________________________________________________________