Update of /cvsroot/htoolkit/port
In directory sc8-pr-cvs1:/tmp/cvs-serv31718/port
Modified Files:
configure makefile
Log Message:
Implementation for persistent configuration keys for both Windows and Linux.
Under Windows they are stored in Windows Registry and under Linux they are
stored in GConf configuration database
Index: configure
===================================================================
RCS file: /cvsroot/htoolkit/port/configure,v
retrieving revision 1.13
retrieving revision 1.14
diff -C2 -d -r1.13 -r1.14
*** configure 1 Jul 2003 21:38:56 -0000 1.13
--- configure 4 Jul 2003 17:39:04 -0000 1.14
***************
*** 285,289 ****
cincflags=""
case "$target" in
! WIN32*) clibs="-luser32 -lgdi32 -lkernel32 -lcomctl32 -lcomdlg32 -lshell32 -lwinmm -lwinspool -lole32";;
GTK*) if sh ./config.search pkg-config; then
echo "pkg-config found"
--- 285,289 ----
cincflags=""
case "$target" in
! WIN32*) clibs="-luser32 -lgdi32 -lkernel32 -lcomctl32 -lcomdlg32 -lshell32 -lwinmm -lwinspool -lole32 -ladvapi32";;
GTK*) if sh ./config.search pkg-config; then
echo "pkg-config found"
Index: makefile
===================================================================
RCS file: /cvsroot/htoolkit/port/makefile,v
retrieving revision 1.21
retrieving revision 1.22
diff -C2 -d -r1.21 -r1.22
*** makefile 8 Jun 2003 19:42:14 -0000 1.21
--- makefile 4 Jul 2003 17:39:04 -0000 1.22
***************
*** 43,46 ****
--- 43,47 ----
Port/Message.hs \
Port/Document.hs \
+ Port/ConfigKey.hs \
Port.hs
***************
*** 49,53 ****
CSRCS = Window.c Util.c Bitmap.c Button.c CheckBox.c EditBox.c \
FileDialog.c ColorDialog.c FontDialog.c AboutDialog.c PopUp.c Canvas.c Menu.c ListBox.c \
! Label.c Font.c RadioBox.c Timer.c Frame.c Message.c Slider.c ProgressBar.c
ifeq "$(GUILIB)" "WIN32"
--- 50,54 ----
CSRCS = Window.c Util.c Bitmap.c Button.c CheckBox.c EditBox.c \
FileDialog.c ColorDialog.c FontDialog.c AboutDialog.c PopUp.c Canvas.c Menu.c ListBox.c \
! Label.c Font.c RadioBox.c Timer.c Frame.c Message.c Slider.c ProgressBar.c ConfigKey.c
ifeq "$(GUILIB)" "WIN32"
|