Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2013-05-10 | coverity: close file handle | David Tardon | 1 | -0/+3 | |
2013-05-10 | coverity: free string in case of error | David Tardon | 1 | -1/+3 | |
2013-05-10 | coverity: returning ptr as const is meaningless | David Tardon | 4 | -6/+6 | |
2013-05-10 | coverity: check return value of malloc | David Tardon | 1 | -2/+6 | |
2013-05-10 | coverity: check if error is non-null before using it | David Tardon | 1 | -1/+1 | |
2013-05-10 | coverity: free the iter, not _pointer_ to it | David Tardon | 1 | -1/+1 | |
2013-05-10 | fix automake error | David Tardon | 1 | -1/+1 | |
docs/Makefile.am:116: error: EXTRA_DIST must be set with '=' before using '+=' | |||||
2013-05-10 | Merged in juikim/liblangtag/0.5.x (pull request #3) | Akira TAGOH | 1 | -2/+2 | |
Fix duplicate typedef introduced in 57c47aa. | |||||
2013-05-10 | Merge commit '8532462c5354b66848e387a7d435ca5dadbf768c' into 0.5.x | Akira TAGOH | 2 | -2/+2 | |
2013-05-09 | Fix duplicate typedef introduced in 57c47aa. | Jung-uk Kim | 1 | -2/+2 | |
2013-05-08 | Use awk(1) instead of sed(1) to fix build on *BSD. | Jung-uk Kim | 1 | -1/+1 | |
The previous sed commands have GNU extensions, e. g., "{d}" and "\t". | |||||
2013-05-01 | Replace AM_CONFIG_HEADER with AC_CONFIG_HEADERS | Akira TAGOH | 1 | -1/+1 | |
AM_CONFIG_HEADER macro seems obsolete now. (closed issue#2) | |||||
2013-04-30 | Bump the version to 0.5.1 | Akira TAGOH | 2 | -3/+7 | |
2013-04-30 | Add back dummy functions to keep ABI compatible | Akira TAGOH | 2 | -0/+30 | |
2013-04-26 | Bump the version to 0.5.0 | Akira TAGOH | 3 | -13/+22 | |
2013-04-22 | Revert "API CHANGED: lt_tag_transform() returns lt_tag_t instead of char *" | Akira TAGOH | 4 | -50/+55 | |
This reverts commit d981ad02346c9e2ca389c647446a25ce83644a9c. We still need to do further work to clean up APIs though, also need to make a new release for various fixes/improvements in git right now. So reverting this one which prevents it so far. | |||||
2013-04-22 | Fix a memory leak on error | Akira TAGOH | 1 | -8/+12 | |
reported at https://bugzilla.redhat.com/show_bug.cgi?id=952119 | |||||
2013-04-22 | Fix signedness issue | Akira TAGOH | 1 | -3/+3 | |
reported at https://bugzilla.redhat.com/show_bug.cgi?id=952137 | |||||
2013-04-22 | Fix a regression issue introduced by 873a71abe30b023ebd04d26a832bb250807a84c6 | Akira TAGOH | 1 | -5/+4 | |
2013-04-15 | Use secure_getenv instead if available | Akira TAGOH | 5 | -4/+31 | |
or emulated one | |||||
2013-04-04 | Move g-ir-scanner flags into SCANNERFLAGS | Akira TAGOH | 1 | -2/+4 | |
2013-04-04 | calling the generic error reporting from memory management is a hazard | Bjoern Michaelsen | 1 | -3/+4 | |
- the error reporting is pluggable with function pointers doing all kinds of funky stuff (including calling back into memory mngmt.) - this introduces a high risk of stack smashing circular calls - better silently return here | |||||
2013-04-04 | fixes for -Wformat | Bjoern Michaelsen | 2 | -3/+3 | |
2013-03-13 | Minor | Akira TAGOH | 1 | -0/+1 | |
2013-03-13 | use AM_PROG_AR macro | Peter Foley | 1 | -0/+1 | |
Makes libtool work proberly with the Visual Studio toolchain | |||||
2013-02-07 | minor improvement | Akira TAGOH | 1 | -6/+5 | |
2013-02-05 | Fix typos | Akira TAGOH | 2 | -2/+2 | |
2013-02-05 | Use AM_MISSING_PROG instead of hardcoding missing | Akira TAGOH | 2 | -7/+9 | |
2013-01-18 | Fix memory leaks and erroneous code | Akira TAGOH | 6 | -10/+19 | |
2013-01-17 | Merged in jlec/liblangtag (pull request #1: underlinking fix - missing link ↵ | Akira TAGOH | 1 | -0/+1 | |
against libdl.so) | |||||
2013-01-16 | Make sure liblangtag.so is linked against libdl.so with modules | Justin Lecher | 1 | -0/+1 | |
fixes underlinking, see https://bugs.gentoo.org/show_bug.cgi?id=451546 Signed-off-by: Justin Lecher <jlec@gentoo.org> | |||||
2012-12-19 | Update doc | Akira TAGOH | 1 | -0/+8 | |
2012-12-19 | Do not export the iterator structures' implementation | Akira TAGOH | 4 | -9/+9 | |
2012-12-19 | Update docs | Akira TAGOH | 4 | -1/+138 | |
2012-12-19 | Define LT_ITER_INIT | Akira TAGOH | 15 | -21/+35 | |
2012-12-19 | add missing files to be ignored in docs | Akira TAGOH | 1 | -0/+2 | |
2012-12-19 | remove the debugging code | Akira TAGOH | 1 | -2/+0 | |
2012-12-12 | Update .gitignore even if srcdir != builddir | Akira TAGOH | 1 | -2/+2 | |
When srcdir != builddir, autotools sets VPATH = @srcdir@. due to this and unfortunately the top directory has same name to liblangtag, where contains the library's source code, make confuses the top directory is the target directory for 'liblangtag'. .gitignore is already available since building is performed at the top therefore .gitignore considered available. To avoid this confusion on make, abs_srcdir has to be used for target. | |||||
2012-12-12 | Fix to be able to enable modules and a build issue with modules enabled. sigh | Akira TAGOH | 3 | -10/+9 | |
2012-12-12 | Fix warnings on building liblangtag-gobject | Akira TAGOH | 5 | -1/+29 | |
2012-12-12 | Update doc | Akira TAGOH | 1 | -0/+10 | |
2012-12-12 | API CHANGED: lt_tag_transform() returns lt_tag_t instead of char * | Akira TAGOH | 4 | -55/+50 | |
to reduce the duplicate work on the tag parser and possibly in applications | |||||
2012-12-11 | Fix lt_tag_convert_from_locale() to get correct result | Akira TAGOH | 3 | -38/+100 | |
also added lt_tag_convert_from_locale_string() | |||||
2012-12-10 | Fix the matching algorithm on lt_tag_transform() | Akira TAGOH | 4 | -44/+180 | |
2012-12-10 | Fix the file open error in the debugging mode when srcdir != builddir | Akira TAGOH | 1 | -2/+15 | |
2012-12-10 | Don't output an error message even if no data is set in lt_error_t | Akira TAGOH | 1 | -1/+2 | |
2012-12-07 | Use AC_USE_SYSTEM_EXTENSIONS instead of defining _GNU_SOURCE | Akira TAGOH | 2 | -5/+2 | |
2012-12-03 | Replace '_' to '-' in lt_tag_transform() | Akira TAGOH | 1 | -1/+1 | |
likelySubtags.xml contains '_', which isn't impossible to match the tags in lt_tag_t. this usually means lt_tag_transform() doesn't work without this fix. After this fix, following code just works: lt_tag_t *tag; char *s; lt_tag_parse(tag, "zh-TW", NULL); s = lt_tag_transform(tag, NULL)); printf("%s\n", s); free(s); -- zh-Hant-TW | |||||
2012-12-03 | Fix portability issue in vsnprintf | Akira TAGOH | 2 | -13/+94 | |
2012-11-29 | Fix build issue when srcdir != builddir | Akira TAGOH | 3 | -1/+4 | |