Show
Ignore:
Timestamp:
23/03/08 21:01:24 (8 months ago)
Author:
Rémi Denis-Courmont <rem@videolan.org>
git-committer:
Rémi Denis-Courmont <rem@videolan.org> 1206302484 +0200
git-parent:

[6abf349d0ab414b10c31c8a5b1772bda356eb141]

git-author:
Rémi Denis-Courmont <rem@videolan.org> 1206302484 +0200
Message:

Switch to gettext 0.17

The whole point of keeping the m4 and po/Makefile.in.in is to not need
to have the same version all over the place anyway, otherwise we might
as well put all these files to .gitignore...

Remove some old m4 macros as well.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • m4/size_max.m4

    r1263062 r7bbc254  
    1 # size_max.m4 serial 5 
     1# size_max.m4 serial 6 
    22dnl Copyright (C) 2003, 2005-2006 Free Software Foundation, Inc. 
    33dnl This file is free software; the Free Software Foundation 
     
    2727      dnl than the type 'unsigned long'. Try hard to find a definition that can 
    2828      dnl be used in a preprocessor #if, i.e. doesn't contain a cast. 
    29       _AC_COMPUTE_INT([sizeof (size_t) * CHAR_BIT - 1], size_t_bits_minus_1
     29      AC_COMPUTE_INT([size_t_bits_minus_1], [sizeof (size_t) * CHAR_BIT - 1]
    3030        [#include <stddef.h> 
    3131#include <limits.h>], size_t_bits_minus_1=) 
    32       _AC_COMPUTE_INT([sizeof (size_t) <= sizeof (unsigned int)], fits_in_uint
     32      AC_COMPUTE_INT([fits_in_uint], [sizeof (size_t) <= sizeof (unsigned int)]
    3333        [#include <stddef.h>], fits_in_uint=) 
    3434      if test -n "$size_t_bits_minus_1" && test -n "$fits_in_uint"; then 
     
    6161  fi 
    6262]) 
     63 
     64dnl Autoconf >= 2.61 has AC_COMPUTE_INT built-in. 
     65dnl Remove this when we can assume autoconf >= 2.61. 
     66m4_ifdef([AC_COMPUTE_INT], [], [ 
     67  AC_DEFUN([AC_COMPUTE_INT], [_AC_COMPUTE_INT([$2],[$1],[$3],[$4])]) 
     68])