[gvd-users] Running GVD on Windows98

Arnaud Charlet gvd-users@lists.act-europe.fr
Fri, 1 Jun 2001 17:07:43 +0200


>   I thought that building GVD on Windows98 myself might help, so I got
> the sources and gtkada 1.3.11.  I installed GtkAda, and tried to build GVD,
> however, the configure script for gvd needs the gtkada-config file, which is
> not part
> of GtkAda.
> 
> Help please?

You can create a simple gtkada-config script.

We use the following gtkada-config script under Windows.

Arno
--
#
prefix=/GtkAda/winnt

while test $# -gt 0; do
  case $1 in
    --version)
      echo 1.2.12
      ;;
    --cflags)
      echo -I$prefix/lib
      ;;
    --libs)
      echo -L$prefix/lib
      ;;
  esac
  shift
done