~ubuntu-branches/debian/sid/ncurses/sid

« back to all changes in this revision

Viewing changes to panel/llib-lpaneltw

  • Committer: Package Import Robot
  • Author(s): Sven Joachim
  • Date: 2015-08-17 18:01:53 UTC
  • mfrom: (1.32.11)
  • Revision ID: package-import@ubuntu.com-20150817180153-ywf02awpkuzvqwdv
Tags: 6.0+20150810-1
* New upstream release.
  - Fix comparison against "/usr/include" in misc/gen-pkgconfig.in
    (Closes: #790548).
* Configure with "--with-abi-version=5", upstream defaults to abi 6 now.
* Configure with "--with-versioned-syms" (Closes: #788610).
  - Bump minimal versions of all symbols as well as shlibs to 6.
* After building the wide library, install it into a temporary
  scratchdir so that test/configure can find the necessary auxiliary
  files (see #786436).
* Drop the libncursesw5-dev build-dependency.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
/****************************************************************************
2
 
 * Copyright (c) 2010 Free Software Foundation, Inc.                        *
 
2
 * Copyright (c) 2010-2010,2015 Free Software Foundation, Inc.              *
3
3
 *                                                                          *
4
4
 * Permission is hereby granted, free of charge, to any person obtaining a  *
5
5
 * copy of this software and associated documentation files (the            *
27
27
 ****************************************************************************/
28
28
 
29
29
/****************************************************************************
30
 
 *  Author: Thomas E. Dickey                    2010                        *
 
30
 *  Author: Thomas E. Dickey       2010-on                                  *
31
31
 ****************************************************************************/
32
32
/* LINTLIBRARY */
33
33
 
181
181
#undef set_panel_userptr
182
182
int     set_panel_userptr(
183
183
                PANEL   *pan, 
184
 
                void    *uptr)
 
184
                const void *uptr)
185
185
                { return(*(int *)0); }
186
186
 
187
187
#undef panel_userptr
188
 
void    *panel_userptr(
 
188
const void *panel_userptr(
189
189
                const PANEL *pan)
190
 
                { return(*(void **)0); }
 
190
                { return(*(const void **)0); }
191
191
 
192
192
/* ./p_win.c */
193
193