ilversion.c 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  1. /*
  2. * CDE - Common Desktop Environment
  3. *
  4. * Copyright (c) 1993-2012, The Open Group. All rights reserved.
  5. *
  6. * These libraries and programs are free software; you can
  7. * redistribute them and/or modify them under the terms of the GNU
  8. * Lesser General Public License as published by the Free Software
  9. * Foundation; either version 2 of the License, or (at your option)
  10. * any later version.
  11. *
  12. * These libraries and programs are distributed in the hope that
  13. * they will be useful, but WITHOUT ANY WARRANTY; without even the
  14. * implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
  15. * PURPOSE. See the GNU Lesser General Public License for more
  16. * details.
  17. *
  18. * You should have received a copy of the GNU Lesser General Public
  19. * License along with these librararies and programs; if not, write
  20. * to the Free Software Foundation, Inc., 51 Franklin Street, Fifth
  21. * Floor, Boston, MA 02110-1301 USA
  22. */
  23. /* $XConsortium: ilversion.c /main/3 1995/10/23 16:02:54 rswiston $ */
  24. /* /ilc/ilversion.c : Contains the IL version string
  25. (which should really be dynamically generated).
  26. */
  27. #include "ilint.h"
  28. /*
  29. Image Library version <external>[ <baselevel>], for <OS> <OS version> '<library name>'
  30. WARNING: FIXED FORMAT EXPECTED BY /ilc/iltiffwrite.c !!!
  31. See notes below "ilVersionName".
  32. */
  33. #ifdef __hpux
  34. IL_PRIVATE
  35. char _ilVersionString[] = "HP IL BETA v 23. bl08";
  36. /* nnnnn vvvvvv bbbb see below
  37. xxxxxxxxxxxxxxxxx total size = 17 chars
  38. The above version string *must* maintain the syntax and position of all fields
  39. before the ";". The strings have the following format; each string is 5 chars:
  40. nnnnn A 5 char fixed string equal to "HP IL ".
  41. vvvvvv A 6 char string in the format "v!!.??", where !! is the two-digit
  42. major version number (" n" if less than 10), and ?? is the minor
  43. version number ("n " if less than 10). Examples: "v10.12",
  44. "v 9.6 ".
  45. bbbbb A 4 char string in the format "bl??", where ?? is the baselevel
  46. number (e.g. "bl01", "bl56").
  47. */
  48. #else
  49. IL_PRIVATE
  50. char _ilVersionString[] = "@(#)HP IL v 2.1 bl06; Image Library for Domain/OS SR10.X 'il'";
  51. /* nnnnn vvvvvv bbbb see above
  52. xxxxxxxxxxxxxxxxx total size = 17 chars
  53. */
  54. #endif