From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from pigeon.gentoo.org ([208.92.234.80] helo=lists.gentoo.org) by finch.gentoo.org with esmtp (Exim 4.60) (envelope-from ) id 1Q1cVW-0005GS-EY for garchives@archives.gentoo.org; Mon, 21 Mar 2011 10:38:42 +0000 Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 192E11C02B; Mon, 21 Mar 2011 10:38:33 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) by pigeon.gentoo.org (Postfix) with ESMTP id 969E11C002 for ; Mon, 21 Mar 2011 10:38:01 +0000 (UTC) Received: from paul.ibi.kfa-juelich.de (ibi109.ibi.kfa-juelich.de [134.94.85.208]) (using TLSv1 with cipher DHE-RSA-CAMELLIA256-SHA (256/256 bits)) (No client certificate requested) (Authenticated sender: jlec) by smtp.gentoo.org (Postfix) with ESMTPSA id 842EC1B407E; Mon, 21 Mar 2011 10:38:00 +0000 (UTC) Message-ID: <4D872A84.4020101@gentoo.org> Date: Mon, 21 Mar 2011 11:37:56 +0100 From: justin User-Agent: Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.2.15) Gecko/20110307 Lightning/1.0b3pre Thunderbird/3.1.9 Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-dev@lists.gentoo.org Reply-to: gentoo-dev@lists.gentoo.org MIME-Version: 1.0 To: gentoo-dev@lists.gentoo.org Subject: Re: [gentoo-dev] RFC: emboss.eclass as replacement for embassy.eclass References: <4D7F1633.1080104@gentoo.org> <201103161451.47198.vapier@gentoo.org> <4D8504EC.8060407@gentoo.org> <201103201439.18493.vapier@gentoo.org> In-Reply-To: <201103201439.18493.vapier@gentoo.org> X-Enigmail-Version: 1.1.2 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="------------enig52EAC7E353AEF48BA907EC0E" X-Archives-Salt: X-Archives-Hash: 1e318061517124934ff425124c843835 This is an OpenPGP/MIME signed message (RFC 2440 and 3156) --------------enig52EAC7E353AEF48BA907EC0E Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable During closer investigation I found that it alos changes data width and similar. probably something which should be checked during configure. I attached some code as example: from configure: AC_ARG_ENABLE(64, AS_HELP_STRING([--enable-64], [64 bit pointers])) if test "${enable_64}" =3D "yes" ; then AC_MSG_CHECKING(for 64bit compilation support) dnl Test for Linux 64 bit if test "`uname`" =3D "Linux"; then CPPFLAGS=3D"-DAJ_Linux64 $CPPFLAGS" fi exmaple header: dnl Test for FreeBSD 64 bit #if !defined(AJ_LinuxLF) && !defined(AJ_SolarisLF) && !defined(AJ_IRIXLF) && !defined(AJ_AIXLF) && !defined(AJ_HPUXLF) && !defined(AJ_MACOSXLF) && !defined(AJ_FreeBSDLF) && !defined(WIN32) typedef int ajint; typedef long ajlong; typedef unsigned int ajuint; typedef short ajshort; typedef unsigned short ajushort; typedef unsigned long ajulong; #endif #ifdef AJ_LinuxLF #define HAVE64 typedef int ajint; typedef long long ajlong; typedef unsigned int ajuint; typedef short ajshort; typedef unsigned short ajushort; typedef unsigned long long ajulong; #define ftell(a) ftello(a) #define fseek(a,b,c) fseeko(a,b,c) #endif --------------enig52EAC7E353AEF48BA907EC0E Content-Type: application/pgp-signature; name="signature.asc" Content-Description: OpenPGP digital signature Content-Disposition: attachment; filename="signature.asc" -----BEGIN PGP SIGNATURE----- Version: GnuPG v2.0.17 (GNU/Linux) Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org/ iEYEARECAAYFAk2HKoQACgkQgAnW8HDreRaPmACaAytdEQu3nYbYR3ohHQCJlOzR doYAn1w3Nikxsgk/SkiT3LP12fobkvQi =skWx -----END PGP SIGNATURE----- --------------enig52EAC7E353AEF48BA907EC0E--