~ubuntu-branches/ubuntu/vivid/ghostscript/vivid-security

« back to all changes in this revision

Viewing changes to contrib/gomni.c

  • Committer: Package Import Robot
  • Author(s): Till Kamppeter
  • Date: 2013-08-09 20:01:36 UTC
  • mfrom: (1.1.37)
  • Revision ID: package-import@ubuntu.com-20130809200136-amb6zrr7hnjb5jq9
Tags: 9.08~rc1~dfsg-0ubuntu1
* New upstream release
   - Ghostscript 9.08rc1.
   - We are using the system's liblcms2 and libopenjpeg now.
* debian/patches/020130401-852e545-pxl-xl-driver-produced-drawing-commands-without-setting-color-space.patch:
  Removed patch backported from upstream.
* debian/patches/ojdk-8007925+8007926.patch,
  debian/patches/ojdk-8007927.patch,
  debian/patches/ojdk-8007929.patch,
  debian/patches/ojdk-8009654.patch: Removed patches on build in liblcms2, we
  use the system's liblcms2 now.
* debian/patches/2001_docdir_fix_for_debian.patch: Manually updated to new
  upstream source code.
* debian/patches/2003_support_multiarch.patch: Refreshed with quilt.
* debian/control: Added build dependencies on liblcms2-dev and
  libopenjpeg-dev.
* debian/rules: Check for removed lcms2/ and openjpeg/ subdirectories in
  the repackaging check again, also set build options for shared liblcms2
  and libopenjpeg libraries.
* debian/rules: Makefile.in and configure.ac are in the root directory of
  the source now and do not need to get linked from base/. Also there is no
  gstoraster and gstopxl CUPS filter in the package any more and no
  "install-cups" make target any more.
* debian/control, debian/rules, debian/ghostscript-cups.install,
  debian/ghostscript-cups.ppd-updater: Removed the ghostscript-cups binary
  package. The files are now provided by cups-filters.
* debian/symbols.common: Updated for new upstream source. Applied patch
  which dpkg-gensymbols generated for debian/libgs9.symbols to this file.

Show diffs side-by-side

added added

removed removed

Lines of Context:
790
790
                                            "Devicestring");
791
791
          if (pszDeviceLib)
792
792
          {
793
 
              sprintf (pszDeviceLib, "%s%s", apszLibraryPaths[i], cOmnilib);
 
793
              gs_sprintf (pszDeviceLib, "%s%s", apszLibraryPaths[i], cOmnilib);
794
794
 
795
795
              pDev->hmodOmni = g_module_open (pszDeviceLib, (GModuleFlags)0);
796
796
 
817
817
                                               "Devicestring");
818
818
             if (pszDeviceLib)
819
819
             {
820
 
                 sprintf (pszDeviceLib, "%s%s", apszLibraryPaths[i], cOmnilib);
 
820
                 gs_sprintf (pszDeviceLib, "%s%s", apszLibraryPaths[i], cOmnilib);
821
821
 
822
822
                 pModule = g_module_open (pszDeviceLib, (GModuleFlags)0);
823
823
 
1053
1053
 
1054
1054
            if (pszDeviceLib)
1055
1055
            {
1056
 
                sprintf (pszDeviceLib, "%s%s", apszLibraryPaths[i], cDialogName);
 
1056
                gs_sprintf (pszDeviceLib, "%s%s", apszLibraryPaths[i], cDialogName);
1057
1057
 
1058
1058
                if (fDebugOutput) dprintf1 ("attempting to load - %s\n", pszDeviceLib);
1059
1059
 
1079
1079
 
1080
1080
               if (pszDeviceLib)
1081
1081
               {
1082
 
                   sprintf (pszDeviceLib, "%s%s", apszLibraryPaths[i], cDialogName);
 
1082
                   gs_sprintf (pszDeviceLib, "%s%s", apszLibraryPaths[i], cDialogName);
1083
1083
 
1084
1084
                   pModule = g_module_open (pszDeviceLib, (GModuleFlags)0);
1085
1085