1
0
Fork 0
mirror of git://git.gnupg.org/gnupg.git synced 2025-07-03 22:56:33 +02:00

* configure.ac (ALL_LINGUAS): Removed.

* Makefile.am (LDADD): Replaced INTLLIBS by LIBINTL.

* Makefile.am (gpgkeys_hkp_LDADD): Replaced INTLLIBS by LIBINTL.

* ca.po: Updated.

* autogen.sh: Run aclocal with -I m4.

* Makefile.am: Replaced INTLLIBS by LIBINTL.

* Makefile.am (http-test): Replaced INTLLIBS by LIBINTL.
This commit is contained in:
Werner Koch 2004-08-09 19:47:08 +00:00
parent 3deac5e8b1
commit c6b88a12dd
42 changed files with 3545 additions and 4857 deletions

View file

@ -1,3 +1,12 @@
2004-08-09 Werner Koch <wk@g10code.de>
* Makefile.am (LDADD): Replaced INTLLIBS by LIBINTL.
2004-08-02 Werner Koch <wk@g10code.de>
* g10.c (main): Extra paranoid check to make sure we are not
running setuid anymore.
2004-07-30 Werner Koch <wk@g10code.de>
* g10.c: New alias --throw-keyid for --throw-keyids, so that it

View file

@ -114,7 +114,7 @@ gpgv_SOURCES = gpgv.c \
# ks-db.h \
# $(common_source)
LDADD = $(needed_libs) @INTLLIBS@ @CAPLIBS@ @ZLIBS@ @W32LIBS@
LDADD = $(needed_libs) @LIBINTL@ @CAPLIBS@ @ZLIBS@ @W32LIBS@
# gpg gets LIBOBJS to add in mkdtemp if the platform doesn't have it
gpg_LDADD = @LIBOBJS@ $(LDADD) @DLLIBS@ @NETLIBS@

View file

@ -1426,6 +1426,13 @@ main( int argc, char **argv )
maybe_setuid = 0;
/* Okay, we are now working under our real uid */
#if defined(HAVE_GETUID) && defined(HAVE_GETEUID)
/* There should be no way to get to this spot while still carrying
setuid privs. Just in case, bomb out if we are. */
if(getuid()!=geteuid())
BUG();
#endif
set_native_charset (NULL); /* Try to auto set the character set */
if( default_config )