Blame thirdparty/libjpeg-turbo/libjpeg-turbo-2.0.6/java/org/libjpegturbo/turbojpeg/TJLoader-unix.java.in

shun-iwasawa 82a8f5
/*
shun-iwasawa 82a8f5
 * Copyright (C)2011-2013, 2016 D. R. Commander.  All Rights Reserved.
shun-iwasawa 82a8f5
 *
shun-iwasawa 82a8f5
 * Redistribution and use in source and binary forms, with or without
shun-iwasawa 82a8f5
 * modification, are permitted provided that the following conditions are met:
shun-iwasawa 82a8f5
 *
shun-iwasawa 82a8f5
 * - Redistributions of source code must retain the above copyright notice,
shun-iwasawa 82a8f5
 *   this list of conditions and the following disclaimer.
shun-iwasawa 82a8f5
 * - Redistributions in binary form must reproduce the above copyright notice,
shun-iwasawa 82a8f5
 *   this list of conditions and the following disclaimer in the documentation
shun-iwasawa 82a8f5
 *   and/or other materials provided with the distribution.
shun-iwasawa 82a8f5
 * - Neither the name of the libjpeg-turbo Project nor the names of its
shun-iwasawa 82a8f5
 *   contributors may be used to endorse or promote products derived from this
shun-iwasawa 82a8f5
 *   software without specific prior written permission.
shun-iwasawa 82a8f5
 *
shun-iwasawa 82a8f5
 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS",
shun-iwasawa 82a8f5
 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
shun-iwasawa 82a8f5
 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
shun-iwasawa 82a8f5
 * ARE DISCLAIMED.  IN NO EVENT SHALL THE COPYRIGHT HOLDERS OR CONTRIBUTORS BE
shun-iwasawa 82a8f5
 * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
shun-iwasawa 82a8f5
 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
shun-iwasawa 82a8f5
 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
shun-iwasawa 82a8f5
 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
shun-iwasawa 82a8f5
 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
shun-iwasawa 82a8f5
 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
shun-iwasawa 82a8f5
 * POSSIBILITY OF SUCH DAMAGE.
shun-iwasawa 82a8f5
 */
shun-iwasawa 82a8f5
shun-iwasawa 82a8f5
package org.libjpegturbo.turbojpeg;
shun-iwasawa 82a8f5
shun-iwasawa 82a8f5
final class TJLoader {
shun-iwasawa 82a8f5
  static void load() {
shun-iwasawa 82a8f5
    try {
shun-iwasawa 82a8f5
      System.loadLibrary("turbojpeg");
shun-iwasawa 82a8f5
    } catch (java.lang.UnsatisfiedLinkError e) {
shun-iwasawa 82a8f5
      String os = System.getProperty("os.name").toLowerCase();
shun-iwasawa 82a8f5
      if (os.indexOf("mac") >= 0) {
shun-iwasawa 82a8f5
        try {
shun-iwasawa 82a8f5
          System.load("@CMAKE_INSTALL_FULL_LIBDIR@/libturbojpeg.jnilib");
shun-iwasawa 82a8f5
        } catch (java.lang.UnsatisfiedLinkError e2) {
shun-iwasawa 82a8f5
          System.load("/usr/lib/libturbojpeg.jnilib");
shun-iwasawa 82a8f5
        }
shun-iwasawa 82a8f5
      } else {
shun-iwasawa 82a8f5
        try {
shun-iwasawa 82a8f5
          System.load("@CMAKE_INSTALL_FULL_LIBDIR@/libturbojpeg.so");
shun-iwasawa 82a8f5
        } catch (java.lang.UnsatisfiedLinkError e3) {
shun-iwasawa 82a8f5
          String libdir = "@CMAKE_INSTALL_FULL_LIBDIR@";
shun-iwasawa 82a8f5
          if (libdir.equals("@CMAKE_INSTALL_DEFAULT_PREFIX@/lib64")) {
shun-iwasawa 82a8f5
            System.load("@CMAKE_INSTALL_DEFAULT_PREFIX@/lib32/libturbojpeg.so");
shun-iwasawa 82a8f5
          } else if (libdir.equals("@CMAKE_INSTALL_DEFAULT_PREFIX@/lib32")) {
shun-iwasawa 82a8f5
            System.load("@CMAKE_INSTALL_DEFAULT_PREFIX@/lib64/libturbojpeg.so");
shun-iwasawa 82a8f5
          } else {
shun-iwasawa 82a8f5
            throw e3;
shun-iwasawa 82a8f5
          }
shun-iwasawa 82a8f5
        }
shun-iwasawa 82a8f5
      }
shun-iwasawa 82a8f5
    }
shun-iwasawa 82a8f5
  }
shun-iwasawa 82a8f5
}