~ubuntu-branches/debian/sid/freeciv/sid

« back to all changes in this revision

Viewing changes to m4/c99.m4

  • Committer: Bazaar Package Importer
  • Author(s): Clint Adams, Karl Goetz, Clint Adams
  • Date: 2010-02-23 22:09:02 UTC
  • mfrom: (7.1.5 sid)
  • Revision ID: james.westby@ubuntu.com-20100223220902-s3spqi1x4e190y0t
[ Karl Goetz ]
* Remove civserver files in /etc/ggzd/ (Closes: 523772, 517787)
* Adding ${misc:Depends} to all binary packages (lintian warnings)

[ Clint Adams ]
* New upstream version.
  - Drop data_dsc_use_bindir.diff (binary pathnames have changed).

Show diffs side-by-side

added added

removed removed

Lines of Context:
35
35
  AC_CACHE_CHECK([for C99 variable arrays],
36
36
    [ac_cv_c99_variable_arrays],
37
37
    [AC_TRY_COMPILE(
38
 
        [],
 
38
        [
 
39
#include <string.h>
 
40
#include <stdio.h>
 
41
],
39
42
        [char *s1 = "foo", *s2 = "bar";
40
43
         char s3[strlen(s1) + strlen(s2) + 1];
41
44
         sprintf(s3, "%s%s", s1, s2);],