mirror of
https://github.com/NationalSecurityAgency/ghidra.git
synced 2025-10-03 17:59:46 +02:00
Merge remote-tracking branch 'origin/GP-1830_ghidra1_BSim_GSON'
This commit is contained in:
commit
747edbfc67
6 changed files with 15 additions and 15 deletions
|
@ -1,6 +1,6 @@
|
||||||
##MODULE IP: Oxygen Icons - LGPL 3.0
|
##MODULE IP: Oxygen Icons - LGPL 3.0
|
||||||
MODULE FILE LICENSE: postgresql-15.3.tar.gz Postgresql License
|
MODULE FILE LICENSE: postgresql-15.10.tar.gz Postgresql License
|
||||||
MODULE FILE LICENSE: lib/postgresql-42.6.2.jar PostgresqlJDBC License
|
MODULE FILE LICENSE: lib/postgresql-42.7.3.jar PostgresqlJDBC License
|
||||||
MODULE FILE LICENSE: lib/commons-dbcp2-2.9.0.jar Apache License 2.0
|
MODULE FILE LICENSE: lib/commons-dbcp2-2.9.0.jar Apache License 2.0
|
||||||
MODULE FILE LICENSE: lib/commons-pool2-2.11.1.jar Apache License 2.0
|
MODULE FILE LICENSE: lib/commons-pool2-2.11.1.jar Apache License 2.0
|
||||||
MODULE FILE LICENSE: lib/commons-logging-1.2.jar Apache License 2.0
|
MODULE FILE LICENSE: lib/commons-logging-1.2.jar Apache License 2.0
|
||||||
|
|
|
@ -26,13 +26,13 @@ import java.nio.file.Files
|
||||||
import org.gradle.util.GUtil
|
import org.gradle.util.GUtil
|
||||||
|
|
||||||
// NOTE: fetchDependencies.gradle must be updated if postgresql version changes
|
// NOTE: fetchDependencies.gradle must be updated if postgresql version changes
|
||||||
def postgresql_distro = "postgresql-15.3.tar.gz"
|
def postgresql_distro = "postgresql-15.10.tar.gz"
|
||||||
|
|
||||||
dependencies {
|
dependencies {
|
||||||
api project(":Decompiler")
|
api project(":Decompiler")
|
||||||
api project(":CodeCompare")
|
api project(":CodeCompare")
|
||||||
|
|
||||||
api "org.postgresql:postgresql:42.6.2"
|
api "org.postgresql:postgresql:42.7.3"
|
||||||
api "org.apache.commons:commons-dbcp2:2.9.0"
|
api "org.apache.commons:commons-dbcp2:2.9.0"
|
||||||
api "org.apache.commons:commons-pool2:2.11.1"
|
api "org.apache.commons:commons-pool2:2.11.1"
|
||||||
api "commons-logging:commons-logging:1.2"
|
api "commons-logging:commons-logging:1.2"
|
||||||
|
|
|
@ -107,13 +107,13 @@
|
||||||
in the module directory <CODE>Ghidra/Features/BSim/support</CODE> that builds both the PostgreSQL
|
in the module directory <CODE>Ghidra/Features/BSim/support</CODE> that builds both the PostgreSQL
|
||||||
server and the BSim extension from source and prepares the installation for use with
|
server and the BSim extension from source and prepares the installation for use with
|
||||||
Ghidra. If not already included in the Ghidra installation, the source distribution
|
Ghidra. If not already included in the Ghidra installation, the source distribution
|
||||||
file, currently <CODE>postgresql-15.3.tar.gz</CODE>, can be obtained from the PostgreSQL
|
file, currently <CODE>postgresql-15.10.tar.gz</CODE>, can be obtained from the PostgreSQL
|
||||||
website at </P>
|
website at </P>
|
||||||
|
|
||||||
<DIV class="informalexample">
|
<DIV class="informalexample">
|
||||||
<TABLE border="0" summary="Simple list" class="simplelist">
|
<TABLE border="0" summary="Simple list" class="simplelist">
|
||||||
<TR>
|
<TR>
|
||||||
<TD><CODE class="computeroutput">https://www.postgresql.org/ftp/source/v15.3
|
<TD><CODE class="computeroutput">https://www.postgresql.org/ftp/source/v15.10
|
||||||
</CODE></TD>
|
</CODE></TD>
|
||||||
</TR>
|
</TR>
|
||||||
</TABLE>
|
</TABLE>
|
||||||
|
@ -122,12 +122,12 @@
|
||||||
<P>The steps to build the PostgreSQL server with the BSim extension then are:</P>
|
<P>The steps to build the PostgreSQL server with the BSim extension then are:</P>
|
||||||
|
|
||||||
<P>1) If not already present, place the PostgreSQL source distribution file
|
<P>1) If not already present, place the PostgreSQL source distribution file
|
||||||
<CODE>postgresql-15.3.tar.gz</CODE> in the Ghidra installation at</P>
|
<CODE>postgresql-15.10.tar.gz</CODE> in the Ghidra installation at</P>
|
||||||
|
|
||||||
<DIV class="informalexample">
|
<DIV class="informalexample">
|
||||||
<TABLE border="0" summary="Simple list" class="simplelist">
|
<TABLE border="0" summary="Simple list" class="simplelist">
|
||||||
<TR>
|
<TR>
|
||||||
<TD><CODE class="computeroutput">$(ROOT)/Ghidra/Features/BSim/support/postgresql-15.3.tar.gz
|
<TD><CODE class="computeroutput">$(ROOT)/Ghidra/Features/BSim/support/postgresql-15.10.tar.gz
|
||||||
</CODE></TD>
|
</CODE></TD>
|
||||||
</TR>
|
</TR>
|
||||||
</TABLE>
|
</TABLE>
|
||||||
|
|
|
@ -18,11 +18,11 @@
|
||||||
# This script builds the postgresql server and BSim extension within a
|
# This script builds the postgresql server and BSim extension within a
|
||||||
# GHIDRA installation.
|
# GHIDRA installation.
|
||||||
#
|
#
|
||||||
# The PostgreSQL source distribution file postgresql-15.3.tar.gz must
|
# The PostgreSQL source distribution file postgresql-15.10.tar.gz must
|
||||||
# be placed in the BSim module directory prior to running this script.
|
# be placed in the BSim module directory prior to running this script.
|
||||||
# This file can be downloaded directly from the PostgreSQL website at:
|
# This file can be downloaded directly from the PostgreSQL website at:
|
||||||
#
|
#
|
||||||
# https://www.postgresql.org/ftp/source/v15.3
|
# https://www.postgresql.org/ftp/source/v15.10
|
||||||
#
|
#
|
||||||
# Within development environments, this script will first check the
|
# Within development environments, this script will first check the
|
||||||
# ghidra.bin repo for this source file.
|
# ghidra.bin repo for this source file.
|
||||||
|
@ -46,7 +46,7 @@
|
||||||
#
|
#
|
||||||
#
|
#
|
||||||
|
|
||||||
POSTGRES=postgresql-15.3
|
POSTGRES=postgresql-15.10
|
||||||
POSTGRES_GZ=${POSTGRES}.tar.gz
|
POSTGRES_GZ=${POSTGRES}.tar.gz
|
||||||
POSTGRES_CONFIG_OPTIONS="--disable-rpath --with-openssl"
|
POSTGRES_CONFIG_OPTIONS="--disable-rpath --with-openssl"
|
||||||
|
|
||||||
|
|
|
@ -89,9 +89,9 @@ ext.deps = [
|
||||||
destination: file("${DEPS_DIR}/GhidraServer")
|
destination: file("${DEPS_DIR}/GhidraServer")
|
||||||
],
|
],
|
||||||
[
|
[
|
||||||
name: "postgresql-15.3.tar.gz",
|
name: "postgresql-15.10.tar.gz",
|
||||||
url: "https://ftp.postgresql.org/pub/source/v15.3/postgresql-15.3.tar.gz",
|
url: "https://ftp.postgresql.org/pub/source/v15.10/postgresql-15.10.tar.gz",
|
||||||
sha256: "086d38533e28747966a4d5f1e78ea432e33a78f21dcb9133010ecb5189fad98c",
|
sha256: "173366605259a83dc189c4327ff4c37254afed65b4f866cbd8a5ef2ea449e8f3",
|
||||||
destination: file("${DEPS_DIR}/BSim")
|
destination: file("${DEPS_DIR}/BSim")
|
||||||
],
|
],
|
||||||
[
|
[
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
PostgreSQL Database Management System
|
PostgreSQL Database Management System
|
||||||
(formerly known as Postgres, then as Postgres95)
|
(formerly known as Postgres, then as Postgres95)
|
||||||
|
|
||||||
Portions Copyright (c) 1996-2023, PostgreSQL Global Development Group
|
Portions Copyright (c) 1996-2024, PostgreSQL Global Development Group
|
||||||
|
|
||||||
Portions Copyright (c) 1994, The Regents of the University of California
|
Portions Copyright (c) 1994, The Regents of the University of California
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue