mirror of
https://github.com/Gnucash/gnucash.git
synced 2025-02-25 18:55:30 -06:00
gnome patches from Prakash Kailasa <PrakashK@bigfoot.com>
git-svn-id: svn+ssh://svn.gnucash.org/repo/gnucash/trunk@1451 57a11ea4-9604-0410-9ed3-97b8803252fd
This commit is contained in:
parent
ed4b7497e0
commit
3eb28d3994
2
README
2
README
@ -120,6 +120,7 @@ packages:
|
||||
nana -- Used to provide a debuggin infrastructure.
|
||||
Any version should work.
|
||||
http://www.fsf.org/software/nana/nana.html
|
||||
http://www.cs.ntu.edu.au/homepages/pjm/nana-home/
|
||||
SWIG -- Used to autogenerate perl, tcl, guile wrappers.
|
||||
available at www.swig.org need 1.1p5 or later ...
|
||||
guile -- Provides main extension language infrastructure.
|
||||
@ -359,6 +360,7 @@ Ron Forrester <rjf@aracnet.com> for gnome patches
|
||||
Dave Freese <DFreese@osc.uscg.mil> for leap-year fix
|
||||
Otto Hammersmith <otto@bug.redhat.com> for RedHat RPM version
|
||||
Jon K}re Hellan <jk@isdn-a33.itea.ntnu.no> misc core dump fixes
|
||||
Prakash Kailasa <PrakashK@bigfoot.com> for gnome build fixes
|
||||
Tom Kludy <tkludy@csd.sgi.com> for SGI Irix port
|
||||
Ted Lemon <mellon@andare.fugue.com> for NetBSD port
|
||||
Yannick Le Ny <y-le-ny@ifrance.com> pour la traduction en francais
|
||||
|
@ -34,7 +34,7 @@ MOTIF_LIBS="-lXm"
|
||||
# Let the user specify gnome paths:
|
||||
AC_ARG_WITH( gnome-config,
|
||||
[ --with-gnome-config=executable which gnome-config to use to find gnome ],
|
||||
GNOME_CONFIG_BIN="$with_gnome/bin/")
|
||||
GNOME_CONFIG_BIN="$with_gnome_config")
|
||||
AC_SUBST(GNOME_CONFIG_BIN)
|
||||
|
||||
# Let the user specify imlib paths:
|
||||
|
@ -24,7 +24,7 @@
|
||||
|
||||
include @top_srcdir@/Makefile.init
|
||||
|
||||
INCLPATH = -I@srcdir@/../../include -I@srcdir@/../..
|
||||
INCLPATH = -I@srcdir@/../../include -I@srcdir@/../.. -I@prefix@/include
|
||||
CFLAGS = @CFLAGS@ ${INCLPATH}
|
||||
|
||||
######################################################################
|
||||
|
@ -39,6 +39,8 @@
|
||||
static GtkWidget *filebox = NULL;
|
||||
static gint filebox_quit;
|
||||
|
||||
/* This static indicates the debugging module that this .o belongs to. */
|
||||
static short module MOD_GUI;
|
||||
|
||||
/** PROTOTYPES ******************************************************/
|
||||
void fileBoxCB( GtkWidget mw, gpointer *data );
|
||||
|
@ -33,14 +33,16 @@ INCLPATH = -I.. \
|
||||
-I@srcdir@/../../include \
|
||||
-I$(includedir)
|
||||
|
||||
CFLAGS = @CFLAGS@ @X_CFLAGS@ ${INCLPATH} $(shell @GTK_CONFIG_BIN@ --cflags)
|
||||
CFLAGS = @CFLAGS@ @X_CFLAGS@ ${INCLPATH} \
|
||||
$(shell @GNOME_CONFIG_BIN@ --cflags gnome)
|
||||
|
||||
LDFLAGS = @LDFLAGS@
|
||||
|
||||
GUILELIBS = @GUILELIBS@
|
||||
LIBS = -L$(prefix)/lib @LIBS@ @X_PRE_LIBS@ @X_LIBS@ \
|
||||
$(shell @GTK_CONFIG_BIN@ --libs) @X_EXTRA_LIBS@ -lgnomeui \
|
||||
$(shell @GNOME_CONFIG_BIN@ --libs gtk) @X_EXTRA_LIBS@ -lgnomeui \
|
||||
$(shell @GNOME_CONFIG_BIN@ --libs gnome gnomeui ) \
|
||||
$(GUILELIBS) -lintl
|
||||
$(GUILELIBS) # -lintl
|
||||
|
||||
GNOMELIBS = @GNOMELIBS@
|
||||
GTKLIBS = @GTKLIBS@
|
||||
|
@ -65,6 +65,9 @@ static void recnCB(GtkWidget *w, gpointer data);
|
||||
|
||||
static RecnWindow **recnList = NULL;
|
||||
|
||||
/* This static indicates the debugging module that this .o belongs to. */
|
||||
static short module MOD_GUI;
|
||||
|
||||
/********************************************************************/
|
||||
|
||||
/********************************************************************\
|
||||
|
@ -69,6 +69,9 @@ struct _RegWindow {
|
||||
/** GLOBALS *********************************************************/
|
||||
extern GtkWidget * toplevel;
|
||||
|
||||
/* This static indicates the debugging module that this .o belongs to. */
|
||||
static short module MOD_GUI;
|
||||
|
||||
/** PROTOTYPES ******************************************************/
|
||||
RegWindow *regWindowLedger( xaccLedgerDisplay *ledger);
|
||||
static void regRefresh (xaccLedgerDisplay *ledger);
|
||||
|
@ -79,7 +79,7 @@ gnucash_lowlev_app_init()
|
||||
|
||||
For now, use fake_argv and fake_argc...
|
||||
*/
|
||||
gnome_init("GnuCash", NULL, fake_argc, fake_argv);
|
||||
gnome_init("GnuCash", NULL, fake_argc, fake_argv, 0, NULL);
|
||||
app = gnome_app_new ( "gnucash", "GnuCash" );
|
||||
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user