Changeset 55123 in vbox for trunk/src/VBox/RDP/client-1.8.3/xclip.c
- Timestamp:
- Apr 8, 2015 9:40:02 AM (10 years ago)
- svn:sync-xref-src-repo-rev:
- 99420
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/RDP/client-1.8.3/xclip.c
r55121 r55123 19 19 along with this program. If not, see <http://www.gnu.org/licenses/>. 20 20 */ 21 22 /* 23 * Oracle GPL Disclaimer: For the avoidance of doubt, except that if any license choice 24 * other than GPL or LGPL is available it will apply instead, Oracle elects to use only 25 * the General Public License version 2 (GPLv2) at this time for any software where 26 * a choice of GPL license versions is made available with the language indicating 27 * that GPLv2 or any later version may be used, or where a choice of which version 28 * of the GPL is applied is otherwise unspecified. 29 */ 21 30 22 31 #include <X11/Xlib.h> … … 37 46 #ifdef HAVE_ICONV_H 38 47 #include <langinfo.h> 48 49 #if defined(RT_OS_SOLARIS) && !defined(_XPG6) 50 # define VBOX_XPG6_TMP_DEF 51 # define _XPG6 52 #endif 53 #if defined(RT_OS_SOLARIS) && defined(__USE_LEGACY_PROTOTYPES__) 54 # define VBOX_LEGACY_PROTO_TMP_DEF 55 # undef __USE_LEGACY_PROTOTYPES__ 56 # endif 39 57 #include <iconv.h> 58 #if defined(VBOX_XPG6_TMP_DEF) 59 # undef _XPG6 60 # undef VBOX_XPG6_TMP_DEF 61 #endif 62 #if defined(VBOX_LEGACY_PROTO_TMP_DEF) 63 # define __USE_LEGACY_PROTOTYPES__ 64 # undef VBOX_LEGACY_PROTO_TMP_DEF 65 #endif 66 40 67 #define USE_UNICODE_CLIPBOARD 41 68 #endif
Note:
See TracChangeset
for help on using the changeset viewer.