From: Peter Mount Date: Mon, 5 Mar 2001 10:18:48 +0000 (+0000) Subject: Hmmm, a conflict with V1.104 of configure.in remained and broke configure X-Git-Url: http://waps.l3s.uni-hannover.de/gitweb/?a=commitdiff_plain;h=19a9b869eaf65f3fb1a5c68797a55fcd07c30063;p=users%2Fbernd%2Fpostgres.git Hmmm, a conflict with V1.104 of configure.in remained and broke configure (said redirection required when run). After checking using cvsweb, removed the offending conflict. Rebuilt configure using autoconf, and it now works fine. --- diff --git a/configure b/configure index 1bb525b467..4d9a5deccc 100755 --- a/configure +++ b/configure @@ -8085,26 +8085,13 @@ done fi -<<<<<<< configure.in - -# Finally ready to produce output files ... -======= - # check whether 'test -ef' works if (test "$srcdir" -ef "$srcdir") >/dev/null 2>&1 ; then test_ef_works=yes else test_ef_works=no fi ->>>>>>> 1.104 -<<<<<<< configure.in -if test x"$abs_top_srcdir" != x"$abs_top_builddir"; then - echo $ac_n "preparing build tree... $ac_c" 1>&6 - /bin/sh "$srcdir/config/prep_buildtree" "$abs_top_srcdir" "$abs_top_builddir" \ - || { echo "configure: error: failed" 1>&2; exit 1; } - echo "$ac_t""done" 1>&6 -======= abs_top_srcdir= @@ -8117,7 +8104,6 @@ if test "$test_ef_works" = yes ; then || { echo "configure: error: failed" 1>&2; exit 1; } echo "$ac_t""done" 1>&6 fi ->>>>>>> 1.104 fi trap '' 1 2 15 diff --git a/configure.in b/configure.in index e57571957d..61bbd77a8d 100644 --- a/configure.in +++ b/configure.in @@ -1145,26 +1145,13 @@ if test -n "$NSGMLS"; then AC_CHECK_PROGS(SGMLSPL, sgmlspl) fi -<<<<<<< configure.in - -# Finally ready to produce output files ... -======= - # check whether 'test -ef' works if (test "$srcdir" -ef "$srcdir") >/dev/null 2>&1 ; then test_ef_works=yes else test_ef_works=no fi ->>>>>>> 1.104 - -<<<<<<< configure.in -if test x"$abs_top_srcdir" != x"$abs_top_builddir"; then - echo $ac_n "preparing build tree... $ac_c" 1>&6 - /bin/sh "$srcdir/config/prep_buildtree" "$abs_top_srcdir" "$abs_top_builddir" \ - || AC_MSG_ERROR(failed) - AC_MSG_RESULT(done) -======= + abs_top_srcdir= AC_SUBST(abs_top_srcdir) @@ -1177,7 +1164,6 @@ if test "$test_ef_works" = yes ; then || AC_MSG_ERROR(failed) AC_MSG_RESULT(done) fi ->>>>>>> 1.104 fi AC_OUTPUT( diff --git a/contrib/retep/retep.jpx b/contrib/retep/retep.jpx index 746137dd30..dcf68ac8ce 100644 --- a/contrib/retep/retep.jpx +++ b/contrib/retep/retep.jpx @@ -40,7 +40,6 @@ - diff --git a/contrib/retep/uk/org/retep/util/StandaloneApp.java b/contrib/retep/uk/org/retep/util/StandaloneApp.java index 71ac35b735..e067963555 100644 --- a/contrib/retep/uk/org/retep/util/StandaloneApp.java +++ b/contrib/retep/uk/org/retep/util/StandaloneApp.java @@ -44,7 +44,13 @@ public abstract class StandaloneApp extends JFrame Globals.getInstance().parseArguments(aArgs); // Now initialise this tool (init is overidden) - JComponent tool = init(); + JComponent tool = null; + try { + tool = init(); + } catch(Exception ex) { + ex.printStackTrace(); + System.exit(1); + } // Now add to this frame this.getContentPane().add(tool, BorderLayout.CENTER);