Update upstream source from tag 'upstream/1.4.1'
Update to upstream version '1.4.1' with Debian dir e4cf3c392f6bec9b28fc687d2a50c850142b6c95
.gitignore
0 → 100644
ABOUT-NLS
deleted
100644 → 0
This diff is collapsed.
INSTALL
deleted
100644 → 0
... | ... | @@ -27,9 +27,18 @@ SUBDIRS = \ |
ACLOCAL_AMFLAGS = -I m4 | ||
# To register as an AppStream component to be visible in the software center | ||
# (See http://www.freedesktop.org/software/appstream/docs/ for more details): | ||
appdata_DATA = \ | ||
m17n.appdata.xml \ | ||
$(NULL) | ||
appdatadir = $(datadir)/metainfo | ||
EXTRA_DIST = \ | ||
autogen.sh \ | ||
@[email protected] \ | ||
$(appdata_DATA) \ | ||
$(NULL) | ||
noinst_DIST = \ | ||
... | ... |
Makefile.in
deleted
100644 → 0
This diff is collapsed.
aclocal.m4
deleted
100644 → 0
This diff is collapsed.
... | ... | @@ -18,10 +18,10 @@ which gnome-autogen.sh || { |
exit 1 | ||
} | ||
export CFLAGS="-g -O0" | ||
export CXXFLAGS="$CFLAGS" | ||
export CFLAGS=${CFLAGS-"-Wall"} | ||
export CXXFLAGS=${CXXFLAGS-"$CFLAGS"} | ||
ACLOCAL_FLAGS="$ACLOCAL_FLAGS -I m4" | ||
REQUIRED_AUTOMAKE_VERSION=1.10 | ||
. gnome-autogen.sh | ||
. gnome-autogen.sh "[email protected]" |
codereview.settings
0 → 100644
compile
deleted
100755 → 0
#! /bin/sh | ||
# Wrapper for compilers which do not understand '-c -o'. | ||
scriptversion=2012-01-04.17; # UTC | ||
# Copyright (C) 1999, 2000, 2003, 2004, 2005, 2009, 2010, 2012 Free | ||
# Software Foundation, Inc. | ||
# Written by Tom Tromey <[email protected]>. | ||
# | ||
# This program is free software; you can redistribute it and/or modify | ||
# it under the terms of the GNU General Public License as published by | ||
# the Free Software Foundation; either version 2, or (at your option) | ||
# any later version. | ||
# | ||
# This program is distributed in the hope that it will be useful, | ||
# but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
# GNU General Public License for more details. | ||
# | ||
# You should have received a copy of the GNU General Public License | ||
# along with this program. If not, see <http://www.gnu.org/licenses/>. | ||
# As a special exception to the GNU General Public License, if you | ||
# distribute this file as part of a program that contains a | ||
# configuration script generated by Autoconf, you may include it under | ||
# the same distribution terms that you use for the rest of that program. | ||
# This file is maintained in Automake, please report | ||
# bugs to <[email protected]org> or send patches to | ||
# <[email protected]>. | ||
nl=' | ||
' | ||
# We need space, tab and new line, in precisely that order. Quoting is | ||
# there to prevent tools from complaining about whitespace usage. | ||
IFS=" "" $nl" | ||
file_conv= | ||
# func_file_conv build_file lazy | ||
# Convert a $build file to $host form and store it in $file | ||
# Currently only supports Windows hosts. If the determined conversion | ||
# type is listed in (the comma separated) LAZY, no conversion will | ||
# take place. | ||
func_file_conv () | ||
{ | ||
file=$1 | ||
case $file in | ||
/ | /[!/]*) # absolute file, and not a UNC file | ||
if test -z "$file_conv"; then | ||
# lazily determine how to convert abs files | ||
case `uname -s` in | ||
MINGW*) | ||
file_conv=mingw | ||
;; | ||
CYGWIN*) | ||
file_conv=cygwin | ||
;; | ||
*) | ||
file_conv=wine | ||
;; | ||
esac | ||
fi | ||
case $file_conv/,$2, in | ||
*,$file_conv,*) | ||
;; | ||
mingw/*) | ||
file=`cmd //C echo "$file " | sed -e 's/"\(.*\) " *$/\1/'` | ||
;; | ||
cygwin/*) | ||
file=`cygpath -m "$file" || echo "$file"` | ||
;; | ||
wine/*) | ||
file=`winepath -w "$file" || echo "$file"` | ||
;; | ||
esac | ||
;; | ||
esac | ||
} | ||
# func_cl_wrapper cl arg... | ||
# Adjust compile command to suit cl | ||
func_cl_wrapper () | ||
{ | ||
# Assume a capable shell | ||
lib_path= | ||
shared=: | ||
linker_opts= | ||
for arg | ||
do | ||
if test -n "$eat"; then | ||
eat= | ||
else | ||
case $1 in | ||
-o) | ||
# configure might choose to run compile as 'compile cc -o foo foo.c'. | ||
eat=1 | ||
case $2 in | ||
*.o | *.[oO][bB][jJ]) | ||
func_file_conv "$2" | ||
set x "[email protected]" -Fo"$file" | ||
shift | ||
;; | ||
*) | ||
func_file_conv "$2" | ||
set x "[email protected]" -Fe"$file" | ||
shift | ||
;; | ||
esac | ||
;; | ||
-I*) | ||
func_file_conv "${1#-I}" mingw | ||
set x "[email protected]" -I"$file" | ||
shift | ||
;; | ||
-l*) | ||
lib=${1#-l} | ||
found=no | ||
save_IFS=$IFS | ||
IFS=';' | ||
for dir in $lib_path $LIB | ||
do | ||
IFS=$save_IFS | ||
if $shared && test -f "$dir/$lib.dll.lib"; then | ||
found=yes | ||
set x "[email protected]" "$dir/$lib.dll.lib" | ||
break | ||
fi | ||
if test -f "$dir/$lib.lib"; then | ||
found=yes | ||
set x "[email protected]" "$dir/$lib.lib" | ||
break | ||
fi | ||
done | ||
IFS=$save_IFS | ||
test "$found" != yes && set x "[email protected]" "$lib.lib" | ||
shift | ||
;; | ||
-L*) | ||
func_file_conv "${1#-L}" | ||
if test -z "$lib_path"; then | ||
lib_path=$file | ||
else | ||
lib_path="$lib_path;$file" | ||
fi | ||
linker_opts="$linker_opts -LIBPATH:$file" | ||
;; | ||
-static) | ||
shared=false | ||
;; | ||
-Wl,*) | ||
arg=${1#-Wl,} | ||
save_ifs="$IFS"; IFS=',' | ||
for flag in $arg; do | ||
IFS="$save_ifs" | ||
linker_opts="$linker_opts $flag" | ||
done | ||
IFS="$save_ifs" | ||
;; | ||
-Xlinker) | ||
eat=1 | ||
linker_opts="$linker_opts $2" | ||
;; | ||
-*) | ||
set x "[email protected]" "$1" | ||
shift | ||
;; | ||
*.cc | *.CC | *.cxx | *.CXX | *.[cC]++) | ||
func_file_conv "$1" | ||
set x "[email protected]" -Tp"$file" | ||
shift | ||
;; | ||
*.c | *.cpp | *.CPP | *.lib | *.LIB | *.Lib | *.OBJ | *.obj | *.[oO]) | ||
func_file_conv "$1" mingw | ||
set x "[email protected]" "$file" | ||
shift | ||
;; | ||
*) | ||
set x "[email protected]" "$1" | ||