diff -r -u freeciv-orig/client/Makefile.in freeciv-new/client/Makefile.in --- freeciv-orig/client/Makefile.in Fri Oct 27 22:19:59 2000 +++ freeciv-new/client/Makefile.in Sun Feb 4 19:46:48 2001 @@ -105,6 +105,7 @@ @CLIENT_GUI_XAW_TRUE@GUI_SUBDIR = gui-xaw @CLIENT_GUI_STUB_TRUE@GUI_SUBDIR = gui-stub @CLIENT_GUI_WIN32_TRUE@GUI_SUBDIR = gui-win32 +@CLIENT_GUI_BEOS_TRUE@GUI_SUBDIR = gui-beos @MAKE_CLIENT_INCLUDE_TRUE@CLI_INCLUDE = include @MAKE_CLIENT_INCLUDE_FALSE@CLI_INCLUDE = diff -r -u freeciv-orig/client/gui-beos/Makefile freeciv-new/client/gui-beos/Makefile --- freeciv-orig/client/gui-beos/Makefile Wed Jul 5 00:53:51 2000 +++ freeciv-new/client/gui-beos/Makefile Sun Feb 4 19:46:48 2001 @@ -1,6 +1,11 @@ # specify the name of the binary NAME= libguiclient.a +# specify the name of the object directory +# the .x86 should probably not be hardcoded, or it will probably fail +# on PPC beos... Will have to check about this +OBJ_DIR = obj.x86 + # specify the type of binary TYPE= STATIC @@ -57,7 +62,7 @@ SYSTEM_INCLUDE_PATHS = $(topsrc)/intl # additional paths to look for local headers -LOCAL_INCLUDE_PATHS = lib/include .. ../include $(topsrc) $(topsrc)/common +LOCAL_INCLUDE_PATHS = lib/Bdh lib/BdhDialog lib/BdhGame lib/include .. ../include $(topsrc) $(topsrc)/common # specify the level of optimization that you desire # NONE, SOME, FULL diff -r -u freeciv-orig/client/gui-beos/repodlgs.h freeciv-new/client/gui-beos/repodlgs.h --- freeciv-orig/client/gui-beos/repodlgs.h Mon Jun 19 23:28:15 2000 +++ freeciv-new/client/gui-beos/repodlgs.h Sun Feb 4 21:02:03 2001 @@ -10,3 +10,4 @@ } #endif +void popup_trade_report_dialog(int make_modal);