-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
17 changed files
with
196 additions
and
79 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
diff -urN huskylib.orig/Makefile huskylib/Makefile | ||
--- huskylib.orig/Makefile 2006-02-04 12:23:29.000000000 +0300 | ||
+++ huskylib/Makefile 2007-01-27 16:23:39.000000000 +0300 | ||
@@ -34,7 +34,7 @@ | ||
endif | ||
|
||
_SRC_DIR = src/ | ||
-_H_DIR = huskylib/ | ||
+_H_DIR = huskylib | ||
|
||
%$(_OBJ): $(_SRC_DIR)%.c | ||
$(CC) $(CFLAGS) $(CDEFS) $(_SRC_DIR)$*.c | ||
diff -urN huskylib.orig/src/fexist.c huskylib/src/fexist.c | ||
--- huskylib.orig/src/fexist.c 2005-01-13 23:08:03.000000000 +0300 | ||
+++ huskylib/src/fexist.c 2007-01-27 11:56:40.000000000 +0300 | ||
@@ -58,6 +58,8 @@ | ||
the old "ffind" method. */ | ||
# include <sys/types.h> | ||
# include <sys/stat.h> | ||
+#else | ||
+# include <ffind.h> | ||
#endif | ||
|
||
/* huskylib headers */ | ||
diff -urN huskylib.orig/src/genverst.c huskylib/src/genverst.c | ||
--- huskylib.orig/src/genverst.c 2004-06-06 20:16:47.000000000 +0400 | ||
+++ huskylib/src/genverst.c 2007-01-27 11:58:14.000000000 +0300 | ||
@@ -53,6 +53,9 @@ | ||
#ifdef UNAME /* Use '-DUNAME' compiler parameter */ | ||
platform = "/" UNAME; | ||
|
||
+#elif defined(__x86_64__) | ||
+ platform = "/lnx64"; | ||
+ | ||
#elif defined(__linux__) /* gcc on Linux */ | ||
platform = "/lnx"; | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
diff -urN smapi.orig/Makefile smapi/Makefile | ||
--- smapi.orig/Makefile 2003-03-11 17:07:07.000000000 +0300 | ||
+++ smapi/Makefile 2007-01-27 16:24:13.000000000 +0300 | ||
@@ -24,7 +24,7 @@ | ||
endif | ||
|
||
SRC_DIR = src/ | ||
-H_DIR = smapi/ | ||
+H_DIR = smapi | ||
|
||
CDEFS=-D$(OSTYPE) $(ADDCDEFS) -I$(H_DIR) -I$(INCDIR) | ||
|
||
@@ -51,7 +51,7 @@ | ||
else | ||
$(TARGETDLL).$(VER): $(OBJS) | ||
$(CC) -shared -Wl,-soname,$(TARGETDLL).$(VERH) \ | ||
- -o $(TARGETDLL).$(VER) $(OBJS) | ||
+ -L$(LIBDIR) -lhusky -o $(TARGETDLL).$(VER) $(OBJS) | ||
endif | ||
|
||
instdyn: $(TARGETLIB) $(TARGETDLL).$(VER) |
Oops, something went wrong.