gnokii-commit
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[SCM] libgnokii and core programs branch, master, updated. rel_0_6_29-23


From: Daniele Forsi
Subject: [SCM] libgnokii and core programs branch, master, updated. rel_0_6_29-237-gd10718c
Date: Tue, 07 Jun 2011 20:51:47 +0000

This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "libgnokii and core programs".

The branch, master has been updated
       via  d10718c5867aa5ada5d3a721bb4e057831bf81ae (commit)
      from  c0dbbd5c5aa37fff0d89692785d7bf8f73fb7d44 (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
http://git.savannah.gnu.org/cgit/gnokii.git/commit/?id=d10718c5867aa5ada5d3a721bb4e057831bf81ae


commit d10718c5867aa5ada5d3a721bb4e057831bf81ae
Author: Daniele Forsi <address@hidden>
Date:   Tue Jun 7 22:36:34 2011 +0200

    Fix value of USE_UNIX98PTYS set in config.h at configure time
    
    Fixes from:
    /* Whether Unix98 support is available */
    #define USE_UNIX98PTYS test x$have_unix98 = xyes
    
    to:
    /* Whether Unix98 support is available */
    #define USE_UNIX98PTYS 1

diff --git a/configure.in b/configure.in
index 0673a82..741baca 100644
--- a/configure.in
+++ b/configure.in
@@ -885,7 +885,9 @@ int main()
 
 fi
 
-AC_DEFINE(USE_UNIX98PTYS, test x$have_unix98 = xyes, [Whether Unix98 support 
is available])
+if test x$have_unix98 = xyes; then
+       AC_DEFINE(USE_UNIX98PTYS, 1, [Whether Unix98 support is available])
+fi
 
 AC_TRY_COMPILE( [#define _XOPEN_SOURCE 500
                 #include <sys/types.h>

-----------------------------------------------------------------------

Summary of changes:
 configure.in |    4 +++-
 1 files changed, 3 insertions(+), 1 deletions(-)


hooks/post-receive
-- 
libgnokii and core programs



reply via email to

[Prev in Thread] Current Thread [Next in Thread]