aboutsummaryrefslogtreecommitdiffstats
path: root/wsutil/wsgcrypt.h
AgeCommit message (Collapse)AuthorFilesLines
2014-08-27Use the <wsutil/ws_diag_control.h> stuff to disable -Wdeprecated-declarations.Guy Harris1-39/+3
Change-Id: I4b1fcbf5b25f2515d45015c9e1c4a94d6cfbc79c Reviewed-on: https://code.wireshark.org/review/3883 Reviewed-by: Guy Harris <guy@alum.mit.edu>
2014-04-17Fixed typo HAVE_LIBGRYPT -> HAVE_LIBGCRYPTStig Bjørlykke1-1/+1
Change-Id: I85772e1f4d4882810bf82a9903e30156eb374df9 Reviewed-on: https://code.wireshark.org/review/1191 Reviewed-by: Stig Bjørlykke <stig@bjorlykke.org>
2014-03-04Remove all $Id$ from top of fileAlexis La Goutte1-2/+0
(Using sed : sed -i '/^ \* \$Id\$/,+1 d') Fix manually some typo (in export_object_dicom.c and crc16-plain.c) Change-Id: I4c1ae68d1c4afeace8cb195b53c715cf9e1227a8 Reviewed-on: https://code.wireshark.org/review/497 Reviewed-by: Anders Broman <a.broman58@gmail.com>
2014-02-25Remove trailing whitespaceBill Meier1-3/+3
Change-Id: I8116f63ff88687c8db3fd6e8e23b22ab2f759af0 Reviewed-on: https://code.wireshark.org/review/385 Reviewed-by: Bill Meier <wmeier@newsguy.com> Tested-by: Bill Meier <wmeier@newsguy.com>
2014-02-09Fix Bug 6489 to stop compiler warning on gcrypt deprecated delcarationsHadriel Kaplan1-3/+3
The libgcrypt library has several deprecated functions exported, that we don't use. Unfortunately the GCC compiler warns about these deprecated functions regardless, which is quite annoying. This commit makes clang/gcc ignore the deprecated attribute, for gcrypt.h only. The danger with this is if gcrypt ever deprecates a function we actually *use*, then we won't see the warning. So I'm not sure if it's a good or bad idea to do this change, but it's really annoying to see the warnings and makes finding real warnings difficult. Change-Id: I03e80a6e7e4833ce0f709088c9ab4af98193db3d Reviewed-on: https://code.wireshark.org/review/128 Reviewed-by: Martin Kaiser <wireshark@kaiser.cx> Tested-by: Martin Kaiser <wireshark@kaiser.cx>
2013-03-14Use pragma diagnostic also when compiling with clang.Stig Bjørlykke1-0/+11
svn path=/trunk/; revision=48295
2013-02-21use pragma GCC diagnostic to work around gcrypt.h warningsMartin Kaiser1-0/+34
distinguish between different gcc versions this should allow a clean build with libgcrypt 1.5.0 svn path=/trunk/; revision=47803
2013-02-21add wsutil/wsgcrypt.h as a wrapper around libgcrypt's gcrypt.hMartin Kaiser1-0/+35
(not used for now) svn path=/trunk/; revision=47801