Re: [Vala] bad configure for MSYS2 + MingW 64 on Win7 64 bits

2018-09-19 Thread Al Thomas via vala-list


> On Wednesday, 19 September 2018, 09:55:46 BST, oyster via vala-list 
 wrote:  
 > bad configure for MSYS2 + MingW 64 on Win7 64 bits
> On my MSYS2 + MingW 64, there exists actually /bin/pkg-config.exe, but
> the configure tries to find /bin/pkg-config.sh
> it will fail without doubt.

> ./configure
> ./make -j8

It looks like you are building a project with Autotools. So you could try:

export PKG_CONFIG=/bin/pkg-config.exe
./configure
./make -j8

See https://autotools.io/pkgconfig/pkg_check_modules.html
MSYS2 is a separate project, so you may have to raise an issue with them. 
Depending on what you are doing.

> btw, vala lives in github.com now. but the strange thing is that I did
> not find issues part to report bugs

No, Vala lives on GNOME's GitLab instance: https://gitlab.gnome.org/GNOME/vala
This is also linked to from the Vala 'home page': 
https://wiki.gnome.org/Projects/Vala See the section on Contributing.
GitHub is just a mirror of the GNOME repositories and is not monitored for 
issues or pull requests.
 
Regards,

Al

  
___
vala-list mailing list
vala-list@gnome.org
https://mail.gnome.org/mailman/listinfo/vala-list


[Vala] bad configure for MSYS2 + MingW 64 on Win7 64 bits

2018-09-19 Thread oyster via vala-list
bad configure for MSYS2 + MingW 64 on Win7 64 bits
On my MSYS2 + MingW 64, there exists actually /bin/pkg-config.exe, but
the configure tries to find /bin/pkg-config.sh
it will fail without doubt. I have to

```
export GLIB_CFLAGS="$(pkg-config --cflags glib-2.0)"
export GLIB_LIBS="$(pkg-config --libs glib-2.0)"

export GMODULE_CFLAGS="$(pkg-config --cflags gmodule-2.0)"
export GMODULE_LIBS="$(pkg-config --libs gmodule-2.0)"

export LIBGVC_CFLAGS="$(pkg-config --cflags libgvc)"
export LIBGVC_LIBS="$(pkg-config --libs libgvc)"

./configure
./make -j8
```

btw, vala lives in github.com now. but the strange thing is that I did
not find issues part to report bugs
___
vala-list mailing list
vala-list@gnome.org
https://mail.gnome.org/mailman/listinfo/vala-list