| OLD | NEW |
| 1 #!/bin/bash | 1 #!/bin/bash |
| 2 # Copyright (c) 2015 The Native Client Authors. All rights reserved. | 2 # Copyright (c) 2015 The Native Client Authors. All rights reserved. |
| 3 # Use of this source code is governed by a BSD-style license that can be | 3 # Use of this source code is governed by a BSD-style license that can be |
| 4 # found in the LICENSE file. | 4 # found in the LICENSE file. |
| 5 | 5 |
| 6 # Samba doesn't seem to support building outside the source tree. | 6 # Samba doesn't seem to support building outside the source tree. |
| 7 BUILD_DIR=${SRC_DIR} | 7 BUILD_DIR=${SRC_DIR} |
| 8 | 8 |
| 9 #NACLPORTS_CPPFLAGS+=" -Dmain=nacl_main" | |
| 10 | |
| 11 #NACLPORTS_LDFLAGS+="${NACL_CLI_MAIN_LIB}" | 9 #NACLPORTS_LDFLAGS+="${NACL_CLI_MAIN_LIB}" |
| 12 | 10 |
| 13 EnableGlibcCompat | 11 EnableGlibcCompat |
| 14 | 12 |
| 15 ConfigureStep() { | 13 ConfigureStep() { |
| 16 conf_build=$(/bin/sh "${SCRIPT_DIR}/config.guess") | 14 conf_build=$(/bin/sh "${SCRIPT_DIR}/config.guess") |
| 17 | 15 |
| 18 SetupCrossEnvironment | 16 SetupCrossEnvironment |
| 19 | 17 |
| 20 local CONFIGURE=${NACL_CONFIGURE_PATH:-${SRC_DIR}/configure} | 18 local CONFIGURE=${NACL_CONFIGURE_PATH:-${SRC_DIR}/configure} |
| (...skipping 77 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 98 LogExecute ln -sf libwind-samba4.so libwind-samba4.so.0 | 96 LogExecute ln -sf libwind-samba4.so libwind-samba4.so.0 |
| 99 LogExecute ln -sf libtevent.so libtevent.so.0 | 97 LogExecute ln -sf libtevent.so libtevent.so.0 |
| 100 LogExecute ln -sf libgssapi-samba4.so libgssapi-samba4.so.2 | 98 LogExecute ln -sf libgssapi-samba4.so libgssapi-samba4.so.2 |
| 101 LogExecute ln -sf libhcrypto-samba4.so libhcrypto-samba4.so.5 | 99 LogExecute ln -sf libhcrypto-samba4.so libhcrypto-samba4.so.5 |
| 102 LogExecute ln -sf libheimbase-samba4.so libheimbase-samba4.so.1 | 100 LogExecute ln -sf libheimbase-samba4.so libheimbase-samba4.so.1 |
| 103 LogExecute ln -sf libndr-krb5pac.so libndr-krb5pac.so.0 | 101 LogExecute ln -sf libndr-krb5pac.so libndr-krb5pac.so.0 |
| 104 LogExecute ln -sf libtevent-util.so libtevent-util.so.0 | 102 LogExecute ln -sf libtevent-util.so libtevent-util.so.0 |
| 105 LogExecute ln -sf libsamba-credentials.so libsamba-credentials.so.0 | 103 LogExecute ln -sf libsamba-credentials.so libsamba-credentials.so.0 |
| 106 LogExecute ln -sf libsamba-hostconfig.so libsamba-hostconfig.so.0 | 104 LogExecute ln -sf libsamba-hostconfig.so libsamba-hostconfig.so.0 |
| 107 } | 105 } |
| OLD | NEW |