Show
Ignore:
Timestamp:
23/03/08 21:01:24 (7 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/intdiv0.m4

    r1263062 r7bbc254  
    1 # intdiv0.m4 serial 1 (gettext-0.11.3
    2 dnl Copyright (C) 2002 Free Software Foundation, Inc. 
     1# intdiv0.m4 serial 2 (gettext-0.17
     2dnl Copyright (C) 2002, 2007 Free Software Foundation, Inc. 
    33dnl This file is free software; the Free Software Foundation 
    44dnl gives unlimited permission to copy and/or distribute it, 
     
    1515    gt_cv_int_divbyzero_sigfpe, 
    1616    [ 
    17       AC_TRY_RUN([ 
     17      gt_cv_int_divbyzero_sigfpe= 
     18changequote(,)dnl 
     19      case "$host_os" in 
     20        macos* | darwin[6-9]* | darwin[1-9][0-9]*) 
     21          # On MacOS X 10.2 or newer, just assume the same as when cross- 
     22          # compiling. If we were to perform the real test, 1 Crash Report 
     23          # dialog window would pop up. 
     24          case "$host_cpu" in 
     25            i[34567]86 | x86_64) 
     26              gt_cv_int_divbyzero_sigfpe="guessing yes" ;; 
     27          esac 
     28          ;; 
     29      esac 
     30changequote([,])dnl 
     31      if test -z "$gt_cv_int_divbyzero_sigfpe"; then 
     32        AC_TRY_RUN([ 
    1833#include <stdlib.h> 
    1934#include <signal.h> 
    2035 
    2136static void 
    22 #ifdef __cplusplus 
    2337sigfpe_handler (int sig) 
    24 #else 
    25 sigfpe_handler (sig) int sig; 
    26 #endif 
    2738{ 
    2839  /* Exit with code 0 if SIGFPE, with code 1 if any other signal.  */ 
     
    5263} 
    5364], gt_cv_int_divbyzero_sigfpe=yes, gt_cv_int_divbyzero_sigfpe=no, 
    54         [ 
    55           # Guess based on the CPU. 
    56           case "$host_cpu" in 
    57             alpha* | i[34567]86 | m68k | s390*) 
    58               gt_cv_int_divbyzero_sigfpe="guessing yes";; 
    59             *) 
    60               gt_cv_int_divbyzero_sigfpe="guessing no";; 
    61           esac 
    62         ]) 
     65          [ 
     66            # Guess based on the CPU. 
     67changequote(,)dnl 
     68            case "$host_cpu" in 
     69              alpha* | i[34567]86 | x86_64 | m68k | s390*) 
     70                gt_cv_int_divbyzero_sigfpe="guessing yes";; 
     71              *) 
     72                gt_cv_int_divbyzero_sigfpe="guessing no";; 
     73            esac 
     74changequote([,])dnl 
     75          ]) 
     76      fi 
    6377    ]) 
    6478  case "$gt_cv_int_divbyzero_sigfpe" in