Mercurial > hg > octave-kai > gnulib-hg
view m4/gnu-source.m4 @ 3197:cd2c67393122
*** empty log message ***
author | Jim Meyering <jim@meyering.net> |
---|---|
date | Sat, 03 Mar 2001 19:06:28 +0000 |
parents | 3dbc76440590 |
children | 81d88e517811 |
line wrap: on
line source
#serial 2 # Make sure _GNU_SOURCE is defined where necessary: as early as possible # for configure-time tests, as well as for every source file that includes # config.h. # From Jim Meyering. AC_DEFUN(AC__GNU_SOURCE, [ # Make sure that _GNU_SOURCE is defined for all subsequent # configure-time compile tests. # This definition must be emitted (into confdefs.h) before any # test that involves compilation. cat >>confdefs.h <<\EOF #ifndef _GNU_SOURCE # define _GNU_SOURCE #endif EOF # Emit this code into config.h.in. # The ifndef is to avoid redefinition warnings. AH_VERBATIM([_GNU_SOURCE], [#ifndef _GNU_SOURCE # define _GNU_SOURCE #endif]) ])