Issue during generating header files

2014-09-01 Thread Antonio Trande
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Hi all.

I don't understand why same code is not compiled with rpmbuild unlike
when I compile in local.

This is compiled with rpmbuild: http://fpaste.org/130139/
This is compiled in local:  http://fpaste.org/130141/

These commands are not performed so auto-header.h file is not created:

 ./bin/generate ./auto/scheme.tlo  auto/auto.c
 ./bin/generate -H ./auto/scheme.tlo  auto/auto-header.h


Regards.

- -- 
Antonio Trande

mailto: sagitterATfedoraproject.org
http://fedoraos.wordpress.com/
https://fedoraproject.org/wiki/User:Sagitter
GPG Key: D400D6C4
-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iQIcBAEBAgAGBQJUBKbfAAoJED2vIvfUANbEJoAP/iqmSuWkb9+yYQPrVnEhfqQf
THKg+8zhlzANocqMwZtzcLBKdnrpHlIxrjDF7ky4q4XpCpWIaRZhaJkm6+3tJUom
5n//lh0ia+PDqdiBIuWezaYwtO58y72sPnYOlYoff5siUE1Ar1tlFVqkFU7NgvLM
yAsDw8JlRyuktPHHBTpUxDIqimVU/8CVxpUa0UCoBdLbOmEfqA+okmDp6klllh7G
5St2JSz27ET4sfmg5AHkcbt+9qHcph3rAbHTr8bHm3MVthwGGoYYGfxt5MIW16Xu
DElIpEaAKDk34elmkod13O+PDAc8K/t9Y315lQrtdr/8OWhIzcOhqbMYC9CpvLWC
++cNl1m7DoJl99VOm+9/1x7AXapssFJ7WhXiTM2RzEXSBK5DRAOPhdcajAcvrsrX
dAyMEEq0y5wYCuHGTYsti0WA/yQBDAC9DHBV373aEe/XdoETaN+d58zRI2kEZHdC
IZXN9ZC+xfFor2alkSHdIPH7lftXXyyybX4WfbD+0gIidncZXCJFi4nIqWaUySqS
jXTthKKpFKERwkxkpZiqr3fTYaQL2GykBQvbr1g7tLltNkf7R9295zcJvibCmvS3
SvBsMl21JwRlpaWFsjuGQ3vi0wUNZkJBN35BCZkNLwZSj5k73yUCImMozwdTWnd7
W12IM7ZjRJW4E+HxI77/
=8iW7
-END PGP SIGNATURE-
-- 
devel mailing list
devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/devel
Fedora Code of Conduct: http://fedoraproject.org/code-of-conduct

Re: Issue during generating header files

2014-09-01 Thread Mathieu Bridon
Hi,

On Mon, 2014-09-01 at 19:03 +0200, Antonio Trande wrote:
 Hi all.
 
 I don't understand why same code is not compiled with rpmbuild unlike
 when I compile in local.
 
 This is compiled with rpmbuild: http://fpaste.org/130139/

This does: ./configure ... --enable-liblua

 This is compiled in local:  http://fpaste.org/130141/

This does: ./configure ... --enable-libclua

Note liblua vs libclua

Could that be the cause of your problem?


-- 
Mathieu

-- 
devel mailing list
devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/devel
Fedora Code of Conduct: http://fedoraproject.org/code-of-conduct

Re: Issue during generating header files

2014-09-01 Thread Antonio Trande
On Mon 01 Sep 2014 07:09:34 PM CEST, Mathieu Bridon wrote:
 Hi,

 On Mon, 2014-09-01 at 19:03 +0200, Antonio Trande wrote:
 Hi all.

 I don't understand why same code is not compiled with rpmbuild unlike
 when I compile in local.

 This is compiled with rpmbuild: http://fpaste.org/130139/

 This does: ./configure ... --enable-liblua

 This is compiled in local:  http://fpaste.org/130141/

 This does: ./configure ... --enable-libclua

 Note liblua vs libclua

 Could that be the cause of your problem?


No; correct command is on the line #119.
That was a typing error. :)

--
Antonio Trande

mailto: sagitterATfedoraproject.org
http://fedoraos.wordpress.com/
https://fedoraproject.org/wiki/User:Sagitter
GPG Key: D400D6C4

-- 
devel mailing list
devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/devel
Fedora Code of Conduct: http://fedoraproject.org/code-of-conduct

Re: Issue during generating header files

2014-09-01 Thread Paulo César Pereira de Andrade
 Hi all.

  Hi,

 I don't understand why same code is not compiled with rpmbuild unlike
 when I compile in local.

 This is compiled with rpmbuild: http://fpaste.org/130139/
 This is compiled in local:  http://fpaste.org/130141/

 These commands are not performed so auto-header.h file is not created:

  ./bin/generate ./auto/scheme.tlo  auto/auto.c
  ./bin/generate -H ./auto/scheme.tlo  auto/auto-header.h

  Without looking at the spec, apparently it is not parallel make safe,
try removing %{?_smp_mflags} from the make arguments (and
comment about it).

  It should not be the case, but local build is also adding -I/usr/local/include
to gcc command line.

 Regards.

 - --
 Antonio Trande

 mailto: sagitterATfedoraproject.org
 http://fedoraos.wordpress.com/
 https://fedoraproject.org/wiki/User:Sagitter

Thanks,
Paulo
-- 
devel mailing list
devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/devel
Fedora Code of Conduct: http://fedoraproject.org/code-of-conduct

Re: Issue during generating header files

2014-09-01 Thread Antonio Trande
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

On 09/01/2014 10:12 PM, Paulo César Pereira de Andrade wrote:
 Hi all.
 
 Hi,
 
 I don't understand why same code is not compiled with rpmbuild
 unlike when I compile in local.
 
 This is compiled with rpmbuild: http://fpaste.org/130139/ This is
 compiled in local:  http://fpaste.org/130141/
 
 These commands are not performed so auto-header.h file is not
 created:
 
 ./bin/generate ./auto/scheme.tlo  auto/auto.c ./bin/generate -H
 ./auto/scheme.tlo  auto/auto-header.h
 
 Without looking at the spec, apparently it is not parallel make
 safe, try removing %{?_smp_mflags} from the make arguments (and 
 comment about it).

Yes, this is already advised by upstream
(https://github.com/vysheng/tg/issues/235) and it's true.

Thanks.

PS
Have you received my mail about coin-or-Ipopt?


- -- 
Antonio Trande

mailto: sagitterATfedoraproject.org
http://fedoraos.wordpress.com/
https://fedoraproject.org/wiki/User:Sagitter
GPG Key: D400D6C4
-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iQIcBAEBAgAGBQJUBNTeAAoJED2vIvfUANbEHOEP+wfG9+TkxCvXD6ylNxElCeLm
YyI1KvuHDFTyrqKZ0+JsZA+ik3Gz4AonMS0OEmWgp+XyLot82lg05n8T00Cd8aaP
ChTQhYmvAttBrDjdwnoLpA6UphpVm64YY+ljNWPYAx92NWzW79XsyXF0TNoO23av
NZ6zvuRYtD9gPRH1peUeJwEDD5oQlyfO8ejV+hn4OHqnpj1D2bD3nzXxrYxK+oSW
Kvm0DJpHdVZUshcjS7U619rcyLxp+NH8/klTWdrNPRCnjryRaOkRsao5VdM9ja5V
SQ0mrOBGaY+hKg1uxvDPpArL4+mN1eC1l55OsZeRVFJBbN4GpCI77V56bcta07Dp
rpU5Az2xsqBhWUcM+npsb+jaRCIK1RVwF8Ulzs8eEa1x1yTBWHvmEHHhJ/3LfUKg
9C/XJ48sJaMZ30zmeF6mVe4JwYZhAViz91+id+SldFYq2hr1EBj74fDSbfGdX4MY
flG4PpuChJc8uCT5TJH+M3G0fDHDogGyUMOwNaBF+g/USYKBZZDVAgMZEK7KpUw2
Nc+31VxhAWkAfbt2/Kq0o8R5X3REQPxAhBbVSyF8KTn7EAv+9VnN65kTgE0XQTrf
q1gRfos9qvrjQ0UcoXwKM7XEk3pg0sQKeKeuzRfOgEmaZQL8juEn4/I4FcsaIu4m
BFrGzKrKm7p9KQ0P9QGY
=ENyk
-END PGP SIGNATURE-
-- 
devel mailing list
devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/devel
Fedora Code of Conduct: http://fedoraproject.org/code-of-conduct