From 13e91135e509497816ee2e180210ab9105ebc054 Mon Sep 17 00:00:00 2001 From: rdb Date: Fri, 6 Sep 2019 11:46:09 +0200 Subject: [PATCH] downloadertools: remove show_ddb --- makepanda/makepanda.py | 5 ---- makepanda/makepanda.vcproj | 1 - panda/src/downloadertools/show_ddb.cxx | 32 -------------------------- 3 files changed, 38 deletions(-) delete mode 100644 panda/src/downloadertools/show_ddb.cxx diff --git a/makepanda/makepanda.py b/makepanda/makepanda.py index fe01ebd690..436b64a9c6 100755 --- a/makepanda/makepanda.py +++ b/makepanda/makepanda.py @@ -4631,11 +4631,6 @@ if (PkgSkip("OPENSSL")==0 and not RTDIST and not RUNTIME and PkgSkip("DEPLOYTOOL TargetAdd('pencrypt.exe', input=COMMON_PANDA_LIBS) TargetAdd('pencrypt.exe', opts=OPTS) - TargetAdd('show_ddb_show_ddb.obj', opts=OPTS, input='show_ddb.cxx') - TargetAdd('show_ddb.exe', input=['show_ddb_show_ddb.obj']) - TargetAdd('show_ddb.exe', input=COMMON_PANDA_LIBS) - TargetAdd('show_ddb.exe', opts=OPTS) - # # DIRECTORY: panda/src/downloadertools/ # diff --git a/makepanda/makepanda.vcproj b/makepanda/makepanda.vcproj index 31944e48e6..f8825312b0 100644 --- a/makepanda/makepanda.vcproj +++ b/makepanda/makepanda.vcproj @@ -2079,7 +2079,6 @@ - diff --git a/panda/src/downloadertools/show_ddb.cxx b/panda/src/downloadertools/show_ddb.cxx deleted file mode 100644 index 1b1a4abce4..0000000000 --- a/panda/src/downloadertools/show_ddb.cxx +++ /dev/null @@ -1,32 +0,0 @@ -/** - * PANDA 3D SOFTWARE - * Copyright (c) Carnegie Mellon University. All rights reserved. - * - * All use of this software is subject to the terms of the revised BSD - * license. You should have received a copy of this license along - * with this source code in a file named "LICENSE." - * - * @file show_ddb.cxx - * @author drose - * @date 2002-11-02 - */ - -#include "pandabase.h" -#include "downloadDb.h" -#include "filename.h" - -int -main(int argc, char *argv[]) { - if (argc != 3) { - std::cerr << "Usage: show_ddb server.ddb client.ddb\n"; - return 1; - } - - Filename server_ddb = Filename::from_os_specific(argv[1]); - Filename client_ddb = Filename::from_os_specific(argv[2]); - - DownloadDb db(server_ddb, client_ddb); - db.write(std::cout); - - return 0; -}