Displaying 7 results from an estimated 7 matches for "unlink_utf8".
2016 Jan 09
0
Lets do a 1.3.2 release
...AC.a(metadata_iterators.release.o): In function `open_tempfile_':
flac/src/libFLAC/metadata_iterators.c:3284: undefined reference to `fopen_utf8'
libFLAC.a(metadata_iterators.release.o): In function `cleanup_tempfile_':
flac/src/libFLAC/metadata_iterators.c:3333: undefined reference to `unlink_utf8'
flac/src/libFLAC/metadata_iterators.c:3333: undefined reference to `unlink_utf8'
flac/src/libFLAC/metadata_iterators.c:3333: undefined reference to `unlink_utf8'
flac/src/libFLAC/metadata_iterators.c:3333: undefined reference to `unlink_utf8'
flac/src/libFLAC/metadata_iterators.c:3...
2016 Jan 09
3
Lets do a 1.3.2 release
...; projects depend (only)
on 'win_utf8_io_static'.
I tried to remove this dependency and libFLAC_dynamic failed to compile
since metadata_iterators.c uses e.g. flac_fopen, which is defined in
share/compat.h as fopen_utf8.
metadata_iterators.obj : error LNK2001: unresolved external symbol unlink_utf8
metadata_iterators.obj : error LNK2001: unresolved external symbol fopen_utf8
metadata_iterators.obj : error LNK2001: unresolved external symbol utime_utf8
metadata_iterators.obj : error LNK2001: unresolved external symbol _stat64_utf8
metadata_iterators.obj : error LNK2001: unresolved...
2016 Jan 09
2
Lets do a 1.3.2 release
Janne Hyv?rinen wrote:
> Win_utf8 stuff should not be included in libflac since it's only to be
> used by the flac.exe frontend. It is not needed by other programs nor
> would they benefit from it without doing the extra work of converting
> their ansi filenames and functions to utf-8.
>
>> Version 2 of my patch attached, which fixes the problem for the
>>
2013 Apr 01
1
flac 1.3.0pre3 pre-release
...de);
int stat_utf8(const char *path, struct stat *buffer);
-int _stat64_utf8(const char *path, struct _stat64 *buffer);
+int _stat64_utf8(const char *path, struct __stat64 *buffer);
int chmod_utf8(const char *filename, int pmode);
int utime_utf8(const char *filename, struct utimbuf *times);
int unlink_utf8(const char *filename);
--- flac-1.3.0pre3/src/share/win_utf8_io/win_utf8_io.c.orig 2013-04-01 16:24:18 +0400
+++ flac-1.3.0pre3/src/share/win_utf8_io/win_utf8_io.c 2013-04-01 16:39:34 +0400
@@ -182,7 +182,7 @@
return f;
}
-int _stat64_utf8(const char *path, struct _stat64 *buffer)
+int _stat64...
2013 Apr 20
1
One tiny Windows Unicode patch
...t; {
#include <stdio.h>
#include <sys/stat.h>
#include <stdarg.h>
-
+#include <windows.h>
int get_utf8_argv(int *argc, char ***argv);
@@ -25,6 +25,7 @@ int chmod_utf8(const char *filename, int pmode);
int utime_utf8(const char *filename, struct utimbuf *times);
int unlink_utf8(const char *filename);
int rename_utf8(const char *oldname, const char *newname);
+HANDLE WINAPI CreateFile_utf8(const char *lpFileName, DWORD dwDesiredAccess, DWORD dwShareMode, LPSECURITY_ATTRIBUTES lpSecurityAttributes, DWORD dwCreationDisposition, DWORD dwFlagsAndAttributes, HANDLE hTemplateFi...
2016 Jan 08
8
Lets do a 1.3.2 release
HI all,
I think its time for a new release. The current code base is stable
and I've been building it for x86_64/linux, powerpc/linux, armhf/linux,
x86_64/darwin in a Jenkins build bot. I'm pretty sure others have been
building regularly on their platforms of interest.
I made a first pass on an update to the changelog.html. I' also putting
toether a release checklist that I will add
2013 Apr 01
17
flac 1.3.0pre3 pre-release
Hi all,
The latest pre-release is here:
http://downloads.xiph.org/releases/flac/beta/flac-1.3.0pre3.tar.xz
but there will probably need to be at least one more.
I've tested this on
x86_64-linux
powerpc-linux
i386-openbsd5.2
i386-freebsd9
The majority of changes since the last pre-release is the addition of
Janne Hyv?rinen's utf8 I/O functionality. Janne's