diff options
Diffstat (limited to 'devel/premake/files/patch-Src-posix.c')
-rw-r--r-- | devel/premake/files/patch-Src-posix.c | 19 |
1 files changed, 0 insertions, 19 deletions
diff --git a/devel/premake/files/patch-Src-posix.c b/devel/premake/files/patch-Src-posix.c deleted file mode 100644 index f34c4c1993a6..000000000000 --- a/devel/premake/files/patch-Src-posix.c +++ /dev/null @@ -1,19 +0,0 @@ ---- Src/posix.c.orig Sat Mar 27 05:00:55 2004 -+++ Src/posix.c Tue Mar 30 02:47:55 2004 -@@ -89,13 +89,15 @@ - - int plat_findLib(const char* lib, char* buffer, int size) - { -+ FILE* file; -+ - if (findLib(lib, "/usr/lib")) - { - strcpy(buffer, "/usr/lib"); - return 1; - } - -- FILE* file = fopen("/etc/ld.so.conf", "rt"); -+ file = fopen("/etc/ld.so.conf", "rt"); - if (file == NULL) return 0; - - while (!feof(file)) |