Does now compile under MingW32/CPD 0.3
This commit is contained in:
parent
96f67a5fdc
commit
38b1b13114
@ -0,0 +1,4 @@
|
|||||||
|
2001-01-18 Werner Koch <wk@gnupg.org>
|
||||||
|
|
||||||
|
* autogen.sh: Added option --build-w32.
|
||||||
|
|
59
autogen.sh
59
autogen.sh
@ -3,27 +3,27 @@
|
|||||||
# It is only needed for the CVS version.
|
# It is only needed for the CVS version.
|
||||||
|
|
||||||
PGM=GPGME
|
PGM=GPGME
|
||||||
DIE=no
|
lib_config_files=""
|
||||||
|
autoconf_vers=2.13
|
||||||
|
automake_vers=1.4
|
||||||
|
aclocal_vers=1.4
|
||||||
|
libtool_vers=1.3
|
||||||
|
|
||||||
#
|
DIE=no
|
||||||
# Use --build-w32 to prepare the cross compiling build for Windoze
|
|
||||||
#
|
|
||||||
if test "$1" = "--build-w32"; then
|
if test "$1" = "--build-w32"; then
|
||||||
shift
|
shift
|
||||||
target=i386--mingw32
|
target=i386--mingw32
|
||||||
host=`./config.guess`
|
if [ ! -f ./config.guess ]; then
|
||||||
|
echo "./config.guess not found" >&2
|
||||||
CC="${target}-gcc"
|
|
||||||
CPP="${target}-gcc -E"
|
|
||||||
RANLIB="${target}-ranlib"
|
|
||||||
|
|
||||||
cc_version=`$CC --version`
|
|
||||||
if ! echo "$cc_version" | egrep '[0-9]+wk[0-9]+' ; then
|
|
||||||
echo "gcc version $cc_version is not supported" >&2
|
|
||||||
echo "see doc/README.W32 for instructions" >&2
|
|
||||||
exit 1
|
exit 1
|
||||||
fi
|
fi
|
||||||
|
host=`./config.guess`
|
||||||
|
|
||||||
|
if ! mingw32 --version >/dev/null; then
|
||||||
|
echo "We need at least version 0.3 of MingW32/CPD" >&2
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
|
||||||
if [ -f config.h ]; then
|
if [ -f config.h ]; then
|
||||||
if grep HAVE_DOSISH_SYSTEM config.h | grep undef >/dev/null; then
|
if grep HAVE_DOSISH_SYSTEM config.h | grep undef >/dev/null; then
|
||||||
echo "Pease run a 'make distclean' first" >&2
|
echo "Pease run a 'make distclean' first" >&2
|
||||||
@ -31,16 +31,35 @@ if test "$1" = "--build-w32"; then
|
|||||||
fi
|
fi
|
||||||
fi
|
fi
|
||||||
|
|
||||||
export CC CPP RANLIB
|
crossbindir=`mingw32 --install-dir`/bin
|
||||||
./configure --host=${host} --target=${target} $*
|
CC=`mingw32 --get-path gcc`
|
||||||
|
CPP=`mingw32 --get-path cpp`
|
||||||
|
AR=`mingw32 --get-path ar`
|
||||||
|
RANLIB=`mingw32 --get-path ranlib`
|
||||||
|
export CC CPP AR RANLIB
|
||||||
|
|
||||||
|
disable_foo_tests=""
|
||||||
|
if [ -n "$lib_config_files" ]; then
|
||||||
|
for i in $lib_config_files; do
|
||||||
|
j=`echo $i | tr '[a-z-]' '[A-Z_]'`
|
||||||
|
eval "$j=${crossbindir}/$i"
|
||||||
|
export $j
|
||||||
|
disable_foo_tests="$disable_foo_tests --disable-`echo $i| \
|
||||||
|
sed 's,-config$,,'`-test"
|
||||||
|
if [ ! -f "${crossbindir}/$i" ]; then
|
||||||
|
echo "$i not installed for MingW32" >&2
|
||||||
|
DIE=yes
|
||||||
|
fi
|
||||||
|
done
|
||||||
|
fi
|
||||||
|
[ $DIE = yes ] && exit 1
|
||||||
|
|
||||||
|
./configure --host=${host} --target=${target} \
|
||||||
|
${disable_foo_tests} $*
|
||||||
exit $?
|
exit $?
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
|
||||||
autoconf_vers=2.13
|
|
||||||
automake_vers=1.4
|
|
||||||
aclocal_vers=1.4
|
|
||||||
libtool_vers=1.3
|
|
||||||
|
|
||||||
if (autoconf --version) < /dev/null > /dev/null 2>&1 ; then
|
if (autoconf --version) < /dev/null > /dev/null 2>&1 ; then
|
||||||
if (autoconf --version | awk 'NR==1 { if( $3 >= '$autoconf_vers') \
|
if (autoconf --version | awk 'NR==1 { if( $3 >= '$autoconf_vers') \
|
||||||
|
11
build-w32
11
build-w32
@ -1,11 +0,0 @@
|
|||||||
#!/bin/sh
|
|
||||||
|
|
||||||
target=i386--mingw32
|
|
||||||
host=`./config.guess`
|
|
||||||
|
|
||||||
CC="${target}-gcc"
|
|
||||||
CPP="${target}-gcc -E"
|
|
||||||
RANLIB="${target}-ranlib"
|
|
||||||
|
|
||||||
export CC CPP RANLIB
|
|
||||||
./configure --host=${host} --target=${target} $*
|
|
@ -13,7 +13,7 @@ AM_MAINTAINER_MODE
|
|||||||
# AGE, set REVISION to 0.
|
# AGE, set REVISION to 0.
|
||||||
# 3. Interfaces removed (BAD, breaks upward compatibility): Increment
|
# 3. Interfaces removed (BAD, breaks upward compatibility): Increment
|
||||||
# CURRENT, set AGE and REVISION to 0.
|
# CURRENT, set AGE and REVISION to 0.
|
||||||
AM_INIT_AUTOMAKE(gpgme,0.1.4)
|
AM_INIT_AUTOMAKE(gpgme,0.1.4a)
|
||||||
LIBGPGME_LT_CURRENT=2
|
LIBGPGME_LT_CURRENT=2
|
||||||
LIBGPGME_LT_AGE=2
|
LIBGPGME_LT_AGE=2
|
||||||
LIBGPGME_LT_REVISION=0
|
LIBGPGME_LT_REVISION=0
|
||||||
|
@ -176,7 +176,7 @@ gpgme_set_textmode ( GpgmeCtx c, int yes )
|
|||||||
void
|
void
|
||||||
gpgme_set_keylist_mode ( GpgmeCtx c, int mode )
|
gpgme_set_keylist_mode ( GpgmeCtx c, int mode )
|
||||||
{
|
{
|
||||||
if (c)
|
if (!c)
|
||||||
return;
|
return;
|
||||||
c->keylist_mode = mode;
|
c->keylist_mode = mode;
|
||||||
}
|
}
|
||||||
|
@ -42,7 +42,7 @@ extern "C" {
|
|||||||
* let autoconf (using the AM_PATH_GPGME macro) check that this
|
* let autoconf (using the AM_PATH_GPGME macro) check that this
|
||||||
* header matches the installed library.
|
* header matches the installed library.
|
||||||
* Warning: Do not edit the next line. configure will do that for you! */
|
* Warning: Do not edit the next line. configure will do that for you! */
|
||||||
#define GPGME_VERSION "0.1.4"
|
#define GPGME_VERSION "0.1.4a"
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user